From fe595ff18dbd14b318f1d78edc7b695f7ffa7b9b Mon Sep 17 00:00:00 2001 From: Emran Ramezan Date: Tue, 29 Aug 2023 23:11:56 +0100 Subject: [PATCH] Closes #25, Authorisation directives + tests --- corpus/conditionals.txt | 412 + corpus/if-statements.txt | 327 - grammar.js | 24 + package.json | 2 +- src/grammar.json | 93 + src/parser.c | 187630 +++++++++++++++++++++--------------- 6 files changed, 111461 insertions(+), 77027 deletions(-) create mode 100644 corpus/conditionals.txt delete mode 100644 corpus/if-statements.txt diff --git a/corpus/conditionals.txt b/corpus/conditionals.txt new file mode 100644 index 0000000..857e091 --- /dev/null +++ b/corpus/conditionals.txt @@ -0,0 +1,412 @@ +================================================================================ +@if +================================================================================ + +@if (true) + test +@endif + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@if nesting +================================================================================ + +@if(true) + @if(true) + test + @endif +@endif + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (conditional + (directive_start) + (parameter) + (php) + (directive_end)) + (directive_end))) + +================================================================================ +conditional keywords +================================================================================ + +@if (true) + test +@elseif (true) + test +@else + test +@endif + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (conditional_keyword + (directive) + (parameter)) + (php) + (conditional_keyword + (directive)) + (php) + (directive_end))) + +================================================================================ +@unless +================================================================================ + +@unless(true) + test +@endunless + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@isset +================================================================================ + +@isset(true) + test +@endisset + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@empty +================================================================================ + +@empty(true) + test +@endempty + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@auth +================================================================================ + +@auth + test +@endauth + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (php) + (directive_end))) + +================================================================================ +@auth with parameters +================================================================================ + +@auth('test') + test +@endauth + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@guest +================================================================================ + +@guest + test +@endguest + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (php) + (directive_end))) + +================================================================================ +@guest with parameters +================================================================================ + +@guest('test') + test +@endguest + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@production +================================================================================ + +@production + test +@endproduction + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (php) + (directive_end))) + +================================================================================ +@env +================================================================================ + +@env('test') + test +@endenv + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@hasSection +================================================================================ + +@hasSection('test') + test +@endif + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@sectionMissing +================================================================================ + +@sectionMissing('test') + test +@endif + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@error +================================================================================ + +@error (true) + test +@enderror + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +@can +================================================================================ + +@can('update', $post) + +@elsecan('create', App\Models\Post::class) + Hello world +@else + Hello world +@endcan + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (php) + (php) + (php) + (php) + (conditional_keyword + (directive) + (parameter)) + (php) + (conditional_keyword + (directive)) + (php) + (directive_end))) + +================================================================================ +@cannot +================================================================================ + +@cannot('update', $post) + +@elsecannot('create', App\Models\Post::class) + Hello world +@endcannot + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (php) + (php) + (php) + (php) + (conditional_keyword + (directive) + (parameter)) + (php) + (directive_end))) + +================================================================================ +@canany +================================================================================ + +@canany(['update', 'view', 'delete'], $post) + +@elsecanany(['create'], \App\Models\Post::class) + hello world +@endcanany + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (php) + (php) + (php) + (php) + (conditional_keyword + (directive) + (parameter)) + (php) + (directive_end))) +================================================================================ +custom directive +================================================================================ + +@disk('local') + test +@elsedisk('s3') + test +@else + test +@enddisk + +@unlessdisk('local') + test +@enddisk + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (php) + (conditional_keyword + (directive) + (parameter)) + (php) + (conditional_keyword + (directive)) + (php) + (directive_end)) + (conditional + (directive_start) + (parameter) + (php) + (directive_end))) + +================================================================================ +complex custom directive +================================================================================ +@example('test') + @example('test') + test + @endexample +@endexample + +-------------------------------------------------------------------------------- + +(blade + (conditional + (directive_start) + (parameter) + (conditional + (directive_start) + (parameter) + (php) + (directive_end)) + (directive_end))) diff --git a/corpus/if-statements.txt b/corpus/if-statements.txt deleted file mode 100644 index 64f4d21..0000000 --- a/corpus/if-statements.txt +++ /dev/null @@ -1,327 +0,0 @@ -================== -@if -================== - -@if (true) - test -@endif - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - -================== -@if nesting -================== - -@if(true) - @if(true) - test - @endif -@endif - ---- - - (blade - (conditional - (directive_start) - (parameter) - (conditional - (directive_start) - (parameter) - (php) - (directive_end)) - (directive_end))) - -================== -conditional keywords -================== - -@if (true) - test -@elseif (true) - test -@else - test -@endif - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (conditional_keyword - (directive) - (parameter)) - (php) - (conditional_keyword - (directive)) - (php) - (directive_end))) - -================== -@unless -================== - -@unless(true) - test -@endunless - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - -================== -@isset -================== - -@isset(true) - test -@endisset - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - -================== -@empty -================== - -@empty(true) - test -@endempty - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - -================== -@auth -================== - -@auth - test -@endauth - ---- - -(blade - (conditional - (directive_start) - (php) - (directive_end))) - -================== -@auth with parameters -================== - -@auth('test') - test -@endauth - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - -================== -@guest -================== - -@guest - test -@endguest - ---- - -(blade - (conditional - (directive_start) - (php) - (directive_end))) - -================== -@guest with parameters -================== - -@guest('test') - test -@endguest - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - -================== -@production -================== - -@production - test -@endproduction - ---- - -(blade - (conditional - (directive_start) - (php) - (directive_end))) - -================== -@env -================== - -@env('test') - test -@endenv - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - -================== -@hasSection -================== - -@hasSection('test') - test -@endif - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - -================== -@sectionMissing -================== - -@sectionMissing('test') - test -@endif - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - -================== -@error -================== - -@error (true) - test -@enderror - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) -================== -custom directive -================== - -@disk('local') - test -@elsedisk('s3') - test -@else - test -@enddisk - -@unlessdisk('local') - test -@enddisk - ---- - -(blade - (conditional - (directive_start) - (parameter) - (php) - (conditional_keyword - (directive) - (parameter)) - (php) - (conditional_keyword - (directive)) - (php) - (directive_end)) - (conditional - (directive_start) - (parameter) - (php) - (directive_end))) - - -================== -complex custom directive -================== -@example('test') - @example('test') - test - @endexample -@endexample - ---- - -(blade - (conditional - (directive_start) - (parameter) - (conditional - (directive_start) - (parameter) - (php) - (directive_end)) - (directive_end))) diff --git a/grammar.js b/grammar.js index ffdfa80..801b718 100644 --- a/grammar.js +++ b/grammar.js @@ -179,6 +179,9 @@ module.exports = grammar({ $._hasSection, $._sectionMissing, $._error, + $._can, + $._cannot, + $._canany, $._custom ), // used in the conditional body rules @@ -268,6 +271,27 @@ module.exports = grammar({ alias('@enderror', $.directive_end) ), + // !Authorisation Directives + _can: ($) => + seq( + alias('@can', $.directive_start), + $._if_statement_directive_body, + alias('@endcan', $.directive_end) + ), + + _cannot: ($) => + seq( + alias('@cannot', $.directive_start), + $._if_statement_directive_body, + alias('@endcannot', $.directive_end) + ), + _canany: ($) => + seq( + alias('@canany', $.directive_start), + $._if_statement_directive_body, + alias('@endcanany', $.directive_end) + ), + // !Custom if Statements _custom: ($) => seq( choice( diff --git a/package.json b/package.json index 6d5aca3..11a882a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-blade", - "version": "0.3.3", + "version": "0.4.0", "description": "tree-sitter-blade for Laravel Blade files", "main": "bindings/node", "keywords": [ diff --git a/src/grammar.json b/src/grammar.json index 178cd42..4256e8b 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -678,6 +678,18 @@ "type": "SYMBOL", "name": "_error" }, + { + "type": "SYMBOL", + "name": "_can" + }, + { + "type": "SYMBOL", + "name": "_cannot" + }, + { + "type": "SYMBOL", + "name": "_canany" + }, { "type": "SYMBOL", "name": "_custom" @@ -1021,6 +1033,87 @@ } ] }, + "_can": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "@can" + }, + "named": true, + "value": "directive_start" + }, + { + "type": "SYMBOL", + "name": "_if_statement_directive_body" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "@endcan" + }, + "named": true, + "value": "directive_end" + } + ] + }, + "_cannot": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "@cannot" + }, + "named": true, + "value": "directive_start" + }, + { + "type": "SYMBOL", + "name": "_if_statement_directive_body" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "@endcannot" + }, + "named": true, + "value": "directive_end" + } + ] + }, + "_canany": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "@canany" + }, + "named": true, + "value": "directive_start" + }, + { + "type": "SYMBOL", + "name": "_if_statement_directive_body" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "@endcanany" + }, + "named": true, + "value": "directive_end" + } + ] + }, "_custom": { "type": "SEQ", "members": [ diff --git a/src/parser.c b/src/parser.c index 3a4dd9e..3d8ce2b 100644 --- a/src/parser.c +++ b/src/parser.c @@ -14,11 +14,11 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3986 -#define LARGE_STATE_COUNT 430 -#define SYMBOL_COUNT 147 +#define STATE_COUNT 4688 +#define LARGE_STATE_COUNT 475 +#define SYMBOL_COUNT 156 #define ALIAS_COUNT 2 -#define TOKEN_COUNT 83 +#define TOKEN_COUNT 89 #define EXTERNAL_TOKEN_COUNT 0 #define FIELD_COUNT 0 #define MAX_ALIAS_SEQUENCE_LENGTH 6 @@ -76,103 +76,112 @@ enum { anon_sym_ATsectionMissing = 49, anon_sym_ATerror = 50, anon_sym_ATenderror = 51, - aux_sym__custom_token1 = 52, - aux_sym__custom_token2 = 53, - aux_sym__custom_token3 = 54, - anon_sym_ATswitch = 55, - anon_sym_ATdefault = 56, - anon_sym_ATendswitch = 57, - anon_sym_ATcase = 58, - anon_sym_ATbreak = 59, - aux_sym_loop_operator_token1 = 60, - anon_sym_ATfor = 61, - anon_sym_ATendfor = 62, - anon_sym_ATforeach = 63, - anon_sym_ATendforeach = 64, - anon_sym_ATforelse = 65, - anon_sym_ATendforelse = 66, - anon_sym_ATwhile = 67, - anon_sym_ATendwhile = 68, - anon_sym_ATpersist = 69, - anon_sym_ATendpersist = 70, - anon_sym_ATteleport = 71, - anon_sym_ATendteleport = 72, - anon_sym_ATvolt = 73, - anon_sym_ATendvolt = 74, - anon_sym_LPAREN = 75, - anon_sym_RPAREN = 76, - aux_sym_parameter_token1 = 77, - anon_sym_LPAREN2 = 78, - anon_sym_RPAREN2 = 79, - aux_sym_text_token1 = 80, - aux_sym_text_token2 = 81, - aux_sym_text_token3 = 82, - sym_blade = 83, - sym__definition = 84, - sym_comment = 85, - sym_keyword = 86, - sym_php_statement = 87, - sym__escaped = 88, - sym__unescaped = 89, - sym__raw = 90, - sym__inline_raw = 91, - sym__multi_line_raw = 92, - sym_attribute = 93, - sym__inline_directive = 94, - sym__nested_directive = 95, - sym_fragment = 96, - sym_section = 97, - sym_once = 98, - sym_verbatim = 99, - sym_stack = 100, - sym__push = 101, - sym__pushOnce = 102, - sym__pushIf = 103, - sym__prepend = 104, - sym__prependOnce = 105, - sym_conditional = 106, - sym_conditional_keyword = 107, - sym__if = 108, - sym__unless = 109, - sym__isset = 110, - sym__empty = 111, - sym__auth = 112, - sym__guest = 113, - sym__production = 114, - sym__env = 115, - sym__hasSection = 116, - sym__sectionMissing = 117, - sym__error = 118, - sym__custom = 119, - sym_switch = 120, - sym__case = 121, - sym_loop = 122, - sym_loop_operator = 123, - sym__for = 124, - sym__foreach = 125, - sym__forelse = 126, - sym__while = 127, - sym_livewire = 128, - sym__persist = 129, - sym__teleport = 130, - sym__volt = 131, - aux_sym__directive_body = 132, - sym__directive_body_with_parameter = 133, - sym__if_statement_directive_body = 134, - sym__if_statement_directive_body_with_optional_parameter = 135, - aux_sym__if_statement_directive_body_with_no_parameter = 136, - sym__directive_parameter = 137, - sym_parameter = 138, - sym__text_with_parenthesis = 139, - sym_text = 140, - aux_sym_blade_repeat1 = 141, - aux_sym_comment_repeat1 = 142, - aux_sym__escaped_repeat1 = 143, - aux_sym_switch_repeat1 = 144, - aux_sym__if_statement_directive_body_repeat1 = 145, - aux_sym__directive_parameter_repeat1 = 146, - alias_sym_php = 147, - alias_sym_php_only = 148, + anon_sym_ATcan = 52, + anon_sym_ATendcan = 53, + anon_sym_ATcannot = 54, + anon_sym_ATendcannot = 55, + anon_sym_ATcanany = 56, + anon_sym_ATendcanany = 57, + aux_sym__custom_token1 = 58, + aux_sym__custom_token2 = 59, + aux_sym__custom_token3 = 60, + anon_sym_ATswitch = 61, + anon_sym_ATdefault = 62, + anon_sym_ATendswitch = 63, + anon_sym_ATcase = 64, + anon_sym_ATbreak = 65, + aux_sym_loop_operator_token1 = 66, + anon_sym_ATfor = 67, + anon_sym_ATendfor = 68, + anon_sym_ATforeach = 69, + anon_sym_ATendforeach = 70, + anon_sym_ATforelse = 71, + anon_sym_ATendforelse = 72, + anon_sym_ATwhile = 73, + anon_sym_ATendwhile = 74, + anon_sym_ATpersist = 75, + anon_sym_ATendpersist = 76, + anon_sym_ATteleport = 77, + anon_sym_ATendteleport = 78, + anon_sym_ATvolt = 79, + anon_sym_ATendvolt = 80, + anon_sym_LPAREN = 81, + anon_sym_RPAREN = 82, + aux_sym_parameter_token1 = 83, + anon_sym_LPAREN2 = 84, + anon_sym_RPAREN2 = 85, + aux_sym_text_token1 = 86, + aux_sym_text_token2 = 87, + aux_sym_text_token3 = 88, + sym_blade = 89, + sym__definition = 90, + sym_comment = 91, + sym_keyword = 92, + sym_php_statement = 93, + sym__escaped = 94, + sym__unescaped = 95, + sym__raw = 96, + sym__inline_raw = 97, + sym__multi_line_raw = 98, + sym_attribute = 99, + sym__inline_directive = 100, + sym__nested_directive = 101, + sym_fragment = 102, + sym_section = 103, + sym_once = 104, + sym_verbatim = 105, + sym_stack = 106, + sym__push = 107, + sym__pushOnce = 108, + sym__pushIf = 109, + sym__prepend = 110, + sym__prependOnce = 111, + sym_conditional = 112, + sym_conditional_keyword = 113, + sym__if = 114, + sym__unless = 115, + sym__isset = 116, + sym__empty = 117, + sym__auth = 118, + sym__guest = 119, + sym__production = 120, + sym__env = 121, + sym__hasSection = 122, + sym__sectionMissing = 123, + sym__error = 124, + sym__can = 125, + sym__cannot = 126, + sym__canany = 127, + sym__custom = 128, + sym_switch = 129, + sym__case = 130, + sym_loop = 131, + sym_loop_operator = 132, + sym__for = 133, + sym__foreach = 134, + sym__forelse = 135, + sym__while = 136, + sym_livewire = 137, + sym__persist = 138, + sym__teleport = 139, + sym__volt = 140, + aux_sym__directive_body = 141, + sym__directive_body_with_parameter = 142, + sym__if_statement_directive_body = 143, + sym__if_statement_directive_body_with_optional_parameter = 144, + aux_sym__if_statement_directive_body_with_no_parameter = 145, + sym__directive_parameter = 146, + sym_parameter = 147, + sym__text_with_parenthesis = 148, + sym_text = 149, + aux_sym_blade_repeat1 = 150, + aux_sym_comment_repeat1 = 151, + aux_sym__escaped_repeat1 = 152, + aux_sym_switch_repeat1 = 153, + aux_sym__if_statement_directive_body_repeat1 = 154, + aux_sym__directive_parameter_repeat1 = 155, + alias_sym_php = 156, + alias_sym_php_only = 157, }; static const char * const ts_symbol_names[] = { @@ -228,6 +237,12 @@ static const char * const ts_symbol_names[] = { [anon_sym_ATsectionMissing] = "directive_start", [anon_sym_ATerror] = "directive_start", [anon_sym_ATenderror] = "directive_end", + [anon_sym_ATcan] = "directive_start", + [anon_sym_ATendcan] = "directive_end", + [anon_sym_ATcannot] = "directive_start", + [anon_sym_ATendcannot] = "directive_end", + [anon_sym_ATcanany] = "directive_start", + [anon_sym_ATendcanany] = "directive_end", [aux_sym__custom_token1] = "directive_start", [aux_sym__custom_token2] = "directive_start", [aux_sym__custom_token3] = "directive_end", @@ -295,6 +310,9 @@ static const char * const ts_symbol_names[] = { [sym__hasSection] = "_hasSection", [sym__sectionMissing] = "_sectionMissing", [sym__error] = "_error", + [sym__can] = "_can", + [sym__cannot] = "_cannot", + [sym__canany] = "_canany", [sym__custom] = "_custom", [sym_switch] = "switch", [sym__case] = "_case", @@ -380,6 +398,12 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_ATsectionMissing] = anon_sym_ATphp, [anon_sym_ATerror] = anon_sym_ATphp, [anon_sym_ATenderror] = anon_sym_ATendphp, + [anon_sym_ATcan] = anon_sym_ATphp, + [anon_sym_ATendcan] = anon_sym_ATendphp, + [anon_sym_ATcannot] = anon_sym_ATphp, + [anon_sym_ATendcannot] = anon_sym_ATendphp, + [anon_sym_ATcanany] = anon_sym_ATphp, + [anon_sym_ATendcanany] = anon_sym_ATendphp, [aux_sym__custom_token1] = anon_sym_ATphp, [aux_sym__custom_token2] = anon_sym_ATphp, [aux_sym__custom_token3] = anon_sym_ATendphp, @@ -447,6 +471,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__hasSection] = sym__hasSection, [sym__sectionMissing] = sym__sectionMissing, [sym__error] = sym__error, + [sym__can] = sym__can, + [sym__cannot] = sym__cannot, + [sym__canany] = sym__canany, [sym__custom] = sym__custom, [sym_switch] = sym_switch, [sym__case] = sym__case, @@ -688,6 +715,30 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [anon_sym_ATcan] = { + .visible = true, + .named = true, + }, + [anon_sym_ATendcan] = { + .visible = true, + .named = true, + }, + [anon_sym_ATcannot] = { + .visible = true, + .named = true, + }, + [anon_sym_ATendcannot] = { + .visible = true, + .named = true, + }, + [anon_sym_ATcanany] = { + .visible = true, + .named = true, + }, + [anon_sym_ATendcanany] = { + .visible = true, + .named = true, + }, [aux_sym__custom_token1] = { .visible = true, .named = true, @@ -956,6 +1007,18 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__can] = { + .visible = false, + .named = true, + }, + [sym__cannot] = { + .visible = false, + .named = true, + }, + [sym__canany] = { + .visible = false, + .named = true, + }, [sym__custom] = { .visible = false, .named = true, @@ -1103,3989 +1166,4691 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, - [4] = 2, - [5] = 3, + [3] = 2, + [4] = 4, + [5] = 2, [6] = 2, - [7] = 3, - [8] = 3, + [7] = 4, + [8] = 4, [9] = 2, - [10] = 2, - [11] = 3, - [12] = 3, - [13] = 3, - [14] = 2, + [10] = 4, + [11] = 2, + [12] = 4, + [13] = 2, + [14] = 4, [15] = 2, - [16] = 3, - [17] = 2, - [18] = 3, - [19] = 3, - [20] = 2, - [21] = 2, - [22] = 2, - [23] = 3, - [24] = 3, + [16] = 4, + [17] = 4, + [18] = 2, + [19] = 2, + [20] = 4, + [21] = 4, + [22] = 4, + [23] = 2, + [24] = 2, [25] = 2, - [26] = 3, - [27] = 2, - [28] = 3, - [29] = 3, - [30] = 2, - [31] = 2, - [32] = 3, - [33] = 3, - [34] = 2, + [26] = 4, + [27] = 4, + [28] = 4, + [29] = 4, + [30] = 4, + [31] = 4, + [32] = 2, + [33] = 2, + [34] = 4, [35] = 2, - [36] = 3, - [37] = 2, - [38] = 3, - [39] = 2, - [40] = 3, + [36] = 4, + [37] = 4, + [38] = 2, + [39] = 4, + [40] = 2, [41] = 2, - [42] = 3, + [42] = 4, [43] = 2, - [44] = 3, - [45] = 2, - [46] = 3, + [44] = 4, + [45] = 4, + [46] = 2, [47] = 2, - [48] = 3, - [49] = 2, - [50] = 3, - [51] = 2, + [48] = 2, + [49] = 4, + [50] = 2, + [51] = 4, [52] = 2, - [53] = 2, - [54] = 3, + [53] = 4, + [54] = 4, [55] = 2, - [56] = 3, + [56] = 4, [57] = 2, - [58] = 3, - [59] = 3, - [60] = 60, - [61] = 61, - [62] = 62, - [63] = 63, - [64] = 63, - [65] = 63, + [58] = 2, + [59] = 4, + [60] = 2, + [61] = 2, + [62] = 4, + [63] = 2, + [64] = 2, + [65] = 4, [66] = 66, - [67] = 63, - [68] = 68, - [69] = 63, - [70] = 63, - [71] = 62, - [72] = 63, - [73] = 66, + [67] = 67, + [68] = 67, + [69] = 69, + [70] = 66, + [71] = 69, + [72] = 69, + [73] = 73, [74] = 66, - [75] = 63, - [76] = 68, + [75] = 69, + [76] = 73, [77] = 66, - [78] = 63, - [79] = 66, - [80] = 62, - [81] = 62, - [82] = 63, - [83] = 68, - [84] = 63, - [85] = 63, - [86] = 63, - [87] = 66, - [88] = 63, - [89] = 61, - [90] = 68, - [91] = 91, - [92] = 63, - [93] = 62, - [94] = 68, - [95] = 66, - [96] = 66, - [97] = 63, - [98] = 60, - [99] = 63, - [100] = 63, - [101] = 68, - [102] = 63, - [103] = 63, - [104] = 62, - [105] = 63, - [106] = 62, - [107] = 63, - [108] = 63, - [109] = 63, - [110] = 66, - [111] = 63, - [112] = 68, - [113] = 63, - [114] = 63, - [115] = 63, - [116] = 63, - [117] = 117, - [118] = 117, - [119] = 117, - [120] = 117, - [121] = 117, - [122] = 117, - [123] = 117, - [124] = 117, - [125] = 125, - [126] = 117, - [127] = 117, - [128] = 117, - [129] = 117, - [130] = 117, - [131] = 117, - [132] = 117, - [133] = 117, - [134] = 117, - [135] = 117, - [136] = 125, - [137] = 117, - [138] = 117, - [139] = 117, - [140] = 117, - [141] = 117, - [142] = 117, - [143] = 117, - [144] = 117, - [145] = 117, - [146] = 117, - [147] = 117, - [148] = 148, - [149] = 148, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 151, - [154] = 154, - [155] = 155, - [156] = 152, - [157] = 151, - [158] = 152, - [159] = 155, - [160] = 160, - [161] = 154, - [162] = 150, - [163] = 152, - [164] = 160, - [165] = 160, - [166] = 148, - [167] = 167, - [168] = 167, - [169] = 167, - [170] = 148, - [171] = 150, - [172] = 150, - [173] = 148, - [174] = 151, - [175] = 167, + [78] = 73, + [79] = 73, + [80] = 67, + [81] = 67, + [82] = 66, + [83] = 67, + [84] = 66, + [85] = 67, + [86] = 69, + [87] = 67, + [88] = 73, + [89] = 73, + [90] = 67, + [91] = 73, + [92] = 92, + [93] = 67, + [94] = 69, + [95] = 67, + [96] = 69, + [97] = 92, + [98] = 66, + [99] = 67, + [100] = 67, + [101] = 66, + [102] = 67, + [103] = 67, + [104] = 67, + [105] = 67, + [106] = 67, + [107] = 67, + [108] = 67, + [109] = 66, + [110] = 67, + [111] = 66, + [112] = 67, + [113] = 67, + [114] = 67, + [115] = 115, + [116] = 73, + [117] = 67, + [118] = 67, + [119] = 67, + [120] = 120, + [121] = 73, + [122] = 67, + [123] = 73, + [124] = 67, + [125] = 67, + [126] = 115, + [127] = 69, + [128] = 69, + [129] = 73, + [130] = 67, + [131] = 67, + [132] = 73, + [133] = 69, + [134] = 67, + [135] = 135, + [136] = 135, + [137] = 135, + [138] = 135, + [139] = 135, + [140] = 135, + [141] = 135, + [142] = 135, + [143] = 135, + [144] = 135, + [145] = 135, + [146] = 135, + [147] = 135, + [148] = 135, + [149] = 135, + [150] = 135, + [151] = 135, + [152] = 135, + [153] = 135, + [154] = 135, + [155] = 135, + [156] = 135, + [157] = 135, + [158] = 158, + [159] = 135, + [160] = 135, + [161] = 158, + [162] = 135, + [163] = 135, + [164] = 135, + [165] = 135, + [166] = 135, + [167] = 135, + [168] = 135, + [169] = 169, + [170] = 170, + [171] = 171, + [172] = 172, + [173] = 173, + [174] = 169, + [175] = 173, [176] = 176, - [177] = 160, - [178] = 154, - [179] = 155, - [180] = 180, - [181] = 151, - [182] = 152, - [183] = 160, - [184] = 150, - [185] = 155, - [186] = 154, - [187] = 167, - [188] = 148, - [189] = 155, - [190] = 167, - [191] = 148, - [192] = 150, - [193] = 160, - [194] = 152, - [195] = 195, - [196] = 151, - [197] = 154, - [198] = 155, - [199] = 154, - [200] = 180, - [201] = 150, - [202] = 195, - [203] = 148, - [204] = 167, - [205] = 150, - [206] = 206, - [207] = 151, - [208] = 152, - [209] = 160, - [210] = 150, - [211] = 176, - [212] = 160, - [213] = 152, - [214] = 167, - [215] = 148, - [216] = 180, - [217] = 152, - [218] = 154, - [219] = 176, - [220] = 155, - [221] = 151, - [222] = 151, - [223] = 152, - [224] = 160, - [225] = 150, - [226] = 155, - [227] = 155, - [228] = 154, - [229] = 167, - [230] = 148, - [231] = 160, - [232] = 148, - [233] = 154, - [234] = 151, - [235] = 167, - [236] = 150, - [237] = 160, - [238] = 152, - [239] = 151, - [240] = 154, - [241] = 155, - [242] = 148, - [243] = 151, - [244] = 152, - [245] = 160, - [246] = 150, - [247] = 167, - [248] = 148, - [249] = 152, - [250] = 154, - [251] = 206, - [252] = 155, - [253] = 160, - [254] = 152, - [255] = 176, - [256] = 151, - [257] = 152, - [258] = 151, - [259] = 180, - [260] = 148, - [261] = 160, - [262] = 150, - [263] = 155, - [264] = 154, - [265] = 167, - [266] = 148, - [267] = 148, - [268] = 167, - [269] = 150, - [270] = 160, - [271] = 195, - [272] = 152, - [273] = 154, - [274] = 151, - [275] = 155, - [276] = 155, - [277] = 195, - [278] = 151, - [279] = 152, - [280] = 160, - [281] = 150, - [282] = 151, - [283] = 155, - [284] = 152, - [285] = 150, - [286] = 167, - [287] = 148, - [288] = 154, - [289] = 154, - [290] = 155, - [291] = 167, - [292] = 180, - [293] = 151, - [294] = 152, - [295] = 176, - [296] = 160, - [297] = 150, - [298] = 167, - [299] = 155, - [300] = 154, - [301] = 148, - [302] = 148, - [303] = 167, - [304] = 167, - [305] = 154, - [306] = 150, - [307] = 155, - [308] = 160, - [309] = 195, - [310] = 152, - [311] = 155, - [312] = 151, - [313] = 154, - [314] = 151, - [315] = 152, - [316] = 160, - [317] = 150, - [318] = 167, - [319] = 148, - [320] = 150, - [321] = 154, - [322] = 154, - [323] = 155, - [324] = 155, - [325] = 151, - [326] = 152, - [327] = 160, - [328] = 150, - [329] = 154, - [330] = 176, - [331] = 180, - [332] = 160, - [333] = 176, - [334] = 180, - [335] = 195, - [336] = 176, - [337] = 160, - [338] = 151, - [339] = 150, - [340] = 176, - [341] = 180, - [342] = 195, - [343] = 150, - [344] = 176, - [345] = 195, - [346] = 160, - [347] = 154, - [348] = 195, - [349] = 176, - [350] = 167, - [351] = 167, - [352] = 167, - [353] = 180, - [354] = 151, - [355] = 195, - [356] = 155, - [357] = 176, - [358] = 152, - [359] = 155, - [360] = 151, - [361] = 180, - [362] = 180, - [363] = 152, - [364] = 195, - [365] = 176, - [366] = 160, - [367] = 160, - [368] = 176, - [369] = 180, - [370] = 148, - [371] = 150, - [372] = 195, - [373] = 151, - [374] = 195, - [375] = 167, - [376] = 152, - [377] = 176, - [378] = 180, - [379] = 155, - [380] = 148, - [381] = 155, - [382] = 167, - [383] = 160, - [384] = 195, - [385] = 154, - [386] = 148, - [387] = 167, - [388] = 154, - [389] = 155, - [390] = 176, - [391] = 150, - [392] = 152, - [393] = 151, - [394] = 167, - [395] = 154, - [396] = 148, - [397] = 150, - [398] = 155, - [399] = 154, - [400] = 180, - [401] = 180, - [402] = 154, - [403] = 154, - [404] = 155, - [405] = 148, - [406] = 167, - [407] = 150, - [408] = 160, - [409] = 152, - [410] = 150, - [411] = 151, - [412] = 167, - [413] = 148, - [414] = 155, - [415] = 154, - [416] = 148, - [417] = 160, - [418] = 195, - [419] = 167, - [420] = 148, - [421] = 150, - [422] = 422, - [423] = 160, - [424] = 176, - [425] = 151, - [426] = 152, - [427] = 151, - [428] = 152, - [429] = 148, - [430] = 430, - [431] = 430, - [432] = 430, - [433] = 430, - [434] = 430, - [435] = 430, - [436] = 430, - [437] = 430, - [438] = 430, - [439] = 430, - [440] = 440, - [441] = 441, - [442] = 441, - [443] = 441, - [444] = 441, - [445] = 441, - [446] = 440, - [447] = 441, - [448] = 440, - [449] = 440, - [450] = 441, - [451] = 441, - [452] = 440, - [453] = 441, - [454] = 441, - [455] = 440, - [456] = 440, - [457] = 440, - [458] = 440, - [459] = 440, - [460] = 430, - [461] = 430, - [462] = 430, - [463] = 430, - [464] = 430, - [465] = 430, - [466] = 430, - [467] = 430, - [468] = 430, - [469] = 430, - [470] = 430, - [471] = 430, - [472] = 430, - [473] = 430, - [474] = 430, - [475] = 430, - [476] = 430, - [477] = 430, - [478] = 430, - [479] = 479, - [480] = 480, - [481] = 481, - [482] = 482, - [483] = 483, - [484] = 484, - [485] = 485, - [486] = 486, - [487] = 487, + [177] = 170, + [178] = 171, + [179] = 179, + [180] = 179, + [181] = 169, + [182] = 172, + [183] = 183, + [184] = 179, + [185] = 169, + [186] = 176, + [187] = 170, + [188] = 171, + [189] = 179, + [190] = 173, + [191] = 176, + [192] = 170, + [193] = 171, + [194] = 179, + [195] = 169, + [196] = 172, + [197] = 183, + [198] = 169, + [199] = 172, + [200] = 183, + [201] = 183, + [202] = 173, + [203] = 176, + [204] = 204, + [205] = 170, + [206] = 171, + [207] = 179, + [208] = 208, + [209] = 208, + [210] = 172, + [211] = 211, + [212] = 179, + [213] = 169, + [214] = 169, + [215] = 215, + [216] = 172, + [217] = 183, + [218] = 170, + [219] = 173, + [220] = 176, + [221] = 173, + [222] = 176, + [223] = 170, + [224] = 170, + [225] = 211, + [226] = 171, + [227] = 179, + [228] = 208, + [229] = 169, + [230] = 172, + [231] = 183, + [232] = 171, + [233] = 179, + [234] = 173, + [235] = 176, + [236] = 169, + [237] = 172, + [238] = 183, + [239] = 170, + [240] = 204, + [241] = 171, + [242] = 172, + [243] = 183, + [244] = 179, + [245] = 169, + [246] = 172, + [247] = 183, + [248] = 176, + [249] = 173, + [250] = 176, + [251] = 173, + [252] = 208, + [253] = 170, + [254] = 171, + [255] = 179, + [256] = 211, + [257] = 172, + [258] = 183, + [259] = 204, + [260] = 172, + [261] = 173, + [262] = 176, + [263] = 169, + [264] = 170, + [265] = 171, + [266] = 179, + [267] = 169, + [268] = 172, + [269] = 183, + [270] = 208, + [271] = 204, + [272] = 179, + [273] = 171, + [274] = 170, + [275] = 173, + [276] = 176, + [277] = 170, + [278] = 171, + [279] = 179, + [280] = 169, + [281] = 172, + [282] = 183, + [283] = 176, + [284] = 173, + [285] = 215, + [286] = 183, + [287] = 173, + [288] = 176, + [289] = 204, + [290] = 170, + [291] = 171, + [292] = 179, + [293] = 172, + [294] = 208, + [295] = 183, + [296] = 211, + [297] = 169, + [298] = 172, + [299] = 183, + [300] = 169, + [301] = 179, + [302] = 171, + [303] = 170, + [304] = 211, + [305] = 173, + [306] = 176, + [307] = 208, + [308] = 170, + [309] = 171, + [310] = 179, + [311] = 169, + [312] = 172, + [313] = 183, + [314] = 176, + [315] = 173, + [316] = 183, + [317] = 173, + [318] = 172, + [319] = 204, + [320] = 173, + [321] = 169, + [322] = 176, + [323] = 170, + [324] = 171, + [325] = 179, + [326] = 169, + [327] = 172, + [328] = 183, + [329] = 171, + [330] = 170, + [331] = 208, + [332] = 179, + [333] = 173, + [334] = 176, + [335] = 170, + [336] = 171, + [337] = 179, + [338] = 169, + [339] = 172, + [340] = 183, + [341] = 171, + [342] = 183, + [343] = 176, + [344] = 173, + [345] = 176, + [346] = 170, + [347] = 173, + [348] = 171, + [349] = 179, + [350] = 169, + [351] = 208, + [352] = 211, + [353] = 172, + [354] = 204, + [355] = 183, + [356] = 176, + [357] = 173, + [358] = 208, + [359] = 211, + [360] = 170, + [361] = 204, + [362] = 183, + [363] = 204, + [364] = 171, + [365] = 173, + [366] = 183, + [367] = 176, + [368] = 208, + [369] = 179, + [370] = 211, + [371] = 173, + [372] = 204, + [373] = 176, + [374] = 176, + [375] = 172, + [376] = 172, + [377] = 211, + [378] = 169, + [379] = 208, + [380] = 208, + [381] = 211, + [382] = 170, + [383] = 179, + [384] = 204, + [385] = 171, + [386] = 204, + [387] = 211, + [388] = 171, + [389] = 170, + [390] = 208, + [391] = 211, + [392] = 179, + [393] = 176, + [394] = 173, + [395] = 204, + [396] = 183, + [397] = 172, + [398] = 208, + [399] = 211, + [400] = 169, + [401] = 169, + [402] = 171, + [403] = 204, + [404] = 170, + [405] = 176, + [406] = 173, + [407] = 179, + [408] = 171, + [409] = 170, + [410] = 176, + [411] = 183, + [412] = 172, + [413] = 170, + [414] = 169, + [415] = 179, + [416] = 171, + [417] = 170, + [418] = 172, + [419] = 169, + [420] = 171, + [421] = 176, + [422] = 173, + [423] = 423, + [424] = 173, + [425] = 183, + [426] = 172, + [427] = 169, + [428] = 183, + [429] = 172, + [430] = 169, + [431] = 179, + [432] = 171, + [433] = 170, + [434] = 176, + [435] = 173, + [436] = 204, + [437] = 179, + [438] = 179, + [439] = 171, + [440] = 170, + [441] = 176, + [442] = 183, + [443] = 173, + [444] = 183, + [445] = 172, + [446] = 169, + [447] = 169, + [448] = 179, + [449] = 171, + [450] = 211, + [451] = 170, + [452] = 183, + [453] = 208, + [454] = 176, + [455] = 173, + [456] = 172, + [457] = 172, + [458] = 169, + [459] = 179, + [460] = 171, + [461] = 170, + [462] = 183, + [463] = 172, + [464] = 169, + [465] = 179, + [466] = 171, + [467] = 176, + [468] = 208, + [469] = 170, + [470] = 176, + [471] = 211, + [472] = 173, + [473] = 173, + [474] = 183, + [475] = 475, + [476] = 475, + [477] = 475, + [478] = 475, + [479] = 475, + [480] = 475, + [481] = 475, + [482] = 475, + [483] = 475, + [484] = 475, + [485] = 475, + [486] = 475, + [487] = 475, [488] = 488, - [489] = 489, + [489] = 488, [490] = 490, - [491] = 491, - [492] = 492, - [493] = 493, - [494] = 494, - [495] = 495, - [496] = 496, - [497] = 497, - [498] = 498, - [499] = 499, - [500] = 500, - [501] = 501, - [502] = 479, - [503] = 503, - [504] = 504, - [505] = 505, - [506] = 506, - [507] = 507, - [508] = 508, - [509] = 509, - [510] = 510, - [511] = 511, - [512] = 512, - [513] = 513, - [514] = 514, - [515] = 515, - [516] = 516, - [517] = 480, - [518] = 518, - [519] = 519, - [520] = 520, - [521] = 521, - [522] = 522, - [523] = 523, - [524] = 524, - [525] = 525, - [526] = 479, - [527] = 527, - [528] = 528, - [529] = 529, - [530] = 488, - [531] = 490, - [532] = 492, - [533] = 494, - [534] = 499, - [535] = 535, - [536] = 505, - [537] = 513, - [538] = 519, - [539] = 527, - [540] = 528, - [541] = 440, - [542] = 529, + [491] = 490, + [492] = 488, + [493] = 490, + [494] = 490, + [495] = 488, + [496] = 490, + [497] = 490, + [498] = 488, + [499] = 490, + [500] = 488, + [501] = 488, + [502] = 490, + [503] = 488, + [504] = 490, + [505] = 488, + [506] = 490, + [507] = 490, + [508] = 488, + [509] = 488, + [510] = 488, + [511] = 490, + [512] = 490, + [513] = 488, + [514] = 475, + [515] = 475, + [516] = 475, + [517] = 475, + [518] = 475, + [519] = 475, + [520] = 475, + [521] = 475, + [522] = 475, + [523] = 475, + [524] = 475, + [525] = 475, + [526] = 475, + [527] = 475, + [528] = 475, + [529] = 475, + [530] = 475, + [531] = 475, + [532] = 475, + [533] = 533, + [534] = 534, + [535] = 533, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, [543] = 543, [544] = 544, [545] = 545, [546] = 546, [547] = 547, [548] = 548, - [549] = 510, + [549] = 549, [550] = 550, - [551] = 503, - [552] = 525, - [553] = 524, - [554] = 523, - [555] = 522, - [556] = 521, - [557] = 520, - [558] = 518, - [559] = 480, - [560] = 516, - [561] = 515, - [562] = 514, - [563] = 493, - [564] = 512, - [565] = 495, - [566] = 511, - [567] = 510, - [568] = 509, - [569] = 508, - [570] = 507, - [571] = 506, - [572] = 504, - [573] = 440, - [574] = 487, - [575] = 501, - [576] = 500, - [577] = 498, - [578] = 497, - [579] = 496, - [580] = 495, - [581] = 493, - [582] = 491, - [583] = 489, - [584] = 509, - [585] = 486, - [586] = 485, - [587] = 480, - [588] = 484, - [589] = 483, - [590] = 482, - [591] = 481, - [592] = 592, - [593] = 550, - [594] = 548, - [595] = 547, - [596] = 546, - [597] = 545, - [598] = 544, - [599] = 543, - [600] = 535, - [601] = 519, - [602] = 513, - [603] = 505, - [604] = 499, - [605] = 494, - [606] = 606, - [607] = 607, - [608] = 440, - [609] = 492, - [610] = 490, - [611] = 440, - [612] = 612, - [613] = 606, - [614] = 607, - [615] = 440, - [616] = 488, - [617] = 606, - [618] = 607, - [619] = 440, - [620] = 529, - [621] = 440, - [622] = 528, - [623] = 440, - [624] = 527, - [625] = 612, - [626] = 440, - [627] = 480, - [628] = 525, - [629] = 612, - [630] = 440, - [631] = 524, - [632] = 493, - [633] = 523, - [634] = 495, - [635] = 612, - [636] = 440, - [637] = 522, - [638] = 612, - [639] = 440, - [640] = 521, - [641] = 520, - [642] = 519, - [643] = 513, - [644] = 518, - [645] = 505, - [646] = 499, - [647] = 494, - [648] = 492, - [649] = 490, - [650] = 488, - [651] = 529, - [652] = 528, - [653] = 527, - [654] = 479, - [655] = 480, - [656] = 525, - [657] = 480, - [658] = 524, - [659] = 523, - [660] = 522, - [661] = 521, - [662] = 520, - [663] = 518, - [664] = 516, - [665] = 515, - [666] = 514, - [667] = 512, - [668] = 511, - [669] = 510, - [670] = 509, - [671] = 508, - [672] = 507, - [673] = 506, - [674] = 504, - [675] = 503, - [676] = 501, - [677] = 500, - [678] = 516, - [679] = 440, - [680] = 612, - [681] = 498, - [682] = 497, - [683] = 496, - [684] = 491, - [685] = 489, - [686] = 487, - [687] = 486, - [688] = 485, - [689] = 484, - [690] = 483, - [691] = 482, - [692] = 481, - [693] = 592, - [694] = 550, - [695] = 548, - [696] = 515, - [697] = 547, - [698] = 546, - [699] = 545, - [700] = 493, - [701] = 514, - [702] = 495, - [703] = 544, - [704] = 543, - [705] = 612, - [706] = 607, - [707] = 512, - [708] = 511, - [709] = 510, - [710] = 535, - [711] = 519, - [712] = 495, - [713] = 513, - [714] = 505, - [715] = 499, - [716] = 494, - [717] = 492, - [718] = 490, - [719] = 488, - [720] = 529, - [721] = 528, - [722] = 527, - [723] = 480, - [724] = 479, - [725] = 508, - [726] = 525, - [727] = 524, - [728] = 523, - [729] = 522, - [730] = 521, - [731] = 520, - [732] = 518, - [733] = 516, - [734] = 515, - [735] = 514, - [736] = 512, - [737] = 511, - [738] = 510, - [739] = 509, - [740] = 508, - [741] = 606, - [742] = 507, - [743] = 506, - [744] = 504, - [745] = 503, - [746] = 507, - [747] = 440, - [748] = 612, - [749] = 501, - [750] = 500, - [751] = 498, - [752] = 497, - [753] = 496, - [754] = 491, - [755] = 489, - [756] = 487, - [757] = 486, - [758] = 485, - [759] = 484, - [760] = 483, - [761] = 482, - [762] = 481, - [763] = 592, - [764] = 506, - [765] = 550, - [766] = 548, - [767] = 547, - [768] = 493, - [769] = 504, - [770] = 546, - [771] = 545, - [772] = 544, - [773] = 607, - [774] = 543, - [775] = 612, - [776] = 503, - [777] = 501, - [778] = 500, - [779] = 498, - [780] = 535, - [781] = 519, - [782] = 513, - [783] = 505, - [784] = 499, - [785] = 494, - [786] = 492, - [787] = 490, - [788] = 488, - [789] = 529, - [790] = 592, - [791] = 528, - [792] = 527, - [793] = 479, - [794] = 525, - [795] = 524, - [796] = 523, - [797] = 522, - [798] = 521, - [799] = 520, - [800] = 518, - [801] = 516, - [802] = 515, - [803] = 514, - [804] = 512, - [805] = 511, - [806] = 510, - [807] = 606, - [808] = 509, - [809] = 508, - [810] = 507, - [811] = 506, - [812] = 497, - [813] = 440, - [814] = 504, - [815] = 503, - [816] = 501, - [817] = 500, - [818] = 498, - [819] = 497, - [820] = 496, - [821] = 491, - [822] = 489, - [823] = 487, - [824] = 486, - [825] = 485, - [826] = 484, - [827] = 483, - [828] = 482, - [829] = 481, - [830] = 496, - [831] = 592, - [832] = 550, - [833] = 548, - [834] = 547, - [835] = 546, - [836] = 545, - [837] = 607, - [838] = 544, - [839] = 543, - [840] = 544, - [841] = 612, - [842] = 493, - [843] = 491, - [844] = 489, - [845] = 535, - [846] = 519, - [847] = 513, - [848] = 505, - [849] = 487, - [850] = 499, - [851] = 494, - [852] = 492, - [853] = 490, - [854] = 488, - [855] = 529, - [856] = 528, - [857] = 527, - [858] = 479, - [859] = 525, - [860] = 524, - [861] = 523, - [862] = 522, - [863] = 521, - [864] = 520, - [865] = 518, - [866] = 516, - [867] = 515, - [868] = 514, - [869] = 512, - [870] = 606, - [871] = 511, - [872] = 510, - [873] = 509, - [874] = 508, - [875] = 486, - [876] = 440, - [877] = 507, - [878] = 506, - [879] = 485, - [880] = 504, - [881] = 503, - [882] = 501, - [883] = 500, - [884] = 484, - [885] = 498, - [886] = 497, - [887] = 496, - [888] = 491, - [889] = 489, - [890] = 487, - [891] = 486, - [892] = 485, - [893] = 483, - [894] = 484, - [895] = 483, - [896] = 482, - [897] = 481, - [898] = 592, - [899] = 550, - [900] = 607, - [901] = 548, - [902] = 547, - [903] = 482, - [904] = 546, - [905] = 545, - [906] = 481, - [907] = 544, - [908] = 543, - [909] = 592, - [910] = 550, - [911] = 535, - [912] = 519, - [913] = 513, - [914] = 505, - [915] = 606, - [916] = 499, - [917] = 494, - [918] = 492, - [919] = 490, - [920] = 488, - [921] = 529, - [922] = 528, - [923] = 527, - [924] = 479, - [925] = 525, - [926] = 524, - [927] = 523, - [928] = 522, - [929] = 521, - [930] = 520, - [931] = 518, - [932] = 516, - [933] = 606, - [934] = 515, - [935] = 514, - [936] = 512, - [937] = 511, - [938] = 548, - [939] = 440, - [940] = 510, - [941] = 509, - [942] = 508, - [943] = 507, - [944] = 506, - [945] = 547, - [946] = 504, - [947] = 503, - [948] = 501, - [949] = 500, - [950] = 607, - [951] = 498, - [952] = 497, - [953] = 496, - [954] = 491, - [955] = 489, - [956] = 546, - [957] = 487, - [958] = 486, - [959] = 485, - [960] = 484, - [961] = 483, - [962] = 482, - [963] = 509, - [964] = 481, - [965] = 592, - [966] = 545, - [967] = 550, - [968] = 548, - [969] = 480, - [970] = 547, - [971] = 546, - [972] = 545, - [973] = 544, - [974] = 543, - [975] = 543, - [976] = 535, - [977] = 535, - [978] = 519, - [979] = 513, - [980] = 505, - [981] = 606, - [982] = 499, - [983] = 494, - [984] = 492, - [985] = 490, - [986] = 488, - [987] = 529, - [988] = 528, - [989] = 527, - [990] = 479, - [991] = 525, - [992] = 524, - [993] = 523, - [994] = 522, - [995] = 521, - [996] = 508, - [997] = 520, - [998] = 518, - [999] = 516, - [1000] = 535, - [1001] = 440, - [1002] = 495, - [1003] = 515, - [1004] = 543, - [1005] = 544, - [1006] = 545, - [1007] = 546, - [1008] = 547, - [1009] = 548, - [1010] = 550, - [1011] = 592, - [1012] = 481, - [1013] = 482, - [1014] = 483, - [1015] = 484, - [1016] = 485, - [1017] = 486, - [1018] = 487, - [1019] = 493, - [1020] = 489, - [1021] = 514, - [1022] = 491, - [1023] = 496, - [1024] = 497, - [1025] = 498, - [1026] = 607, - [1027] = 500, - [1028] = 501, - [1029] = 493, - [1030] = 503, - [1031] = 504, - [1032] = 440, - [1033] = 506, - [1034] = 507, - [1035] = 508, - [1036] = 509, - [1037] = 510, - [1038] = 511, - [1039] = 512, - [1040] = 514, - [1041] = 515, - [1042] = 516, - [1043] = 518, - [1044] = 520, - [1045] = 521, - [1046] = 522, - [1047] = 523, - [1048] = 524, - [1049] = 525, - [1050] = 479, - [1051] = 527, - [1052] = 528, - [1053] = 529, - [1054] = 488, - [1055] = 490, - [1056] = 492, - [1057] = 494, - [1058] = 499, - [1059] = 606, - [1060] = 505, - [1061] = 513, - [1062] = 519, - [1063] = 535, - [1064] = 495, - [1065] = 1065, - [1066] = 512, - [1067] = 543, - [1068] = 544, - [1069] = 545, - [1070] = 546, - [1071] = 547, - [1072] = 548, - [1073] = 550, - [1074] = 592, - [1075] = 481, - [1076] = 482, - [1077] = 483, - [1078] = 484, - [1079] = 485, - [1080] = 486, - [1081] = 487, - [1082] = 480, - [1083] = 489, - [1084] = 511, - [1085] = 491, - [1086] = 496, - [1087] = 497, - [1088] = 498, - [1089] = 607, - [1090] = 500, - [1091] = 501, - [1092] = 495, - [1093] = 503, - [1094] = 504, - [1095] = 493, - [1096] = 506, - [1097] = 507, - [1098] = 606, - [1099] = 607, - [1100] = 525, - [1101] = 496, - [1102] = 1102, - [1103] = 497, - [1104] = 1102, - [1105] = 612, - [1106] = 519, - [1107] = 513, - [1108] = 505, - [1109] = 499, - [1110] = 494, - [1111] = 492, - [1112] = 490, - [1113] = 488, - [1114] = 529, - [1115] = 528, - [1116] = 527, - [1117] = 479, - [1118] = 525, - [1119] = 524, - [1120] = 523, - [1121] = 522, - [1122] = 521, - [1123] = 520, - [1124] = 518, - [1125] = 516, - [1126] = 515, - [1127] = 514, - [1128] = 512, - [1129] = 612, - [1130] = 511, - [1131] = 510, - [1132] = 509, - [1133] = 508, - [1134] = 507, - [1135] = 506, - [1136] = 504, - [1137] = 503, - [1138] = 501, - [1139] = 500, - [1140] = 498, - [1141] = 497, - [1142] = 496, - [1143] = 491, - [1144] = 1102, - [1145] = 489, - [1146] = 1102, - [1147] = 487, - [1148] = 486, - [1149] = 485, - [1150] = 484, - [1151] = 483, - [1152] = 482, - [1153] = 481, - [1154] = 592, - [1155] = 550, - [1156] = 548, - [1157] = 547, - [1158] = 546, - [1159] = 545, - [1160] = 544, - [1161] = 543, - [1162] = 612, - [1163] = 535, - [1164] = 519, - [1165] = 513, - [1166] = 505, - [1167] = 499, - [1168] = 494, - [1169] = 492, - [1170] = 490, - [1171] = 488, - [1172] = 529, - [1173] = 528, - [1174] = 527, - [1175] = 479, - [1176] = 525, - [1177] = 524, - [1178] = 523, - [1179] = 522, - [1180] = 521, - [1181] = 520, - [1182] = 518, - [1183] = 516, - [1184] = 515, - [1185] = 514, - [1186] = 512, - [1187] = 511, - [1188] = 510, - [1189] = 509, - [1190] = 612, - [1191] = 508, - [1192] = 507, - [1193] = 506, - [1194] = 504, - [1195] = 503, - [1196] = 501, - [1197] = 500, - [1198] = 498, - [1199] = 490, - [1200] = 496, - [1201] = 491, - [1202] = 1102, - [1203] = 489, - [1204] = 487, - [1205] = 486, - [1206] = 485, - [1207] = 1102, - [1208] = 484, - [1209] = 483, - [1210] = 482, - [1211] = 481, - [1212] = 592, - [1213] = 550, - [1214] = 548, - [1215] = 547, - [1216] = 546, - [1217] = 545, - [1218] = 544, - [1219] = 543, - [1220] = 612, - [1221] = 535, - [1222] = 519, - [1223] = 513, - [1224] = 505, - [1225] = 499, - [1226] = 494, - [1227] = 492, - [1228] = 496, - [1229] = 488, - [1230] = 529, - [1231] = 528, - [1232] = 527, - [1233] = 479, - [1234] = 525, - [1235] = 524, - [1236] = 523, - [1237] = 522, - [1238] = 521, - [1239] = 520, - [1240] = 518, - [1241] = 516, - [1242] = 515, - [1243] = 514, - [1244] = 512, - [1245] = 511, - [1246] = 510, - [1247] = 509, - [1248] = 508, - [1249] = 507, - [1250] = 506, - [1251] = 504, - [1252] = 503, - [1253] = 501, - [1254] = 500, - [1255] = 498, - [1256] = 497, - [1257] = 496, - [1258] = 491, - [1259] = 1102, - [1260] = 489, - [1261] = 487, - [1262] = 486, - [1263] = 485, - [1264] = 484, - [1265] = 483, - [1266] = 482, - [1267] = 481, - [1268] = 592, - [1269] = 550, - [1270] = 548, - [1271] = 547, - [1272] = 607, - [1273] = 546, - [1274] = 545, - [1275] = 544, - [1276] = 543, - [1277] = 612, - [1278] = 535, - [1279] = 519, - [1280] = 513, - [1281] = 505, - [1282] = 499, - [1283] = 494, - [1284] = 492, - [1285] = 490, - [1286] = 488, - [1287] = 529, - [1288] = 528, - [1289] = 527, - [1290] = 479, - [1291] = 525, - [1292] = 524, - [1293] = 523, - [1294] = 522, - [1295] = 521, - [1296] = 520, - [1297] = 518, - [1298] = 516, - [1299] = 515, - [1300] = 514, - [1301] = 512, - [1302] = 511, - [1303] = 606, - [1304] = 510, - [1305] = 509, - [1306] = 508, - [1307] = 507, - [1308] = 506, - [1309] = 504, - [1310] = 503, - [1311] = 501, - [1312] = 500, - [1313] = 498, - [1314] = 497, - [1315] = 515, - [1316] = 491, - [1317] = 1102, - [1318] = 489, - [1319] = 487, - [1320] = 486, - [1321] = 485, - [1322] = 484, - [1323] = 483, - [1324] = 482, - [1325] = 481, - [1326] = 592, - [1327] = 550, - [1328] = 548, - [1329] = 547, - [1330] = 546, - [1331] = 607, - [1332] = 545, - [1333] = 544, - [1334] = 543, - [1335] = 535, - [1336] = 519, - [1337] = 513, - [1338] = 505, - [1339] = 499, - [1340] = 494, - [1341] = 492, - [1342] = 490, - [1343] = 488, - [1344] = 529, - [1345] = 528, - [1346] = 527, - [1347] = 479, - [1348] = 525, - [1349] = 524, - [1350] = 523, - [1351] = 522, - [1352] = 521, - [1353] = 520, - [1354] = 518, - [1355] = 516, - [1356] = 503, - [1357] = 514, - [1358] = 512, - [1359] = 511, - [1360] = 510, - [1361] = 509, - [1362] = 606, - [1363] = 508, - [1364] = 507, - [1365] = 506, - [1366] = 504, - [1367] = 503, - [1368] = 501, - [1369] = 500, - [1370] = 498, - [1371] = 497, - [1372] = 496, - [1373] = 491, - [1374] = 1102, - [1375] = 489, - [1376] = 487, - [1377] = 486, - [1378] = 485, - [1379] = 484, - [1380] = 483, - [1381] = 482, - [1382] = 481, - [1383] = 592, - [1384] = 550, - [1385] = 548, - [1386] = 547, - [1387] = 546, - [1388] = 545, - [1389] = 544, - [1390] = 607, - [1391] = 543, - [1392] = 535, - [1393] = 519, - [1394] = 513, - [1395] = 505, - [1396] = 606, - [1397] = 499, - [1398] = 494, - [1399] = 492, - [1400] = 490, - [1401] = 488, - [1402] = 529, - [1403] = 528, - [1404] = 527, - [1405] = 479, - [1406] = 525, - [1407] = 524, - [1408] = 523, - [1409] = 522, - [1410] = 521, - [1411] = 520, - [1412] = 518, - [1413] = 516, - [1414] = 515, - [1415] = 514, - [1416] = 512, - [1417] = 511, - [1418] = 510, - [1419] = 509, - [1420] = 508, - [1421] = 606, - [1422] = 507, - [1423] = 506, - [1424] = 504, - [1425] = 535, - [1426] = 607, - [1427] = 501, - [1428] = 500, - [1429] = 543, - [1430] = 544, - [1431] = 545, - [1432] = 546, - [1433] = 547, - [1434] = 548, - [1435] = 550, - [1436] = 592, - [1437] = 481, - [1438] = 482, - [1439] = 483, - [1440] = 484, - [1441] = 485, - [1442] = 486, - [1443] = 487, - [1444] = 489, - [1445] = 491, - [1446] = 496, - [1447] = 497, - [1448] = 498, - [1449] = 607, - [1450] = 500, - [1451] = 501, - [1452] = 503, - [1453] = 504, - [1454] = 506, - [1455] = 507, - [1456] = 508, - [1457] = 509, - [1458] = 510, - [1459] = 511, - [1460] = 512, - [1461] = 514, - [1462] = 515, - [1463] = 516, - [1464] = 518, - [1465] = 520, - [1466] = 521, - [1467] = 522, - [1468] = 523, - [1469] = 524, - [1470] = 525, - [1471] = 479, - [1472] = 527, - [1473] = 528, - [1474] = 529, - [1475] = 488, - [1476] = 490, - [1477] = 492, - [1478] = 494, - [1479] = 499, - [1480] = 606, - [1481] = 505, - [1482] = 513, - [1483] = 519, - [1484] = 535, - [1485] = 485, - [1486] = 498, - [1487] = 497, - [1488] = 543, - [1489] = 544, - [1490] = 545, - [1491] = 546, - [1492] = 547, - [1493] = 548, - [1494] = 550, - [1495] = 592, - [1496] = 481, - [1497] = 482, - [1498] = 483, - [1499] = 484, - [1500] = 485, - [1501] = 486, - [1502] = 487, - [1503] = 489, - [1504] = 491, - [1505] = 496, - [1506] = 497, - [1507] = 498, - [1508] = 607, - [1509] = 500, - [1510] = 501, - [1511] = 503, - [1512] = 504, - [1513] = 506, - [1514] = 507, - [1515] = 508, - [1516] = 509, - [1517] = 510, - [1518] = 511, - [1519] = 512, - [1520] = 514, - [1521] = 515, - [1522] = 516, - [1523] = 518, - [1524] = 520, - [1525] = 521, - [1526] = 522, - [1527] = 523, - [1528] = 524, - [1529] = 525, - [1530] = 479, - [1531] = 527, - [1532] = 528, - [1533] = 529, - [1534] = 488, - [1535] = 490, - [1536] = 492, - [1537] = 494, - [1538] = 499, - [1539] = 606, - [1540] = 505, - [1541] = 513, - [1542] = 519, - [1543] = 535, - [1544] = 496, - [1545] = 491, - [1546] = 1102, - [1547] = 543, - [1548] = 544, - [1549] = 545, - [1550] = 546, - [1551] = 547, - [1552] = 548, - [1553] = 550, - [1554] = 592, - [1555] = 481, - [1556] = 482, - [1557] = 483, - [1558] = 484, - [1559] = 485, - [1560] = 486, - [1561] = 487, - [1562] = 489, - [1563] = 491, - [1564] = 496, - [1565] = 497, - [1566] = 498, - [1567] = 607, - [1568] = 500, - [1569] = 501, - [1570] = 503, - [1571] = 504, - [1572] = 506, - [1573] = 507, - [1574] = 508, - [1575] = 509, - [1576] = 510, - [1577] = 511, - [1578] = 512, - [1579] = 514, - [1580] = 515, - [1581] = 516, - [1582] = 518, - [1583] = 520, - [1584] = 521, - [1585] = 522, - [1586] = 523, - [1587] = 524, - [1588] = 525, - [1589] = 479, - [1590] = 527, - [1591] = 528, - [1592] = 529, - [1593] = 488, - [1594] = 490, - [1595] = 492, - [1596] = 494, - [1597] = 499, - [1598] = 606, - [1599] = 505, - [1600] = 513, - [1601] = 519, - [1602] = 535, - [1603] = 489, - [1604] = 487, - [1605] = 486, - [1606] = 543, - [1607] = 544, - [1608] = 545, - [1609] = 546, - [1610] = 547, - [1611] = 548, - [1612] = 550, - [1613] = 592, - [1614] = 481, - [1615] = 482, - [1616] = 483, - [1617] = 484, - [1618] = 485, - [1619] = 486, - [1620] = 487, - [1621] = 489, - [1622] = 491, - [1623] = 496, - [1624] = 497, - [1625] = 498, - [1626] = 607, - [1627] = 500, - [1628] = 501, - [1629] = 503, - [1630] = 504, - [1631] = 506, - [1632] = 507, - [1633] = 508, - [1634] = 509, - [1635] = 510, - [1636] = 511, - [1637] = 512, - [1638] = 514, - [1639] = 515, - [1640] = 516, - [1641] = 518, - [1642] = 520, - [1643] = 521, - [1644] = 522, - [1645] = 523, - [1646] = 524, - [1647] = 525, - [1648] = 479, - [1649] = 527, - [1650] = 528, - [1651] = 529, - [1652] = 488, - [1653] = 490, - [1654] = 492, - [1655] = 494, - [1656] = 499, - [1657] = 606, - [1658] = 505, - [1659] = 513, - [1660] = 519, - [1661] = 535, - [1662] = 481, - [1663] = 484, - [1664] = 612, - [1665] = 543, - [1666] = 544, - [1667] = 545, - [1668] = 546, - [1669] = 547, - [1670] = 548, - [1671] = 550, - [1672] = 592, - [1673] = 481, - [1674] = 482, - [1675] = 483, - [1676] = 484, - [1677] = 485, - [1678] = 486, - [1679] = 487, - [1680] = 489, - [1681] = 491, - [1682] = 496, - [1683] = 497, - [1684] = 498, - [1685] = 607, - [1686] = 500, - [1687] = 501, - [1688] = 503, - [1689] = 504, - [1690] = 506, - [1691] = 507, - [1692] = 508, - [1693] = 509, - [1694] = 510, - [1695] = 511, - [1696] = 512, - [1697] = 514, - [1698] = 515, - [1699] = 516, - [1700] = 518, - [1701] = 520, - [1702] = 521, - [1703] = 522, - [1704] = 523, - [1705] = 524, - [1706] = 525, - [1707] = 479, - [1708] = 527, - [1709] = 528, - [1710] = 529, - [1711] = 488, - [1712] = 490, - [1713] = 492, - [1714] = 494, - [1715] = 499, - [1716] = 606, - [1717] = 505, - [1718] = 513, - [1719] = 519, - [1720] = 535, - [1721] = 483, - [1722] = 482, - [1723] = 612, - [1724] = 543, - [1725] = 544, - [1726] = 545, - [1727] = 546, - [1728] = 547, - [1729] = 548, - [1730] = 550, - [1731] = 592, - [1732] = 481, - [1733] = 482, - [1734] = 483, - [1735] = 484, - [1736] = 485, - [1737] = 486, - [1738] = 487, - [1739] = 489, - [1740] = 491, - [1741] = 612, - [1742] = 497, - [1743] = 498, - [1744] = 607, - [1745] = 500, - [1746] = 501, - [1747] = 503, - [1748] = 504, - [1749] = 506, - [1750] = 507, - [1751] = 508, - [1752] = 509, - [1753] = 510, - [1754] = 511, - [1755] = 512, - [1756] = 514, - [1757] = 515, - [1758] = 516, - [1759] = 518, - [1760] = 520, - [1761] = 521, - [1762] = 522, - [1763] = 523, - [1764] = 524, - [1765] = 525, - [1766] = 479, - [1767] = 527, - [1768] = 528, - [1769] = 529, - [1770] = 488, - [1771] = 490, - [1772] = 492, - [1773] = 494, - [1774] = 499, - [1775] = 606, - [1776] = 505, - [1777] = 513, - [1778] = 519, - [1779] = 535, - [1780] = 544, - [1781] = 592, - [1782] = 612, - [1783] = 543, - [1784] = 544, - [1785] = 545, - [1786] = 546, - [1787] = 547, - [1788] = 548, - [1789] = 550, - [1790] = 592, - [1791] = 481, - [1792] = 482, - [1793] = 483, - [1794] = 484, - [1795] = 485, - [1796] = 486, - [1797] = 487, - [1798] = 489, - [1799] = 491, - [1800] = 496, - [1801] = 497, - [1802] = 498, - [1803] = 550, - [1804] = 500, - [1805] = 501, - [1806] = 503, - [1807] = 504, - [1808] = 506, - [1809] = 507, - [1810] = 508, - [1811] = 509, - [1812] = 510, - [1813] = 511, - [1814] = 512, - [1815] = 514, - [1816] = 515, - [1817] = 516, - [1818] = 518, - [1819] = 520, - [1820] = 521, - [1821] = 522, - [1822] = 523, - [1823] = 524, - [1824] = 525, - [1825] = 479, - [1826] = 527, - [1827] = 528, - [1828] = 529, - [1829] = 488, - [1830] = 490, - [1831] = 492, - [1832] = 494, - [1833] = 499, - [1834] = 548, - [1835] = 505, - [1836] = 513, - [1837] = 519, - [1838] = 535, - [1839] = 547, - [1840] = 546, - [1841] = 612, - [1842] = 543, - [1843] = 544, - [1844] = 545, - [1845] = 546, - [1846] = 547, - [1847] = 548, - [1848] = 550, - [1849] = 592, - [1850] = 481, - [1851] = 482, - [1852] = 483, - [1853] = 484, - [1854] = 485, - [1855] = 486, - [1856] = 487, - [1857] = 489, - [1858] = 491, - [1859] = 496, - [1860] = 497, - [1861] = 498, - [1862] = 545, - [1863] = 500, - [1864] = 501, - [1865] = 503, - [1866] = 504, - [1867] = 506, - [1868] = 507, - [1869] = 508, - [1870] = 509, - [1871] = 510, - [1872] = 511, - [1873] = 512, - [1874] = 514, - [1875] = 515, - [1876] = 516, - [1877] = 518, - [1878] = 520, - [1879] = 521, - [1880] = 522, - [1881] = 523, - [1882] = 524, - [1883] = 525, - [1884] = 479, - [1885] = 527, - [1886] = 528, - [1887] = 529, - [1888] = 488, - [1889] = 490, - [1890] = 492, - [1891] = 494, - [1892] = 499, - [1893] = 515, - [1894] = 505, - [1895] = 513, - [1896] = 519, - [1897] = 535, - [1898] = 543, - [1899] = 535, - [1900] = 612, - [1901] = 543, - [1902] = 544, - [1903] = 545, - [1904] = 546, - [1905] = 547, - [1906] = 548, - [1907] = 550, - [1908] = 592, - [1909] = 481, - [1910] = 482, - [1911] = 483, - [1912] = 484, - [1913] = 485, - [1914] = 486, - [1915] = 487, - [1916] = 489, - [1917] = 491, - [1918] = 496, - [1919] = 497, - [1920] = 498, - [1921] = 519, - [1922] = 500, - [1923] = 501, - [1924] = 503, - [1925] = 504, - [1926] = 506, - [1927] = 507, - [1928] = 508, - [1929] = 509, - [1930] = 510, - [1931] = 511, - [1932] = 512, - [1933] = 514, - [1934] = 515, - [1935] = 516, - [1936] = 518, - [1937] = 520, - [1938] = 521, - [1939] = 522, - [1940] = 523, - [1941] = 524, - [1942] = 525, - [1943] = 479, - [1944] = 527, - [1945] = 528, - [1946] = 529, - [1947] = 488, - [1948] = 490, - [1949] = 492, - [1950] = 494, - [1951] = 499, - [1952] = 513, - [1953] = 505, - [1954] = 513, - [1955] = 519, - [1956] = 612, - [1957] = 607, - [1958] = 606, - [1959] = 612, - [1960] = 607, - [1961] = 606, - [1962] = 612, - [1963] = 612, - [1964] = 535, - [1965] = 612, - [1966] = 1966, - [1967] = 505, - [1968] = 606, - [1969] = 499, - [1970] = 494, - [1971] = 543, - [1972] = 544, - [1973] = 492, - [1974] = 545, - [1975] = 490, - [1976] = 488, - [1977] = 529, - [1978] = 528, - [1979] = 546, - [1980] = 547, - [1981] = 548, - [1982] = 527, - [1983] = 479, - [1984] = 550, - [1985] = 592, - [1986] = 481, - [1987] = 482, - [1988] = 524, - [1989] = 523, - [1990] = 522, - [1991] = 521, - [1992] = 520, - [1993] = 518, - [1994] = 516, - [1995] = 483, - [1996] = 484, - [1997] = 485, - [1998] = 606, - [1999] = 514, - [2000] = 486, - [2001] = 487, - [2002] = 489, - [2003] = 512, - [2004] = 511, - [2005] = 510, - [2006] = 509, - [2007] = 508, - [2008] = 507, - [2009] = 506, - [2010] = 504, - [2011] = 503, - [2012] = 1102, - [2013] = 491, - [2014] = 496, - [2015] = 501, - [2016] = 500, - [2017] = 607, - [2018] = 498, - [2019] = 497, - [2020] = 498, - [2021] = 607, - [2022] = 500, - [2023] = 501, - [2024] = 503, - [2025] = 497, - [2026] = 496, - [2027] = 491, - [2028] = 1102, - [2029] = 504, - [2030] = 506, - [2031] = 507, - [2032] = 489, - [2033] = 487, - [2034] = 486, - [2035] = 485, - [2036] = 484, - [2037] = 483, - [2038] = 482, - [2039] = 481, - [2040] = 508, - [2041] = 509, - [2042] = 510, - [2043] = 592, - [2044] = 550, - [2045] = 511, - [2046] = 514, - [2047] = 515, - [2048] = 548, - [2049] = 547, - [2050] = 546, - [2051] = 545, - [2052] = 544, - [2053] = 543, - [2054] = 612, - [2055] = 535, - [2056] = 606, - [2057] = 607, - [2058] = 516, - [2059] = 518, - [2060] = 520, - [2061] = 1102, - [2062] = 521, - [2063] = 612, - [2064] = 606, - [2065] = 522, - [2066] = 523, - [2067] = 524, - [2068] = 525, - [2069] = 479, - [2070] = 607, - [2071] = 1102, - [2072] = 507, - [2073] = 607, - [2074] = 527, - [2075] = 528, - [2076] = 529, - [2077] = 1102, - [2078] = 519, - [2079] = 513, - [2080] = 505, - [2081] = 606, - [2082] = 499, - [2083] = 494, - [2084] = 492, - [2085] = 488, - [2086] = 490, - [2087] = 490, - [2088] = 492, - [2089] = 488, - [2090] = 529, - [2091] = 494, - [2092] = 499, - [2093] = 606, - [2094] = 528, - [2095] = 527, - [2096] = 479, - [2097] = 525, - [2098] = 524, - [2099] = 523, - [2100] = 522, - [2101] = 521, - [2102] = 520, - [2103] = 518, - [2104] = 505, - [2105] = 513, - [2106] = 519, - [2107] = 516, - [2108] = 535, - [2109] = 515, - [2110] = 514, - [2111] = 1966, - [2112] = 543, - [2113] = 544, - [2114] = 545, - [2115] = 546, - [2116] = 512, - [2117] = 511, - [2118] = 510, - [2119] = 509, - [2120] = 547, - [2121] = 548, - [2122] = 550, - [2123] = 508, - [2124] = 543, - [2125] = 506, - [2126] = 504, - [2127] = 503, - [2128] = 501, - [2129] = 500, - [2130] = 607, - [2131] = 592, - [2132] = 512, - [2133] = 482, - [2134] = 498, - [2135] = 483, - [2136] = 484, - [2137] = 485, - [2138] = 486, - [2139] = 497, - [2140] = 496, - [2141] = 491, - [2142] = 1102, - [2143] = 489, - [2144] = 487, - [2145] = 486, - [2146] = 485, - [2147] = 484, - [2148] = 483, - [2149] = 482, - [2150] = 487, - [2151] = 489, - [2152] = 1102, - [2153] = 491, - [2154] = 496, - [2155] = 481, - [2156] = 592, - [2157] = 497, - [2158] = 498, - [2159] = 607, - [2160] = 500, - [2161] = 550, - [2162] = 548, - [2163] = 547, - [2164] = 546, - [2165] = 501, - [2166] = 503, - [2167] = 504, - [2168] = 545, - [2169] = 544, - [2170] = 481, - [2171] = 535, - [2172] = 519, - [2173] = 513, - [2174] = 505, - [2175] = 506, - [2176] = 606, - [2177] = 507, - [2178] = 508, - [2179] = 499, - [2180] = 494, - [2181] = 509, - [2182] = 510, - [2183] = 511, - [2184] = 492, - [2185] = 490, - [2186] = 488, - [2187] = 529, - [2188] = 528, - [2189] = 527, - [2190] = 479, - [2191] = 525, - [2192] = 512, - [2193] = 524, - [2194] = 523, - [2195] = 522, - [2196] = 514, - [2197] = 515, - [2198] = 516, - [2199] = 518, - [2200] = 520, - [2201] = 521, - [2202] = 2202, - [2203] = 2202, - [2204] = 2202, - [2205] = 2202, - [2206] = 2202, - [2207] = 2202, - [2208] = 2202, - [2209] = 2202, - [2210] = 2202, - [2211] = 2202, - [2212] = 2202, - [2213] = 2202, - [2214] = 2202, - [2215] = 2202, - [2216] = 2202, - [2217] = 2202, - [2218] = 2202, - [2219] = 2202, - [2220] = 2202, - [2221] = 2202, - [2222] = 2202, - [2223] = 2202, - [2224] = 2202, - [2225] = 2202, - [2226] = 2202, - [2227] = 2202, - [2228] = 2202, - [2229] = 2202, - [2230] = 2202, - [2231] = 2231, - [2232] = 2232, - [2233] = 2232, - [2234] = 2234, - [2235] = 2231, - [2236] = 2231, - [2237] = 2232, - [2238] = 2238, - [2239] = 2234, - [2240] = 2240, - [2241] = 2241, - [2242] = 2234, - [2243] = 2240, - [2244] = 2238, - [2245] = 2238, - [2246] = 2240, - [2247] = 2231, - [2248] = 2232, - [2249] = 2232, - [2250] = 2232, - [2251] = 2231, - [2252] = 2234, - [2253] = 2234, - [2254] = 2241, - [2255] = 2234, - [2256] = 2240, - [2257] = 2234, - [2258] = 2238, - [2259] = 2231, - [2260] = 2240, - [2261] = 2238, - [2262] = 2232, - [2263] = 2232, - [2264] = 2231, - [2265] = 2234, - [2266] = 2238, - [2267] = 2240, - [2268] = 2240, - [2269] = 2238, - [2270] = 2240, - [2271] = 2234, - [2272] = 2234, - [2273] = 2238, - [2274] = 2231, - [2275] = 2232, - [2276] = 2231, - [2277] = 2232, - [2278] = 2232, - [2279] = 2231, - [2280] = 2234, - [2281] = 2240, - [2282] = 2238, - [2283] = 2240, - [2284] = 2238, - [2285] = 2234, - [2286] = 2232, - [2287] = 2231, - [2288] = 2232, - [2289] = 2231, - [2290] = 2234, - [2291] = 2234, - [2292] = 2238, - [2293] = 2240, - [2294] = 2240, - [2295] = 2234, - [2296] = 2240, - [2297] = 2238, - [2298] = 2238, - [2299] = 2231, - [2300] = 2232, - [2301] = 2234, - [2302] = 2238, - [2303] = 2238, - [2304] = 2231, - [2305] = 2232, - [2306] = 2240, - [2307] = 2231, - [2308] = 2308, - [2309] = 2240, - [2310] = 2238, - [2311] = 2240, - [2312] = 2234, - [2313] = 2234, - [2314] = 2240, - [2315] = 2238, - [2316] = 2234, - [2317] = 2231, - [2318] = 2232, - [2319] = 2232, - [2320] = 2231, - [2321] = 2231, - [2322] = 2234, - [2323] = 2240, - [2324] = 2238, - [2325] = 2238, - [2326] = 2238, - [2327] = 2240, - [2328] = 2234, - [2329] = 2240, - [2330] = 2241, - [2331] = 2234, - [2332] = 2332, - [2333] = 2232, - [2334] = 2232, - [2335] = 2231, - [2336] = 2238, - [2337] = 2231, - [2338] = 2232, - [2339] = 2232, - [2340] = 2232, - [2341] = 2234, - [2342] = 2240, - [2343] = 2231, - [2344] = 2238, - [2345] = 2232, - [2346] = 2231, - [2347] = 2231, - [2348] = 2238, - [2349] = 2234, - [2350] = 2240, - [2351] = 2240, - [2352] = 2238, - [2353] = 2234, - [2354] = 2232, - [2355] = 2231, - [2356] = 2240, - [2357] = 2357, - [2358] = 2232, - [2359] = 2234, - [2360] = 2231, - [2361] = 2240, - [2362] = 2238, - [2363] = 2238, - [2364] = 2238, - [2365] = 2234, - [2366] = 2240, - [2367] = 2238, - [2368] = 2238, - [2369] = 2240, - [2370] = 2234, - [2371] = 2234, - [2372] = 2240, - [2373] = 2231, - [2374] = 2232, - [2375] = 2240, - [2376] = 2231, - [2377] = 2231, - [2378] = 2232, - [2379] = 2232, - [2380] = 2232, - [2381] = 2231, - [2382] = 2382, - [2383] = 2382, - [2384] = 2384, - [2385] = 2382, - [2386] = 2384, - [2387] = 2382, - [2388] = 2388, - [2389] = 2382, - [2390] = 2390, - [2391] = 2384, - [2392] = 2390, - [2393] = 2382, - [2394] = 2388, - [2395] = 2384, - [2396] = 2390, - [2397] = 2382, - [2398] = 2390, - [2399] = 2384, - [2400] = 2388, - [2401] = 2401, - [2402] = 2390, - [2403] = 2382, - [2404] = 2382, - [2405] = 2384, - [2406] = 2388, - [2407] = 2407, - [2408] = 2388, - [2409] = 2409, - [2410] = 2384, - [2411] = 2390, - [2412] = 2390, - [2413] = 2388, - [2414] = 2384, - [2415] = 2382, - [2416] = 2382, - [2417] = 2388, - [2418] = 2384, - [2419] = 2388, - [2420] = 2390, - [2421] = 2382, - [2422] = 2409, - [2423] = 2390, - [2424] = 2390, - [2425] = 2425, - [2426] = 2388, - [2427] = 2384, - [2428] = 2384, - [2429] = 2390, - [2430] = 2388, - [2431] = 2401, - [2432] = 2384, - [2433] = 2388, - [2434] = 2407, - [2435] = 2382, - [2436] = 2382, - [2437] = 2382, - [2438] = 2388, - [2439] = 2384, - [2440] = 2388, - [2441] = 2390, - [2442] = 2384, - [2443] = 2390, - [2444] = 2388, - [2445] = 2384, - [2446] = 2384, - [2447] = 2390, - [2448] = 2382, - [2449] = 2384, - [2450] = 2388, - [2451] = 2384, - [2452] = 2390, - [2453] = 2382, - [2454] = 2390, - [2455] = 2388, - [2456] = 2384, - [2457] = 2390, - [2458] = 2390, - [2459] = 2384, - [2460] = 2390, - [2461] = 2388, - [2462] = 2382, - [2463] = 2382, - [2464] = 2388, - [2465] = 2388, - [2466] = 2384, - [2467] = 2384, - [2468] = 2388, - [2469] = 2390, - [2470] = 2382, - [2471] = 2390, - [2472] = 2388, - [2473] = 2384, - [2474] = 2382, - [2475] = 2390, - [2476] = 2384, - [2477] = 2388, - [2478] = 2382, - [2479] = 2388, - [2480] = 2384, - [2481] = 2382, - [2482] = 2382, - [2483] = 2388, - [2484] = 2384, - [2485] = 2390, - [2486] = 2382, - [2487] = 2390, - [2488] = 2388, - [2489] = 2384, - [2490] = 2382, - [2491] = 2382, - [2492] = 2390, - [2493] = 2384, - [2494] = 2388, - [2495] = 2382, - [2496] = 2382, - [2497] = 2388, - [2498] = 2388, - [2499] = 2384, - [2500] = 2390, - [2501] = 2382, - [2502] = 2390, - [2503] = 2388, - [2504] = 2390, - [2505] = 2384, - [2506] = 2390, - [2507] = 2384, - [2508] = 2382, - [2509] = 2509, - [2510] = 2510, - [2511] = 612, - [2512] = 2510, - [2513] = 612, - [2514] = 612, - [2515] = 2510, - [2516] = 612, - [2517] = 2517, - [2518] = 2518, - [2519] = 2519, - [2520] = 2520, - [2521] = 2521, - [2522] = 2522, - [2523] = 2518, - [2524] = 2524, - [2525] = 2525, - [2526] = 2526, - [2527] = 2517, - [2528] = 2528, - [2529] = 2529, - [2530] = 2530, - [2531] = 2529, - [2532] = 2528, - [2533] = 2517, - [2534] = 2534, - [2535] = 2535, - [2536] = 2536, - [2537] = 2537, - [2538] = 2538, - [2539] = 2539, - [2540] = 2540, - [2541] = 2541, - [2542] = 2521, - [2543] = 2522, - [2544] = 2524, - [2545] = 2517, - [2546] = 2546, - [2547] = 2547, - [2548] = 2519, - [2549] = 2520, - [2550] = 2546, - [2551] = 2518, - [2552] = 2546, - [2553] = 2525, - [2554] = 2526, - [2555] = 2528, - [2556] = 2529, - [2557] = 2530, - [2558] = 2524, - [2559] = 2525, - [2560] = 2538, - [2561] = 2547, - [2562] = 2518, - [2563] = 2534, - [2564] = 2535, - [2565] = 2536, - [2566] = 2537, - [2567] = 2519, - [2568] = 2520, - [2569] = 2522, - [2570] = 2518, - [2571] = 2525, - [2572] = 2521, - [2573] = 2541, - [2574] = 2540, - [2575] = 2538, - [2576] = 2539, - [2577] = 2540, - [2578] = 2541, - [2579] = 2521, - [2580] = 2522, - [2581] = 2524, - [2582] = 2517, - [2583] = 2546, - [2584] = 2547, - [2585] = 2519, - [2586] = 2520, - [2587] = 2518, - [2588] = 2526, - [2589] = 2525, - [2590] = 2526, - [2591] = 2528, - [2592] = 2529, - [2593] = 2530, - [2594] = 2520, - [2595] = 2519, - [2596] = 2539, - [2597] = 2547, - [2598] = 2534, - [2599] = 2535, - [2600] = 2536, - [2601] = 2537, - [2602] = 2538, - [2603] = 2539, - [2604] = 2517, - [2605] = 2540, - [2606] = 2537, - [2607] = 2541, - [2608] = 2521, - [2609] = 2522, - [2610] = 2536, - [2611] = 2524, - [2612] = 2517, - [2613] = 2528, - [2614] = 2529, - [2615] = 2546, - [2616] = 2547, - [2617] = 2519, - [2618] = 2520, - [2619] = 2535, - [2620] = 2518, - [2621] = 2530, - [2622] = 2525, - [2623] = 2526, - [2624] = 2528, - [2625] = 2529, - [2626] = 2530, - [2627] = 2546, - [2628] = 2517, - [2629] = 2524, - [2630] = 2534, - [2631] = 2535, - [2632] = 2536, - [2633] = 2537, - [2634] = 2538, - [2635] = 2539, - [2636] = 2540, - [2637] = 2541, - [2638] = 2521, - [2639] = 2522, - [2640] = 2524, - [2641] = 2517, - [2642] = 2534, - [2643] = 2546, - [2644] = 2547, - [2645] = 2519, - [2646] = 2520, - [2647] = 2518, - [2648] = 2517, - [2649] = 2525, - [2650] = 2530, - [2651] = 2526, - [2652] = 2534, - [2653] = 2528, - [2654] = 2529, - [2655] = 2530, - [2656] = 2535, - [2657] = 2534, - [2658] = 2535, - [2659] = 2546, - [2660] = 2547, - [2661] = 2536, - [2662] = 2530, - [2663] = 2534, - [2664] = 2535, - [2665] = 2529, - [2666] = 2528, - [2667] = 2537, - [2668] = 2538, - [2669] = 2526, - [2670] = 2539, - [2671] = 2540, - [2672] = 2541, - [2673] = 2521, - [2674] = 2522, - [2675] = 2524, - [2676] = 2517, - [2677] = 2546, - [2678] = 2547, - [2679] = 2519, - [2680] = 2520, - [2681] = 2518, - [2682] = 2536, - [2683] = 2525, - [2684] = 2526, - [2685] = 2528, - [2686] = 2529, - [2687] = 2530, - [2688] = 2525, - [2689] = 2537, - [2690] = 2518, - [2691] = 2526, - [2692] = 2534, - [2693] = 2535, - [2694] = 2536, - [2695] = 2537, - [2696] = 2520, - [2697] = 2538, - [2698] = 2519, - [2699] = 2539, - [2700] = 2540, - [2701] = 2541, - [2702] = 2521, - [2703] = 2547, - [2704] = 2522, - [2705] = 2538, - [2706] = 2539, - [2707] = 2524, - [2708] = 2517, - [2709] = 2546, - [2710] = 2547, - [2711] = 2546, - [2712] = 2519, - [2713] = 2520, - [2714] = 2518, - [2715] = 2540, - [2716] = 2525, - [2717] = 2526, - [2718] = 2528, - [2719] = 2529, - [2720] = 2530, - [2721] = 2534, - [2722] = 2535, - [2723] = 2536, - [2724] = 2537, - [2725] = 2538, - [2726] = 2539, - [2727] = 2540, - [2728] = 2541, - [2729] = 2521, - [2730] = 2522, - [2731] = 2524, - [2732] = 2517, - [2733] = 2546, - [2734] = 2530, - [2735] = 2547, - [2736] = 2519, - [2737] = 2520, - [2738] = 2518, - [2739] = 2541, - [2740] = 2525, - [2741] = 2526, - [2742] = 2524, - [2743] = 2528, - [2744] = 2522, - [2745] = 2529, - [2746] = 2530, - [2747] = 2534, - [2748] = 2535, - [2749] = 2536, - [2750] = 2537, - [2751] = 2521, - [2752] = 2522, - [2753] = 2538, - [2754] = 2539, - [2755] = 2521, - [2756] = 2519, - [2757] = 2541, - [2758] = 2520, - [2759] = 2540, - [2760] = 2541, - [2761] = 2518, - [2762] = 606, - [2763] = 2521, - [2764] = 2522, - [2765] = 2524, - [2766] = 2517, - [2767] = 2546, - [2768] = 2547, - [2769] = 2519, - [2770] = 2520, - [2771] = 2518, - [2772] = 607, - [2773] = 2525, - [2774] = 2526, - [2775] = 2528, - [2776] = 2529, - [2777] = 2530, - [2778] = 2534, - [2779] = 2535, - [2780] = 2525, - [2781] = 2536, - [2782] = 2537, - [2783] = 2538, - [2784] = 2539, - [2785] = 2540, - [2786] = 2541, - [2787] = 2521, - [2788] = 2526, - [2789] = 2522, - [2790] = 2540, - [2791] = 2524, - [2792] = 2517, - [2793] = 2546, - [2794] = 2547, - [2795] = 2519, - [2796] = 2539, - [2797] = 2528, - [2798] = 2529, - [2799] = 2520, - [2800] = 2518, - [2801] = 2530, - [2802] = 2525, - [2803] = 2538, - [2804] = 2526, - [2805] = 2528, - [2806] = 2529, - [2807] = 2530, - [2808] = 2534, - [2809] = 2535, - [2810] = 2536, - [2811] = 2537, - [2812] = 2538, - [2813] = 2539, - [2814] = 2540, - [2815] = 2541, - [2816] = 2521, - [2817] = 2522, - [2818] = 2524, - [2819] = 2541, - [2820] = 2546, - [2821] = 2547, - [2822] = 2519, - [2823] = 2520, - [2824] = 2518, - [2825] = 2540, - [2826] = 2537, - [2827] = 2525, - [2828] = 2526, - [2829] = 2528, - [2830] = 2529, - [2831] = 2530, - [2832] = 2534, - [2833] = 2535, - [2834] = 2536, - [2835] = 2535, - [2836] = 2534, - [2837] = 2536, - [2838] = 2537, - [2839] = 2538, - [2840] = 2539, - [2841] = 2540, - [2842] = 2541, - [2843] = 2539, - [2844] = 2538, - [2845] = 2521, - [2846] = 2522, - [2847] = 2524, - [2848] = 2536, - [2849] = 2537, - [2850] = 2537, - [2851] = 2517, - [2852] = 2546, - [2853] = 2536, - [2854] = 2538, - [2855] = 2547, - [2856] = 2519, - [2857] = 2520, - [2858] = 2518, - [2859] = 2535, - [2860] = 2525, - [2861] = 2526, - [2862] = 2528, - [2863] = 2529, - [2864] = 2530, - [2865] = 2539, - [2866] = 2529, - [2867] = 2534, - [2868] = 2535, - [2869] = 2536, - [2870] = 2537, - [2871] = 2538, - [2872] = 2528, - [2873] = 2539, - [2874] = 2540, - [2875] = 2541, - [2876] = 2521, - [2877] = 2522, - [2878] = 2524, - [2879] = 2517, - [2880] = 2526, - [2881] = 2546, - [2882] = 2525, - [2883] = 2547, - [2884] = 2519, - [2885] = 2520, - [2886] = 2547, - [2887] = 2534, - [2888] = 2525, - [2889] = 2522, - [2890] = 2521, - [2891] = 2530, - [2892] = 2526, - [2893] = 2528, - [2894] = 2529, - [2895] = 2518, - [2896] = 2530, - [2897] = 2534, - [2898] = 2535, - [2899] = 2536, - [2900] = 2537, - [2901] = 2538, - [2902] = 2539, - [2903] = 2540, - [2904] = 2541, - [2905] = 2521, - [2906] = 2522, - [2907] = 2524, - [2908] = 2517, - [2909] = 2546, - [2910] = 2547, - [2911] = 2519, - [2912] = 2520, - [2913] = 2518, - [2914] = 2529, - [2915] = 2525, - [2916] = 2526, - [2917] = 2528, - [2918] = 2520, - [2919] = 2529, - [2920] = 2530, - [2921] = 2534, - [2922] = 2535, - [2923] = 2536, - [2924] = 2537, - [2925] = 2538, - [2926] = 2519, - [2927] = 2539, - [2928] = 2547, - [2929] = 2540, - [2930] = 2541, - [2931] = 2521, - [2932] = 2522, - [2933] = 2524, - [2934] = 2517, - [2935] = 2528, - [2936] = 2526, - [2937] = 2546, - [2938] = 2547, - [2939] = 2519, - [2940] = 2520, - [2941] = 2546, - [2942] = 2517, - [2943] = 2518, - [2944] = 2525, - [2945] = 2518, - [2946] = 2520, - [2947] = 2525, - [2948] = 2526, - [2949] = 2528, - [2950] = 2529, - [2951] = 2530, - [2952] = 2952, - [2953] = 2534, - [2954] = 2535, - [2955] = 2536, - [2956] = 2537, - [2957] = 2538, - [2958] = 2519, - [2959] = 2539, - [2960] = 2540, - [2961] = 2541, - [2962] = 2521, - [2963] = 2522, - [2964] = 2524, - [2965] = 2524, - [2966] = 2517, - [2967] = 2546, - [2968] = 2547, - [2969] = 2519, - [2970] = 2520, - [2971] = 2518, - [2972] = 2522, - [2973] = 2521, - [2974] = 2541, - [2975] = 2547, - [2976] = 2525, - [2977] = 2526, - [2978] = 2528, - [2979] = 2529, - [2980] = 2530, - [2981] = 2546, - [2982] = 2517, - [2983] = 2524, - [2984] = 2540, - [2985] = 2522, - [2986] = 2534, - [2987] = 2535, - [2988] = 2536, - [2989] = 2537, - [2990] = 2538, - [2991] = 2539, - [2992] = 2540, - [2993] = 2541, - [2994] = 2521, - [2995] = 2522, - [2996] = 2524, - [2997] = 2517, - [2998] = 2546, - [2999] = 2547, - [3000] = 2519, - [3001] = 2520, - [3002] = 2518, - [3003] = 2521, - [3004] = 2525, - [3005] = 2526, - [3006] = 2528, - [3007] = 2529, - [3008] = 2530, - [3009] = 2517, - [3010] = 2538, - [3011] = 3011, - [3012] = 2537, - [3013] = 2534, - [3014] = 2535, - [3015] = 2536, - [3016] = 2537, - [3017] = 2538, - [3018] = 2536, - [3019] = 2539, - [3020] = 2535, - [3021] = 2540, - [3022] = 2541, - [3023] = 2521, - [3024] = 2522, - [3025] = 2524, - [3026] = 2517, - [3027] = 2541, - [3028] = 2540, - [3029] = 2546, - [3030] = 2547, - [3031] = 2519, - [3032] = 2520, - [3033] = 2534, - [3034] = 2539, - [3035] = 2518, - [3036] = 2539, - [3037] = 2538, - [3038] = 2525, - [3039] = 2526, - [3040] = 2528, - [3041] = 2529, - [3042] = 2530, - [3043] = 2537, - [3044] = 2536, - [3045] = 2534, - [3046] = 2535, - [3047] = 2536, - [3048] = 2537, - [3049] = 2538, - [3050] = 2540, - [3051] = 2539, - [3052] = 2540, - [3053] = 2541, - [3054] = 2521, - [3055] = 2522, - [3056] = 2541, - [3057] = 2524, - [3058] = 2517, - [3059] = 2546, - [3060] = 2547, - [3061] = 2519, - [3062] = 2520, - [3063] = 2518, - [3064] = 2530, - [3065] = 2529, - [3066] = 2528, - [3067] = 2535, - [3068] = 2525, - [3069] = 2526, - [3070] = 2528, - [3071] = 2529, - [3072] = 2530, - [3073] = 2534, - [3074] = 2530, - [3075] = 2526, - [3076] = 2525, - [3077] = 2529, - [3078] = 2534, - [3079] = 2518, - [3080] = 2534, - [3081] = 2535, - [3082] = 2536, - [3083] = 2537, - [3084] = 2538, - [3085] = 2539, - [3086] = 2540, - [3087] = 2541, - [3088] = 2521, - [3089] = 2522, - [3090] = 2524, - [3091] = 2517, - [3092] = 2546, - [3093] = 2547, - [3094] = 2519, - [3095] = 2520, - [3096] = 2518, - [3097] = 2535, - [3098] = 2525, - [3099] = 2526, - [3100] = 2528, - [3101] = 2529, - [3102] = 2520, - [3103] = 2530, - [3104] = 3104, - [3105] = 2528, - [3106] = 2519, - [3107] = 2534, - [3108] = 2535, - [3109] = 2536, - [3110] = 2547, - [3111] = 2537, - [3112] = 2546, - [3113] = 2538, - [3114] = 2539, - [3115] = 2540, - [3116] = 2541, - [3117] = 2521, - [3118] = 2522, - [3119] = 2526, - [3120] = 2525, - [3121] = 2524, - [3122] = 2517, - [3123] = 2546, - [3124] = 2547, - [3125] = 2524, - [3126] = 2519, - [3127] = 2520, - [3128] = 2518, - [3129] = 2524, - [3130] = 2518, - [3131] = 2520, - [3132] = 2525, - [3133] = 2526, - [3134] = 2528, - [3135] = 2529, - [3136] = 2530, - [3137] = 2522, - [3138] = 2952, - [3139] = 3139, - [3140] = 2534, - [3141] = 2535, - [3142] = 2519, - [3143] = 2536, - [3144] = 2537, - [3145] = 2538, - [3146] = 2539, - [3147] = 2540, - [3148] = 2521, - [3149] = 2541, - [3150] = 2521, - [3151] = 2522, - [3152] = 2524, - [3153] = 2517, - [3154] = 2546, - [3155] = 2547, - [3156] = 2541, - [3157] = 2540, - [3158] = 2539, - [3159] = 2538, - [3160] = 2537, - [3161] = 2536, - [3162] = 3162, - [3163] = 3163, - [3164] = 3163, - [3165] = 3165, - [3166] = 3163, - [3167] = 3162, - [3168] = 3162, - [3169] = 3165, - [3170] = 3170, - [3171] = 3165, - [3172] = 3162, - [3173] = 3173, - [3174] = 3163, - [3175] = 3175, - [3176] = 3163, - [3177] = 3173, - [3178] = 3165, - [3179] = 3162, - [3180] = 3165, - [3181] = 3163, - [3182] = 3163, - [3183] = 3162, - [3184] = 3163, - [3185] = 3165, - [3186] = 3162, - [3187] = 3175, - [3188] = 3188, - [3189] = 3163, - [3190] = 3165, - [3191] = 3162, - [3192] = 3165, - [3193] = 3165, - [3194] = 3165, - [3195] = 3163, - [3196] = 3162, - [3197] = 3162, - [3198] = 3163, - [3199] = 3165, - [3200] = 3162, - [3201] = 3162, - [3202] = 3163, - [3203] = 3170, - [3204] = 3165, - [3205] = 3165, - [3206] = 3163, - [3207] = 3188, - [3208] = 3165, - [3209] = 3162, - [3210] = 3162, - [3211] = 3165, - [3212] = 3163, - [3213] = 3163, - [3214] = 3163, - [3215] = 3165, - [3216] = 3162, - [3217] = 3162, - [3218] = 3163, - [3219] = 3165, - [3220] = 3165, - [3221] = 3163, - [3222] = 3163, - [3223] = 3162, - [3224] = 3163, - [3225] = 3162, - [3226] = 3165, - [3227] = 3165, - [3228] = 3163, - [3229] = 3163, - [3230] = 3165, - [3231] = 3162, - [3232] = 3162, - [3233] = 3163, - [3234] = 3165, - [3235] = 3162, - [3236] = 3162, - [3237] = 3165, - [3238] = 3163, - [3239] = 3163, - [3240] = 3165, - [3241] = 3162, - [3242] = 3162, - [3243] = 3163, - [3244] = 3165, - [3245] = 3162, - [3246] = 3165, - [3247] = 3162, - [3248] = 3163, - [3249] = 3163, - [3250] = 3165, - [3251] = 3162, - [3252] = 3162, - [3253] = 3165, - [3254] = 3162, - [3255] = 3163, - [3256] = 3165, - [3257] = 3257, - [3258] = 3258, - [3259] = 3259, - [3260] = 3260, - [3261] = 3261, - [3262] = 3262, - [3263] = 3263, - [3264] = 3264, - [3265] = 3265, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 555, + [556] = 556, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 560, + [561] = 561, + [562] = 562, + [563] = 563, + [564] = 564, + [565] = 553, + [566] = 488, + [567] = 567, + [568] = 568, + [569] = 569, + [570] = 534, + [571] = 571, + [572] = 572, + [573] = 573, + [574] = 574, + [575] = 575, + [576] = 576, + [577] = 577, + [578] = 578, + [579] = 564, + [580] = 563, + [581] = 562, + [582] = 560, + [583] = 559, + [584] = 558, + [585] = 557, + [586] = 556, + [587] = 555, + [588] = 588, + [589] = 554, + [590] = 590, + [591] = 553, + [592] = 552, + [593] = 551, + [594] = 550, + [595] = 549, + [596] = 548, + [597] = 547, + [598] = 546, + [599] = 545, + [600] = 544, + [601] = 543, + [602] = 541, + [603] = 540, + [604] = 539, + [605] = 538, + [606] = 537, + [607] = 533, + [608] = 608, + [609] = 609, + [610] = 610, + [611] = 611, + [612] = 540, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 621, + [622] = 590, + [623] = 588, + [624] = 624, + [625] = 625, + [626] = 626, + [627] = 542, + [628] = 561, + [629] = 536, + [630] = 567, + [631] = 568, + [632] = 569, + [633] = 534, + [634] = 571, + [635] = 572, + [636] = 573, + [637] = 574, + [638] = 488, + [639] = 639, + [640] = 575, + [641] = 576, + [642] = 577, + [643] = 578, + [644] = 564, + [645] = 563, + [646] = 562, + [647] = 560, + [648] = 559, + [649] = 558, + [650] = 557, + [651] = 556, + [652] = 555, + [653] = 554, + [654] = 590, + [655] = 552, + [656] = 551, + [657] = 657, + [658] = 658, + [659] = 550, + [660] = 588, + [661] = 549, + [662] = 590, + [663] = 488, + [664] = 618, + [665] = 657, + [666] = 658, + [667] = 488, + [668] = 609, + [669] = 548, + [670] = 657, + [671] = 658, + [672] = 547, + [673] = 488, + [674] = 610, + [675] = 488, + [676] = 611, + [677] = 488, + [678] = 613, + [679] = 639, + [680] = 546, + [681] = 488, + [682] = 614, + [683] = 639, + [684] = 540, + [685] = 488, + [686] = 545, + [687] = 550, + [688] = 639, + [689] = 488, + [690] = 615, + [691] = 639, + [692] = 488, + [693] = 616, + [694] = 564, + [695] = 563, + [696] = 562, + [697] = 560, + [698] = 559, + [699] = 558, + [700] = 557, + [701] = 556, + [702] = 555, + [703] = 554, + [704] = 553, + [705] = 552, + [706] = 551, + [707] = 550, + [708] = 549, + [709] = 548, + [710] = 617, + [711] = 488, + [712] = 639, + [713] = 547, + [714] = 546, + [715] = 545, + [716] = 544, + [717] = 543, + [718] = 541, + [719] = 539, + [720] = 538, + [721] = 537, + [722] = 533, + [723] = 608, + [724] = 609, + [725] = 610, + [726] = 611, + [727] = 613, + [728] = 614, + [729] = 614, + [730] = 615, + [731] = 616, + [732] = 543, + [733] = 588, + [734] = 541, + [735] = 590, + [736] = 617, + [737] = 618, + [738] = 619, + [739] = 658, + [740] = 620, + [741] = 621, + [742] = 540, + [743] = 624, + [744] = 625, + [745] = 539, + [746] = 626, + [747] = 542, + [748] = 561, + [749] = 536, + [750] = 567, + [751] = 568, + [752] = 569, + [753] = 538, + [754] = 534, + [755] = 571, + [756] = 572, + [757] = 540, + [758] = 573, + [759] = 537, + [760] = 574, + [761] = 575, + [762] = 576, + [763] = 577, + [764] = 639, + [765] = 533, + [766] = 608, + [767] = 578, + [768] = 564, + [769] = 563, + [770] = 562, + [771] = 560, + [772] = 559, + [773] = 558, + [774] = 557, + [775] = 556, + [776] = 555, + [777] = 554, + [778] = 657, + [779] = 553, + [780] = 552, + [781] = 551, + [782] = 550, + [783] = 619, + [784] = 488, + [785] = 639, + [786] = 549, + [787] = 548, + [788] = 547, + [789] = 546, + [790] = 545, + [791] = 544, + [792] = 543, + [793] = 541, + [794] = 539, + [795] = 538, + [796] = 537, + [797] = 533, + [798] = 608, + [799] = 609, + [800] = 610, + [801] = 609, + [802] = 611, + [803] = 613, + [804] = 614, + [805] = 610, + [806] = 588, + [807] = 611, + [808] = 590, + [809] = 615, + [810] = 616, + [811] = 617, + [812] = 658, + [813] = 618, + [814] = 619, + [815] = 613, + [816] = 620, + [817] = 621, + [818] = 626, + [819] = 624, + [820] = 625, + [821] = 626, + [822] = 542, + [823] = 561, + [824] = 536, + [825] = 567, + [826] = 615, + [827] = 568, + [828] = 569, + [829] = 534, + [830] = 540, + [831] = 571, + [832] = 616, + [833] = 572, + [834] = 573, + [835] = 574, + [836] = 575, + [837] = 576, + [838] = 577, + [839] = 639, + [840] = 617, + [841] = 618, + [842] = 578, + [843] = 564, + [844] = 563, + [845] = 562, + [846] = 560, + [847] = 559, + [848] = 558, + [849] = 557, + [850] = 556, + [851] = 657, + [852] = 555, + [853] = 554, + [854] = 553, + [855] = 552, + [856] = 621, + [857] = 488, + [858] = 551, + [859] = 550, + [860] = 549, + [861] = 548, + [862] = 547, + [863] = 546, + [864] = 545, + [865] = 544, + [866] = 543, + [867] = 541, + [868] = 539, + [869] = 538, + [870] = 537, + [871] = 533, + [872] = 608, + [873] = 609, + [874] = 619, + [875] = 610, + [876] = 611, + [877] = 613, + [878] = 588, + [879] = 620, + [880] = 590, + [881] = 614, + [882] = 615, + [883] = 616, + [884] = 658, + [885] = 617, + [886] = 618, + [887] = 621, + [888] = 619, + [889] = 620, + [890] = 590, + [891] = 621, + [892] = 624, + [893] = 625, + [894] = 614, + [895] = 542, + [896] = 561, + [897] = 536, + [898] = 567, + [899] = 568, + [900] = 569, + [901] = 540, + [902] = 534, + [903] = 588, + [904] = 571, + [905] = 572, + [906] = 573, + [907] = 574, + [908] = 575, + [909] = 576, + [910] = 577, + [911] = 639, + [912] = 624, + [913] = 625, + [914] = 578, + [915] = 564, + [916] = 563, + [917] = 562, + [918] = 560, + [919] = 559, + [920] = 558, + [921] = 557, + [922] = 657, + [923] = 556, + [924] = 555, + [925] = 554, + [926] = 553, + [927] = 620, + [928] = 488, + [929] = 552, + [930] = 551, + [931] = 550, + [932] = 549, + [933] = 548, + [934] = 547, + [935] = 546, + [936] = 545, + [937] = 544, + [938] = 543, + [939] = 541, + [940] = 539, + [941] = 538, + [942] = 537, + [943] = 626, + [944] = 608, + [945] = 578, + [946] = 609, + [947] = 610, + [948] = 611, + [949] = 588, + [950] = 542, + [951] = 544, + [952] = 608, + [953] = 626, + [954] = 615, + [955] = 658, + [956] = 616, + [957] = 617, + [958] = 561, + [959] = 618, + [960] = 619, + [961] = 536, + [962] = 620, + [963] = 621, + [964] = 624, + [965] = 625, + [966] = 626, + [967] = 542, + [968] = 561, + [969] = 536, + [970] = 567, + [971] = 568, + [972] = 540, + [973] = 569, + [974] = 567, + [975] = 534, + [976] = 571, + [977] = 572, + [978] = 573, + [979] = 574, + [980] = 575, + [981] = 576, + [982] = 577, + [983] = 639, + [984] = 568, + [985] = 569, + [986] = 578, + [987] = 564, + [988] = 563, + [989] = 562, + [990] = 657, + [991] = 560, + [992] = 559, + [993] = 657, + [994] = 558, + [995] = 557, + [996] = 556, + [997] = 555, + [998] = 590, + [999] = 488, + [1000] = 554, + [1001] = 553, + [1002] = 552, + [1003] = 551, + [1004] = 550, + [1005] = 549, + [1006] = 548, + [1007] = 547, + [1008] = 546, + [1009] = 545, + [1010] = 544, + [1011] = 543, + [1012] = 541, + [1013] = 539, + [1014] = 538, + [1015] = 537, + [1016] = 534, + [1017] = 533, + [1018] = 608, + [1019] = 609, + [1020] = 588, + [1021] = 571, + [1022] = 610, + [1023] = 611, + [1024] = 613, + [1025] = 549, + [1026] = 614, + [1027] = 615, + [1028] = 572, + [1029] = 616, + [1030] = 617, + [1031] = 573, + [1032] = 618, + [1033] = 658, + [1034] = 619, + [1035] = 620, + [1036] = 621, + [1037] = 624, + [1038] = 625, + [1039] = 626, + [1040] = 542, + [1041] = 561, + [1042] = 540, + [1043] = 536, + [1044] = 567, + [1045] = 568, + [1046] = 569, + [1047] = 613, + [1048] = 571, + [1049] = 572, + [1050] = 573, + [1051] = 574, + [1052] = 575, + [1053] = 576, + [1054] = 577, + [1055] = 639, + [1056] = 574, + [1057] = 575, + [1058] = 578, + [1059] = 564, + [1060] = 563, + [1061] = 562, + [1062] = 548, + [1063] = 657, + [1064] = 560, + [1065] = 559, + [1066] = 578, + [1067] = 576, + [1068] = 577, + [1069] = 558, + [1070] = 577, + [1071] = 576, + [1072] = 575, + [1073] = 574, + [1074] = 573, + [1075] = 572, + [1076] = 571, + [1077] = 534, + [1078] = 569, + [1079] = 568, + [1080] = 567, + [1081] = 536, + [1082] = 561, + [1083] = 542, + [1084] = 626, + [1085] = 588, + [1086] = 625, + [1087] = 557, + [1088] = 624, + [1089] = 621, + [1090] = 620, + [1091] = 619, + [1092] = 658, + [1093] = 618, + [1094] = 617, + [1095] = 540, + [1096] = 616, + [1097] = 615, + [1098] = 590, + [1099] = 614, + [1100] = 613, + [1101] = 611, + [1102] = 610, + [1103] = 609, + [1104] = 608, + [1105] = 533, + [1106] = 537, + [1107] = 538, + [1108] = 539, + [1109] = 541, + [1110] = 543, + [1111] = 544, + [1112] = 545, + [1113] = 546, + [1114] = 547, + [1115] = 548, + [1116] = 549, + [1117] = 550, + [1118] = 551, + [1119] = 552, + [1120] = 553, + [1121] = 554, + [1122] = 555, + [1123] = 556, + [1124] = 557, + [1125] = 558, + [1126] = 559, + [1127] = 560, + [1128] = 657, + [1129] = 562, + [1130] = 563, + [1131] = 564, + [1132] = 578, + [1133] = 625, + [1134] = 488, + [1135] = 556, + [1136] = 577, + [1137] = 576, + [1138] = 575, + [1139] = 574, + [1140] = 573, + [1141] = 572, + [1142] = 571, + [1143] = 534, + [1144] = 569, + [1145] = 568, + [1146] = 567, + [1147] = 536, + [1148] = 561, + [1149] = 542, + [1150] = 626, + [1151] = 588, + [1152] = 625, + [1153] = 555, + [1154] = 624, + [1155] = 621, + [1156] = 620, + [1157] = 619, + [1158] = 658, + [1159] = 618, + [1160] = 617, + [1161] = 540, + [1162] = 616, + [1163] = 615, + [1164] = 590, + [1165] = 614, + [1166] = 613, + [1167] = 611, + [1168] = 610, + [1169] = 609, + [1170] = 608, + [1171] = 533, + [1172] = 537, + [1173] = 538, + [1174] = 539, + [1175] = 541, + [1176] = 543, + [1177] = 544, + [1178] = 545, + [1179] = 546, + [1180] = 547, + [1181] = 548, + [1182] = 549, + [1183] = 550, + [1184] = 551, + [1185] = 552, + [1186] = 553, + [1187] = 554, + [1188] = 555, + [1189] = 556, + [1190] = 557, + [1191] = 558, + [1192] = 559, + [1193] = 560, + [1194] = 657, + [1195] = 562, + [1196] = 563, + [1197] = 564, + [1198] = 578, + [1199] = 588, + [1200] = 488, + [1201] = 554, + [1202] = 577, + [1203] = 576, + [1204] = 575, + [1205] = 574, + [1206] = 573, + [1207] = 572, + [1208] = 571, + [1209] = 534, + [1210] = 569, + [1211] = 568, + [1212] = 567, + [1213] = 536, + [1214] = 561, + [1215] = 542, + [1216] = 626, + [1217] = 625, + [1218] = 553, + [1219] = 624, + [1220] = 621, + [1221] = 620, + [1222] = 619, + [1223] = 658, + [1224] = 618, + [1225] = 617, + [1226] = 616, + [1227] = 615, + [1228] = 624, + [1229] = 614, + [1230] = 613, + [1231] = 611, + [1232] = 610, + [1233] = 609, + [1234] = 608, + [1235] = 533, + [1236] = 537, + [1237] = 538, + [1238] = 539, + [1239] = 541, + [1240] = 543, + [1241] = 544, + [1242] = 545, + [1243] = 546, + [1244] = 547, + [1245] = 548, + [1246] = 549, + [1247] = 550, + [1248] = 551, + [1249] = 552, + [1250] = 553, + [1251] = 554, + [1252] = 555, + [1253] = 556, + [1254] = 557, + [1255] = 558, + [1256] = 559, + [1257] = 560, + [1258] = 657, + [1259] = 562, + [1260] = 563, + [1261] = 564, + [1262] = 578, + [1263] = 540, + [1264] = 1264, + [1265] = 552, + [1266] = 577, + [1267] = 576, + [1268] = 575, + [1269] = 574, + [1270] = 573, + [1271] = 572, + [1272] = 571, + [1273] = 534, + [1274] = 569, + [1275] = 568, + [1276] = 567, + [1277] = 536, + [1278] = 561, + [1279] = 542, + [1280] = 626, + [1281] = 625, + [1282] = 551, + [1283] = 624, + [1284] = 621, + [1285] = 620, + [1286] = 619, + [1287] = 658, + [1288] = 618, + [1289] = 617, + [1290] = 616, + [1291] = 615, + [1292] = 590, + [1293] = 614, + [1294] = 613, + [1295] = 611, + [1296] = 610, + [1297] = 609, + [1298] = 608, + [1299] = 533, + [1300] = 537, + [1301] = 538, + [1302] = 539, + [1303] = 541, + [1304] = 543, + [1305] = 544, + [1306] = 545, + [1307] = 546, + [1308] = 547, + [1309] = 548, + [1310] = 549, + [1311] = 550, + [1312] = 551, + [1313] = 552, + [1314] = 553, + [1315] = 554, + [1316] = 555, + [1317] = 556, + [1318] = 557, + [1319] = 558, + [1320] = 559, + [1321] = 560, + [1322] = 657, + [1323] = 562, + [1324] = 563, + [1325] = 564, + [1326] = 578, + [1327] = 588, + [1328] = 488, + [1329] = 639, + [1330] = 577, + [1331] = 576, + [1332] = 575, + [1333] = 574, + [1334] = 573, + [1335] = 572, + [1336] = 571, + [1337] = 534, + [1338] = 569, + [1339] = 568, + [1340] = 567, + [1341] = 536, + [1342] = 561, + [1343] = 542, + [1344] = 626, + [1345] = 625, + [1346] = 624, + [1347] = 621, + [1348] = 620, + [1349] = 619, + [1350] = 658, + [1351] = 618, + [1352] = 617, + [1353] = 616, + [1354] = 615, + [1355] = 614, + [1356] = 613, + [1357] = 611, + [1358] = 610, + [1359] = 609, + [1360] = 608, + [1361] = 533, + [1362] = 537, + [1363] = 538, + [1364] = 539, + [1365] = 541, + [1366] = 543, + [1367] = 544, + [1368] = 545, + [1369] = 546, + [1370] = 547, + [1371] = 657, + [1372] = 658, + [1373] = 571, + [1374] = 557, + [1375] = 639, + [1376] = 639, + [1377] = 1377, + [1378] = 618, + [1379] = 1377, + [1380] = 639, + [1381] = 1377, + [1382] = 639, + [1383] = 564, + [1384] = 563, + [1385] = 562, + [1386] = 560, + [1387] = 559, + [1388] = 558, + [1389] = 557, + [1390] = 556, + [1391] = 555, + [1392] = 554, + [1393] = 553, + [1394] = 552, + [1395] = 551, + [1396] = 550, + [1397] = 549, + [1398] = 548, + [1399] = 547, + [1400] = 546, + [1401] = 545, + [1402] = 544, + [1403] = 543, + [1404] = 541, + [1405] = 539, + [1406] = 538, + [1407] = 537, + [1408] = 533, + [1409] = 608, + [1410] = 609, + [1411] = 610, + [1412] = 611, + [1413] = 613, + [1414] = 614, + [1415] = 615, + [1416] = 616, + [1417] = 617, + [1418] = 621, + [1419] = 619, + [1420] = 620, + [1421] = 621, + [1422] = 624, + [1423] = 1377, + [1424] = 625, + [1425] = 626, + [1426] = 542, + [1427] = 561, + [1428] = 536, + [1429] = 567, + [1430] = 568, + [1431] = 569, + [1432] = 534, + [1433] = 571, + [1434] = 572, + [1435] = 573, + [1436] = 574, + [1437] = 575, + [1438] = 576, + [1439] = 577, + [1440] = 639, + [1441] = 578, + [1442] = 564, + [1443] = 563, + [1444] = 562, + [1445] = 560, + [1446] = 559, + [1447] = 558, + [1448] = 557, + [1449] = 556, + [1450] = 555, + [1451] = 554, + [1452] = 553, + [1453] = 552, + [1454] = 551, + [1455] = 550, + [1456] = 549, + [1457] = 548, + [1458] = 547, + [1459] = 546, + [1460] = 545, + [1461] = 544, + [1462] = 543, + [1463] = 541, + [1464] = 539, + [1465] = 538, + [1466] = 537, + [1467] = 533, + [1468] = 608, + [1469] = 609, + [1470] = 610, + [1471] = 611, + [1472] = 613, + [1473] = 614, + [1474] = 557, + [1475] = 615, + [1476] = 616, + [1477] = 617, + [1478] = 618, + [1479] = 619, + [1480] = 620, + [1481] = 537, + [1482] = 624, + [1483] = 1377, + [1484] = 625, + [1485] = 626, + [1486] = 542, + [1487] = 561, + [1488] = 536, + [1489] = 567, + [1490] = 568, + [1491] = 569, + [1492] = 534, + [1493] = 571, + [1494] = 572, + [1495] = 573, + [1496] = 574, + [1497] = 575, + [1498] = 576, + [1499] = 577, + [1500] = 639, + [1501] = 578, + [1502] = 564, + [1503] = 563, + [1504] = 562, + [1505] = 560, + [1506] = 559, + [1507] = 558, + [1508] = 577, + [1509] = 557, + [1510] = 556, + [1511] = 555, + [1512] = 554, + [1513] = 553, + [1514] = 552, + [1515] = 551, + [1516] = 550, + [1517] = 549, + [1518] = 548, + [1519] = 547, + [1520] = 546, + [1521] = 545, + [1522] = 544, + [1523] = 543, + [1524] = 541, + [1525] = 539, + [1526] = 538, + [1527] = 561, + [1528] = 533, + [1529] = 608, + [1530] = 609, + [1531] = 610, + [1532] = 611, + [1533] = 613, + [1534] = 614, + [1535] = 615, + [1536] = 658, + [1537] = 616, + [1538] = 617, + [1539] = 618, + [1540] = 619, + [1541] = 620, + [1542] = 621, + [1543] = 624, + [1544] = 1377, + [1545] = 625, + [1546] = 626, + [1547] = 542, + [1548] = 561, + [1549] = 536, + [1550] = 567, + [1551] = 568, + [1552] = 569, + [1553] = 534, + [1554] = 571, + [1555] = 572, + [1556] = 573, + [1557] = 574, + [1558] = 575, + [1559] = 576, + [1560] = 577, + [1561] = 639, + [1562] = 578, + [1563] = 564, + [1564] = 563, + [1565] = 562, + [1566] = 560, + [1567] = 559, + [1568] = 558, + [1569] = 557, + [1570] = 657, + [1571] = 556, + [1572] = 555, + [1573] = 554, + [1574] = 553, + [1575] = 552, + [1576] = 551, + [1577] = 550, + [1578] = 549, + [1579] = 548, + [1580] = 547, + [1581] = 546, + [1582] = 545, + [1583] = 544, + [1584] = 543, + [1585] = 541, + [1586] = 539, + [1587] = 538, + [1588] = 537, + [1589] = 533, + [1590] = 608, + [1591] = 609, + [1592] = 610, + [1593] = 611, + [1594] = 613, + [1595] = 614, + [1596] = 615, + [1597] = 616, + [1598] = 658, + [1599] = 617, + [1600] = 618, + [1601] = 619, + [1602] = 620, + [1603] = 621, + [1604] = 624, + [1605] = 1377, + [1606] = 625, + [1607] = 626, + [1608] = 542, + [1609] = 553, + [1610] = 536, + [1611] = 567, + [1612] = 568, + [1613] = 569, + [1614] = 534, + [1615] = 571, + [1616] = 572, + [1617] = 573, + [1618] = 574, + [1619] = 575, + [1620] = 576, + [1621] = 577, + [1622] = 578, + [1623] = 564, + [1624] = 563, + [1625] = 562, + [1626] = 560, + [1627] = 559, + [1628] = 558, + [1629] = 557, + [1630] = 556, + [1631] = 555, + [1632] = 657, + [1633] = 554, + [1634] = 547, + [1635] = 552, + [1636] = 551, + [1637] = 550, + [1638] = 549, + [1639] = 548, + [1640] = 547, + [1641] = 546, + [1642] = 545, + [1643] = 544, + [1644] = 543, + [1645] = 541, + [1646] = 539, + [1647] = 538, + [1648] = 537, + [1649] = 533, + [1650] = 608, + [1651] = 609, + [1652] = 610, + [1653] = 611, + [1654] = 613, + [1655] = 614, + [1656] = 615, + [1657] = 616, + [1658] = 617, + [1659] = 618, + [1660] = 658, + [1661] = 619, + [1662] = 620, + [1663] = 621, + [1664] = 624, + [1665] = 1377, + [1666] = 625, + [1667] = 626, + [1668] = 542, + [1669] = 561, + [1670] = 536, + [1671] = 567, + [1672] = 568, + [1673] = 569, + [1674] = 534, + [1675] = 571, + [1676] = 572, + [1677] = 573, + [1678] = 574, + [1679] = 575, + [1680] = 576, + [1681] = 577, + [1682] = 578, + [1683] = 564, + [1684] = 563, + [1685] = 562, + [1686] = 657, + [1687] = 560, + [1688] = 559, + [1689] = 558, + [1690] = 557, + [1691] = 556, + [1692] = 555, + [1693] = 554, + [1694] = 657, + [1695] = 553, + [1696] = 552, + [1697] = 551, + [1698] = 578, + [1699] = 550, + [1700] = 549, + [1701] = 548, + [1702] = 577, + [1703] = 576, + [1704] = 575, + [1705] = 574, + [1706] = 573, + [1707] = 572, + [1708] = 571, + [1709] = 534, + [1710] = 569, + [1711] = 568, + [1712] = 567, + [1713] = 536, + [1714] = 561, + [1715] = 542, + [1716] = 626, + [1717] = 625, + [1718] = 624, + [1719] = 621, + [1720] = 620, + [1721] = 619, + [1722] = 658, + [1723] = 618, + [1724] = 617, + [1725] = 616, + [1726] = 615, + [1727] = 614, + [1728] = 613, + [1729] = 611, + [1730] = 610, + [1731] = 609, + [1732] = 608, + [1733] = 533, + [1734] = 537, + [1735] = 538, + [1736] = 539, + [1737] = 541, + [1738] = 543, + [1739] = 544, + [1740] = 545, + [1741] = 546, + [1742] = 547, + [1743] = 548, + [1744] = 549, + [1745] = 550, + [1746] = 551, + [1747] = 552, + [1748] = 553, + [1749] = 554, + [1750] = 555, + [1751] = 556, + [1752] = 557, + [1753] = 558, + [1754] = 559, + [1755] = 560, + [1756] = 657, + [1757] = 562, + [1758] = 563, + [1759] = 564, + [1760] = 578, + [1761] = 539, + [1762] = 546, + [1763] = 545, + [1764] = 577, + [1765] = 576, + [1766] = 575, + [1767] = 574, + [1768] = 573, + [1769] = 572, + [1770] = 571, + [1771] = 534, + [1772] = 569, + [1773] = 568, + [1774] = 567, + [1775] = 536, + [1776] = 561, + [1777] = 542, + [1778] = 626, + [1779] = 625, + [1780] = 624, + [1781] = 621, + [1782] = 620, + [1783] = 619, + [1784] = 658, + [1785] = 618, + [1786] = 617, + [1787] = 616, + [1788] = 615, + [1789] = 614, + [1790] = 613, + [1791] = 611, + [1792] = 610, + [1793] = 609, + [1794] = 608, + [1795] = 533, + [1796] = 537, + [1797] = 538, + [1798] = 539, + [1799] = 541, + [1800] = 543, + [1801] = 544, + [1802] = 545, + [1803] = 546, + [1804] = 547, + [1805] = 548, + [1806] = 549, + [1807] = 550, + [1808] = 551, + [1809] = 552, + [1810] = 553, + [1811] = 554, + [1812] = 555, + [1813] = 556, + [1814] = 557, + [1815] = 558, + [1816] = 559, + [1817] = 560, + [1818] = 657, + [1819] = 562, + [1820] = 563, + [1821] = 564, + [1822] = 578, + [1823] = 544, + [1824] = 543, + [1825] = 541, + [1826] = 577, + [1827] = 576, + [1828] = 575, + [1829] = 574, + [1830] = 573, + [1831] = 572, + [1832] = 571, + [1833] = 534, + [1834] = 569, + [1835] = 568, + [1836] = 567, + [1837] = 536, + [1838] = 561, + [1839] = 542, + [1840] = 626, + [1841] = 625, + [1842] = 624, + [1843] = 621, + [1844] = 620, + [1845] = 619, + [1846] = 658, + [1847] = 618, + [1848] = 617, + [1849] = 616, + [1850] = 615, + [1851] = 614, + [1852] = 613, + [1853] = 611, + [1854] = 610, + [1855] = 609, + [1856] = 608, + [1857] = 533, + [1858] = 537, + [1859] = 538, + [1860] = 539, + [1861] = 541, + [1862] = 543, + [1863] = 544, + [1864] = 545, + [1865] = 546, + [1866] = 547, + [1867] = 548, + [1868] = 549, + [1869] = 550, + [1870] = 551, + [1871] = 552, + [1872] = 553, + [1873] = 554, + [1874] = 555, + [1875] = 556, + [1876] = 557, + [1877] = 558, + [1878] = 559, + [1879] = 560, + [1880] = 657, + [1881] = 562, + [1882] = 563, + [1883] = 564, + [1884] = 578, + [1885] = 609, + [1886] = 538, + [1887] = 537, + [1888] = 577, + [1889] = 576, + [1890] = 575, + [1891] = 574, + [1892] = 573, + [1893] = 572, + [1894] = 578, + [1895] = 534, + [1896] = 569, + [1897] = 568, + [1898] = 567, + [1899] = 536, + [1900] = 561, + [1901] = 542, + [1902] = 626, + [1903] = 625, + [1904] = 624, + [1905] = 621, + [1906] = 620, + [1907] = 619, + [1908] = 658, + [1909] = 618, + [1910] = 617, + [1911] = 616, + [1912] = 615, + [1913] = 614, + [1914] = 613, + [1915] = 611, + [1916] = 610, + [1917] = 609, + [1918] = 608, + [1919] = 533, + [1920] = 537, + [1921] = 538, + [1922] = 539, + [1923] = 541, + [1924] = 543, + [1925] = 544, + [1926] = 545, + [1927] = 546, + [1928] = 547, + [1929] = 548, + [1930] = 549, + [1931] = 550, + [1932] = 551, + [1933] = 552, + [1934] = 553, + [1935] = 554, + [1936] = 555, + [1937] = 556, + [1938] = 557, + [1939] = 558, + [1940] = 559, + [1941] = 560, + [1942] = 657, + [1943] = 562, + [1944] = 563, + [1945] = 564, + [1946] = 578, + [1947] = 533, + [1948] = 608, + [1949] = 639, + [1950] = 577, + [1951] = 576, + [1952] = 575, + [1953] = 574, + [1954] = 573, + [1955] = 572, + [1956] = 571, + [1957] = 534, + [1958] = 569, + [1959] = 568, + [1960] = 567, + [1961] = 536, + [1962] = 561, + [1963] = 542, + [1964] = 626, + [1965] = 625, + [1966] = 624, + [1967] = 621, + [1968] = 620, + [1969] = 619, + [1970] = 658, + [1971] = 618, + [1972] = 617, + [1973] = 616, + [1974] = 615, + [1975] = 614, + [1976] = 613, + [1977] = 611, + [1978] = 610, + [1979] = 609, + [1980] = 608, + [1981] = 533, + [1982] = 537, + [1983] = 538, + [1984] = 539, + [1985] = 541, + [1986] = 543, + [1987] = 544, + [1988] = 545, + [1989] = 546, + [1990] = 547, + [1991] = 548, + [1992] = 549, + [1993] = 550, + [1994] = 551, + [1995] = 552, + [1996] = 553, + [1997] = 554, + [1998] = 555, + [1999] = 556, + [2000] = 557, + [2001] = 558, + [2002] = 559, + [2003] = 560, + [2004] = 657, + [2005] = 562, + [2006] = 563, + [2007] = 564, + [2008] = 578, + [2009] = 615, + [2010] = 610, + [2011] = 639, + [2012] = 577, + [2013] = 576, + [2014] = 575, + [2015] = 574, + [2016] = 573, + [2017] = 572, + [2018] = 571, + [2019] = 534, + [2020] = 569, + [2021] = 568, + [2022] = 567, + [2023] = 536, + [2024] = 561, + [2025] = 542, + [2026] = 626, + [2027] = 625, + [2028] = 624, + [2029] = 621, + [2030] = 620, + [2031] = 619, + [2032] = 658, + [2033] = 618, + [2034] = 617, + [2035] = 616, + [2036] = 615, + [2037] = 614, + [2038] = 613, + [2039] = 611, + [2040] = 610, + [2041] = 609, + [2042] = 608, + [2043] = 533, + [2044] = 537, + [2045] = 538, + [2046] = 539, + [2047] = 541, + [2048] = 543, + [2049] = 544, + [2050] = 545, + [2051] = 546, + [2052] = 547, + [2053] = 548, + [2054] = 549, + [2055] = 550, + [2056] = 551, + [2057] = 552, + [2058] = 553, + [2059] = 554, + [2060] = 555, + [2061] = 556, + [2062] = 557, + [2063] = 558, + [2064] = 559, + [2065] = 560, + [2066] = 657, + [2067] = 562, + [2068] = 563, + [2069] = 564, + [2070] = 578, + [2071] = 611, + [2072] = 613, + [2073] = 639, + [2074] = 577, + [2075] = 576, + [2076] = 575, + [2077] = 574, + [2078] = 573, + [2079] = 572, + [2080] = 571, + [2081] = 534, + [2082] = 569, + [2083] = 568, + [2084] = 567, + [2085] = 536, + [2086] = 561, + [2087] = 542, + [2088] = 626, + [2089] = 625, + [2090] = 624, + [2091] = 621, + [2092] = 620, + [2093] = 619, + [2094] = 614, + [2095] = 618, + [2096] = 617, + [2097] = 616, + [2098] = 615, + [2099] = 614, + [2100] = 613, + [2101] = 611, + [2102] = 610, + [2103] = 609, + [2104] = 608, + [2105] = 533, + [2106] = 537, + [2107] = 538, + [2108] = 539, + [2109] = 541, + [2110] = 543, + [2111] = 544, + [2112] = 545, + [2113] = 546, + [2114] = 547, + [2115] = 548, + [2116] = 549, + [2117] = 550, + [2118] = 551, + [2119] = 552, + [2120] = 553, + [2121] = 554, + [2122] = 555, + [2123] = 556, + [2124] = 575, + [2125] = 558, + [2126] = 559, + [2127] = 560, + [2128] = 624, + [2129] = 562, + [2130] = 563, + [2131] = 564, + [2132] = 578, + [2133] = 616, + [2134] = 617, + [2135] = 639, + [2136] = 577, + [2137] = 576, + [2138] = 575, + [2139] = 574, + [2140] = 573, + [2141] = 572, + [2142] = 571, + [2143] = 534, + [2144] = 569, + [2145] = 568, + [2146] = 567, + [2147] = 536, + [2148] = 561, + [2149] = 542, + [2150] = 626, + [2151] = 625, + [2152] = 624, + [2153] = 621, + [2154] = 620, + [2155] = 619, + [2156] = 618, + [2157] = 618, + [2158] = 617, + [2159] = 616, + [2160] = 615, + [2161] = 614, + [2162] = 613, + [2163] = 611, + [2164] = 610, + [2165] = 609, + [2166] = 608, + [2167] = 533, + [2168] = 537, + [2169] = 538, + [2170] = 539, + [2171] = 541, + [2172] = 543, + [2173] = 544, + [2174] = 545, + [2175] = 546, + [2176] = 547, + [2177] = 548, + [2178] = 549, + [2179] = 550, + [2180] = 551, + [2181] = 552, + [2182] = 553, + [2183] = 554, + [2184] = 555, + [2185] = 556, + [2186] = 557, + [2187] = 558, + [2188] = 559, + [2189] = 560, + [2190] = 658, + [2191] = 562, + [2192] = 563, + [2193] = 564, + [2194] = 578, + [2195] = 619, + [2196] = 620, + [2197] = 639, + [2198] = 577, + [2199] = 576, + [2200] = 575, + [2201] = 574, + [2202] = 573, + [2203] = 572, + [2204] = 571, + [2205] = 534, + [2206] = 569, + [2207] = 568, + [2208] = 567, + [2209] = 536, + [2210] = 561, + [2211] = 542, + [2212] = 626, + [2213] = 625, + [2214] = 624, + [2215] = 621, + [2216] = 620, + [2217] = 619, + [2218] = 621, + [2219] = 618, + [2220] = 617, + [2221] = 616, + [2222] = 615, + [2223] = 614, + [2224] = 613, + [2225] = 611, + [2226] = 610, + [2227] = 609, + [2228] = 608, + [2229] = 533, + [2230] = 537, + [2231] = 538, + [2232] = 539, + [2233] = 541, + [2234] = 543, + [2235] = 544, + [2236] = 545, + [2237] = 546, + [2238] = 547, + [2239] = 548, + [2240] = 549, + [2241] = 550, + [2242] = 551, + [2243] = 552, + [2244] = 553, + [2245] = 554, + [2246] = 555, + [2247] = 556, + [2248] = 557, + [2249] = 558, + [2250] = 559, + [2251] = 560, + [2252] = 575, + [2253] = 562, + [2254] = 563, + [2255] = 564, + [2256] = 639, + [2257] = 658, + [2258] = 657, + [2259] = 639, + [2260] = 658, + [2261] = 657, + [2262] = 639, + [2263] = 639, + [2264] = 564, + [2265] = 574, + [2266] = 573, + [2267] = 572, + [2268] = 578, + [2269] = 1377, + [2270] = 625, + [2271] = 571, + [2272] = 563, + [2273] = 534, + [2274] = 569, + [2275] = 568, + [2276] = 567, + [2277] = 626, + [2278] = 542, + [2279] = 536, + [2280] = 561, + [2281] = 562, + [2282] = 657, + [2283] = 560, + [2284] = 559, + [2285] = 558, + [2286] = 542, + [2287] = 609, + [2288] = 556, + [2289] = 555, + [2290] = 561, + [2291] = 536, + [2292] = 567, + [2293] = 568, + [2294] = 554, + [2295] = 553, + [2296] = 626, + [2297] = 625, + [2298] = 1377, + [2299] = 624, + [2300] = 552, + [2301] = 551, + [2302] = 621, + [2303] = 620, + [2304] = 619, + [2305] = 550, + [2306] = 658, + [2307] = 618, + [2308] = 569, + [2309] = 617, + [2310] = 549, + [2311] = 534, + [2312] = 571, + [2313] = 548, + [2314] = 572, + [2315] = 547, + [2316] = 546, + [2317] = 545, + [2318] = 544, + [2319] = 616, + [2320] = 573, + [2321] = 574, + [2322] = 543, + [2323] = 541, + [2324] = 539, + [2325] = 538, + [2326] = 639, + [2327] = 537, + [2328] = 555, + [2329] = 576, + [2330] = 533, + [2331] = 615, + [2332] = 614, + [2333] = 2333, + [2334] = 577, + [2335] = 608, + [2336] = 568, + [2337] = 613, + [2338] = 576, + [2339] = 575, + [2340] = 574, + [2341] = 577, + [2342] = 576, + [2343] = 578, + [2344] = 564, + [2345] = 563, + [2346] = 562, + [2347] = 573, + [2348] = 610, + [2349] = 609, + [2350] = 608, + [2351] = 572, + [2352] = 571, + [2353] = 534, + [2354] = 569, + [2355] = 533, + [2356] = 610, + [2357] = 537, + [2358] = 538, + [2359] = 657, + [2360] = 539, + [2361] = 560, + [2362] = 559, + [2363] = 558, + [2364] = 611, + [2365] = 613, + [2366] = 614, + [2367] = 615, + [2368] = 616, + [2369] = 557, + [2370] = 556, + [2371] = 541, + [2372] = 617, + [2373] = 618, + [2374] = 658, + [2375] = 619, + [2376] = 568, + [2377] = 620, + [2378] = 554, + [2379] = 620, + [2380] = 543, + [2381] = 544, + [2382] = 621, + [2383] = 545, + [2384] = 567, + [2385] = 546, + [2386] = 547, + [2387] = 548, + [2388] = 549, + [2389] = 536, + [2390] = 553, + [2391] = 550, + [2392] = 561, + [2393] = 624, + [2394] = 552, + [2395] = 551, + [2396] = 550, + [2397] = 542, + [2398] = 626, + [2399] = 1377, + [2400] = 551, + [2401] = 552, + [2402] = 553, + [2403] = 625, + [2404] = 626, + [2405] = 542, + [2406] = 561, + [2407] = 536, + [2408] = 549, + [2409] = 567, + [2410] = 548, + [2411] = 547, + [2412] = 546, + [2413] = 554, + [2414] = 553, + [2415] = 569, + [2416] = 625, + [2417] = 1377, + [2418] = 545, + [2419] = 544, + [2420] = 534, + [2421] = 571, + [2422] = 555, + [2423] = 556, + [2424] = 624, + [2425] = 572, + [2426] = 543, + [2427] = 541, + [2428] = 557, + [2429] = 558, + [2430] = 559, + [2431] = 560, + [2432] = 657, + [2433] = 562, + [2434] = 573, + [2435] = 574, + [2436] = 575, + [2437] = 563, + [2438] = 564, + [2439] = 539, + [2440] = 576, + [2441] = 577, + [2442] = 621, + [2443] = 2333, + [2444] = 538, + [2445] = 537, + [2446] = 533, + [2447] = 578, + [2448] = 611, + [2449] = 564, + [2450] = 563, + [2451] = 658, + [2452] = 1377, + [2453] = 562, + [2454] = 1377, + [2455] = 658, + [2456] = 657, + [2457] = 608, + [2458] = 639, + [2459] = 609, + [2460] = 610, + [2461] = 611, + [2462] = 1377, + [2463] = 657, + [2464] = 560, + [2465] = 559, + [2466] = 657, + [2467] = 613, + [2468] = 614, + [2469] = 657, + [2470] = 578, + [2471] = 558, + [2472] = 557, + [2473] = 620, + [2474] = 639, + [2475] = 615, + [2476] = 616, + [2477] = 619, + [2478] = 556, + [2479] = 555, + [2480] = 554, + [2481] = 1377, + [2482] = 614, + [2483] = 577, + [2484] = 576, + [2485] = 552, + [2486] = 618, + [2487] = 551, + [2488] = 617, + [2489] = 617, + [2490] = 575, + [2491] = 574, + [2492] = 616, + [2493] = 615, + [2494] = 618, + [2495] = 658, + [2496] = 619, + [2497] = 550, + [2498] = 658, + [2499] = 613, + [2500] = 611, + [2501] = 610, + [2502] = 573, + [2503] = 572, + [2504] = 571, + [2505] = 534, + [2506] = 658, + [2507] = 549, + [2508] = 621, + [2509] = 624, + [2510] = 1377, + [2511] = 548, + [2512] = 569, + [2513] = 568, + [2514] = 567, + [2515] = 609, + [2516] = 625, + [2517] = 626, + [2518] = 547, + [2519] = 546, + [2520] = 545, + [2521] = 544, + [2522] = 608, + [2523] = 536, + [2524] = 542, + [2525] = 561, + [2526] = 543, + [2527] = 541, + [2528] = 533, + [2529] = 537, + [2530] = 538, + [2531] = 539, + [2532] = 2532, + [2533] = 2532, + [2534] = 2532, + [2535] = 2532, + [2536] = 2532, + [2537] = 2532, + [2538] = 2532, + [2539] = 2532, + [2540] = 2532, + [2541] = 2532, + [2542] = 2532, + [2543] = 2532, + [2544] = 2532, + [2545] = 2532, + [2546] = 2532, + [2547] = 2532, + [2548] = 2532, + [2549] = 2532, + [2550] = 2532, + [2551] = 2532, + [2552] = 2532, + [2553] = 2532, + [2554] = 2532, + [2555] = 2532, + [2556] = 2532, + [2557] = 2532, + [2558] = 2532, + [2559] = 2532, + [2560] = 2532, + [2561] = 2532, + [2562] = 2532, + [2563] = 2532, + [2564] = 2564, + [2565] = 2565, + [2566] = 2564, + [2567] = 2565, + [2568] = 2565, + [2569] = 2564, + [2570] = 2570, + [2571] = 2571, + [2572] = 2572, + [2573] = 2571, + [2574] = 2564, + [2575] = 2572, + [2576] = 2565, + [2577] = 2564, + [2578] = 2571, + [2579] = 2570, + [2580] = 2570, + [2581] = 2571, + [2582] = 2571, + [2583] = 2572, + [2584] = 2572, + [2585] = 2565, + [2586] = 2564, + [2587] = 2565, + [2588] = 2564, + [2589] = 2570, + [2590] = 2570, + [2591] = 2570, + [2592] = 2570, + [2593] = 2593, + [2594] = 2564, + [2595] = 2565, + [2596] = 2570, + [2597] = 2564, + [2598] = 2572, + [2599] = 2571, + [2600] = 2564, + [2601] = 2565, + [2602] = 2565, + [2603] = 2603, + [2604] = 2572, + [2605] = 2571, + [2606] = 2572, + [2607] = 2571, + [2608] = 2571, + [2609] = 2572, + [2610] = 2565, + [2611] = 2564, + [2612] = 2571, + [2613] = 2572, + [2614] = 2570, + [2615] = 2570, + [2616] = 2570, + [2617] = 2564, + [2618] = 2565, + [2619] = 2564, + [2620] = 2565, + [2621] = 2570, + [2622] = 2564, + [2623] = 2571, + [2624] = 2572, + [2625] = 2565, + [2626] = 2570, + [2627] = 2572, + [2628] = 2564, + [2629] = 2565, + [2630] = 2565, + [2631] = 2571, + [2632] = 2572, + [2633] = 2571, + [2634] = 2564, + [2635] = 2571, + [2636] = 2570, + [2637] = 2572, + [2638] = 2593, + [2639] = 2571, + [2640] = 2571, + [2641] = 2570, + [2642] = 2572, + [2643] = 2571, + [2644] = 2571, + [2645] = 2572, + [2646] = 2646, + [2647] = 2572, + [2648] = 2571, + [2649] = 2572, + [2650] = 2564, + [2651] = 2570, + [2652] = 2565, + [2653] = 2565, + [2654] = 2564, + [2655] = 2564, + [2656] = 2565, + [2657] = 2570, + [2658] = 2571, + [2659] = 2572, + [2660] = 2572, + [2661] = 2564, + [2662] = 2564, + [2663] = 2570, + [2664] = 2570, + [2665] = 2565, + [2666] = 2564, + [2667] = 2570, + [2668] = 2570, + [2669] = 2565, + [2670] = 2564, + [2671] = 2570, + [2672] = 2565, + [2673] = 2564, + [2674] = 2572, + [2675] = 2572, + [2676] = 2571, + [2677] = 2565, + [2678] = 2565, + [2679] = 2572, + [2680] = 2571, + [2681] = 2572, + [2682] = 2570, + [2683] = 2564, + [2684] = 2571, + [2685] = 2565, + [2686] = 2571, + [2687] = 2571, + [2688] = 2572, + [2689] = 2570, + [2690] = 2565, + [2691] = 2570, + [2692] = 2565, + [2693] = 2572, + [2694] = 2564, + [2695] = 2564, + [2696] = 2571, + [2697] = 2570, + [2698] = 2565, + [2699] = 2570, + [2700] = 2570, + [2701] = 2571, + [2702] = 2572, + [2703] = 2570, + [2704] = 2564, + [2705] = 2565, + [2706] = 2564, + [2707] = 2571, + [2708] = 2572, + [2709] = 2570, + [2710] = 2572, + [2711] = 2572, + [2712] = 2564, + [2713] = 2565, + [2714] = 2565, + [2715] = 2564, + [2716] = 2565, + [2717] = 2570, + [2718] = 2571, + [2719] = 2565, + [2720] = 2571, + [2721] = 2572, + [2722] = 2571, + [2723] = 2593, + [2724] = 2564, + [2725] = 2725, + [2726] = 2572, + [2727] = 2572, + [2728] = 2570, + [2729] = 2571, + [2730] = 2730, + [2731] = 2731, + [2732] = 2731, + [2733] = 2733, + [2734] = 2731, + [2735] = 2735, + [2736] = 2730, + [2737] = 2731, + [2738] = 2733, + [2739] = 2730, + [2740] = 2735, + [2741] = 2735, + [2742] = 2730, + [2743] = 2735, + [2744] = 2735, + [2745] = 2731, + [2746] = 2733, + [2747] = 2735, + [2748] = 2731, + [2749] = 2733, + [2750] = 2733, + [2751] = 2735, + [2752] = 2731, + [2753] = 2730, + [2754] = 2730, + [2755] = 2733, + [2756] = 2730, + [2757] = 2735, + [2758] = 2730, + [2759] = 2733, + [2760] = 2730, + [2761] = 2731, + [2762] = 2735, + [2763] = 2733, + [2764] = 2731, + [2765] = 2735, + [2766] = 2730, + [2767] = 2733, + [2768] = 2733, + [2769] = 2731, + [2770] = 2735, + [2771] = 2735, + [2772] = 2731, + [2773] = 2735, + [2774] = 2735, + [2775] = 2733, + [2776] = 2735, + [2777] = 2730, + [2778] = 2733, + [2779] = 2735, + [2780] = 2731, + [2781] = 2733, + [2782] = 2731, + [2783] = 2733, + [2784] = 2733, + [2785] = 2730, + [2786] = 2730, + [2787] = 2730, + [2788] = 2731, + [2789] = 2730, + [2790] = 2733, + [2791] = 2730, + [2792] = 2730, + [2793] = 2793, + [2794] = 2794, + [2795] = 2731, + [2796] = 2733, + [2797] = 2733, + [2798] = 2731, + [2799] = 2733, + [2800] = 2730, + [2801] = 2731, + [2802] = 2733, + [2803] = 2731, + [2804] = 2731, + [2805] = 2735, + [2806] = 2730, + [2807] = 2735, + [2808] = 2793, + [2809] = 2809, + [2810] = 2730, + [2811] = 2735, + [2812] = 2812, + [2813] = 2735, + [2814] = 2735, + [2815] = 2733, + [2816] = 2731, + [2817] = 2735, + [2818] = 2730, + [2819] = 2730, + [2820] = 2733, + [2821] = 2733, + [2822] = 2733, + [2823] = 2731, + [2824] = 2733, + [2825] = 2731, + [2826] = 2731, + [2827] = 2733, + [2828] = 2731, + [2829] = 2794, + [2830] = 2731, + [2831] = 2730, + [2832] = 2730, + [2833] = 2733, + [2834] = 2735, + [2835] = 2730, + [2836] = 2735, + [2837] = 2730, + [2838] = 2812, + [2839] = 2733, + [2840] = 2730, + [2841] = 2735, + [2842] = 2735, + [2843] = 2735, + [2844] = 2731, + [2845] = 2730, + [2846] = 2731, + [2847] = 2733, + [2848] = 2733, + [2849] = 2730, + [2850] = 2731, + [2851] = 2731, + [2852] = 2733, + [2853] = 2735, + [2854] = 2731, + [2855] = 2735, + [2856] = 2733, + [2857] = 2730, + [2858] = 2730, + [2859] = 2735, + [2860] = 2735, + [2861] = 2731, + [2862] = 2733, + [2863] = 2735, + [2864] = 2733, + [2865] = 2731, + [2866] = 2730, + [2867] = 2735, + [2868] = 2735, + [2869] = 2869, + [2870] = 639, + [2871] = 639, + [2872] = 639, + [2873] = 639, + [2874] = 2869, + [2875] = 2875, + [2876] = 2869, + [2877] = 2877, + [2878] = 2877, + [2879] = 2879, + [2880] = 2880, + [2881] = 2877, + [2882] = 2882, + [2883] = 2883, + [2884] = 2884, + [2885] = 657, + [2886] = 2886, + [2887] = 2887, + [2888] = 2888, + [2889] = 2889, + [2890] = 2890, + [2891] = 2891, + [2892] = 2892, + [2893] = 2893, + [2894] = 2894, + [2895] = 2895, + [2896] = 2896, + [2897] = 2897, + [2898] = 2898, + [2899] = 2899, + [2900] = 2900, + [2901] = 2895, + [2902] = 658, + [2903] = 2903, + [2904] = 2904, + [2905] = 2905, + [2906] = 2877, + [2907] = 2882, + [2908] = 2883, + [2909] = 2884, + [2910] = 2886, + [2911] = 2894, + [2912] = 2893, + [2913] = 2892, + [2914] = 2891, + [2915] = 2905, + [2916] = 2890, + [2917] = 2888, + [2918] = 2904, + [2919] = 2903, + [2920] = 2895, + [2921] = 2900, + [2922] = 2899, + [2923] = 2898, + [2924] = 2897, + [2925] = 2896, + [2926] = 2889, + [2927] = 2927, + [2928] = 2879, + [2929] = 2887, + [2930] = 2880, + [2931] = 2877, + [2932] = 2882, + [2933] = 2883, + [2934] = 2884, + [2935] = 2897, + [2936] = 2886, + [2937] = 2887, + [2938] = 2886, + [2939] = 2888, + [2940] = 2890, + [2941] = 2891, + [2942] = 2892, + [2943] = 2893, + [2944] = 2894, + [2945] = 2896, + [2946] = 2884, + [2947] = 2883, + [2948] = 2882, + [2949] = 2877, + [2950] = 2880, + [2951] = 2879, + [2952] = 2927, + [2953] = 2889, + [2954] = 2896, + [2955] = 2889, + [2956] = 2898, + [2957] = 2897, + [2958] = 2898, + [2959] = 2899, + [2960] = 2900, + [2961] = 2895, + [2962] = 2903, + [2963] = 2904, + [2964] = 2899, + [2965] = 2900, + [2966] = 2905, + [2967] = 2905, + [2968] = 2904, + [2969] = 2903, + [2970] = 2895, + [2971] = 2900, + [2972] = 2899, + [2973] = 2898, + [2974] = 2897, + [2975] = 2896, + [2976] = 2889, + [2977] = 2927, + [2978] = 2894, + [2979] = 2879, + [2980] = 2880, + [2981] = 2877, + [2982] = 2882, + [2983] = 2883, + [2984] = 2884, + [2985] = 2895, + [2986] = 2886, + [2987] = 2893, + [2988] = 2887, + [2989] = 2888, + [2990] = 2890, + [2991] = 2891, + [2992] = 2892, + [2993] = 2893, + [2994] = 2894, + [2995] = 2892, + [2996] = 2891, + [2997] = 2890, + [2998] = 2888, + [2999] = 2887, + [3000] = 2886, + [3001] = 2887, + [3002] = 2884, + [3003] = 2883, + [3004] = 2903, + [3005] = 2904, + [3006] = 2882, + [3007] = 2877, + [3008] = 2880, + [3009] = 2879, + [3010] = 2927, + [3011] = 2889, + [3012] = 2896, + [3013] = 2897, + [3014] = 2898, + [3015] = 2899, + [3016] = 2900, + [3017] = 2905, + [3018] = 2904, + [3019] = 2903, + [3020] = 2895, + [3021] = 2900, + [3022] = 2899, + [3023] = 2898, + [3024] = 2897, + [3025] = 2896, + [3026] = 2889, + [3027] = 2905, + [3028] = 2927, + [3029] = 2879, + [3030] = 2880, + [3031] = 2877, + [3032] = 2882, + [3033] = 2883, + [3034] = 2884, + [3035] = 2889, + [3036] = 2903, + [3037] = 2886, + [3038] = 2887, + [3039] = 2888, + [3040] = 2890, + [3041] = 2891, + [3042] = 2892, + [3043] = 2893, + [3044] = 2894, + [3045] = 2927, + [3046] = 2904, + [3047] = 2905, + [3048] = 2894, + [3049] = 2893, + [3050] = 2892, + [3051] = 2891, + [3052] = 2890, + [3053] = 2893, + [3054] = 2896, + [3055] = 2888, + [3056] = 2887, + [3057] = 2886, + [3058] = 2892, + [3059] = 2884, + [3060] = 2883, + [3061] = 2894, + [3062] = 2882, + [3063] = 2877, + [3064] = 2891, + [3065] = 2890, + [3066] = 3066, + [3067] = 2905, + [3068] = 2904, + [3069] = 2903, + [3070] = 2895, + [3071] = 2900, + [3072] = 2899, + [3073] = 2898, + [3074] = 2897, + [3075] = 2896, + [3076] = 2880, + [3077] = 2889, + [3078] = 2927, + [3079] = 2879, + [3080] = 2880, + [3081] = 2877, + [3082] = 2882, + [3083] = 2883, + [3084] = 2884, + [3085] = 2879, + [3086] = 2888, + [3087] = 2886, + [3088] = 2887, + [3089] = 2888, + [3090] = 2890, + [3091] = 2891, + [3092] = 2892, + [3093] = 2927, + [3094] = 2889, + [3095] = 2896, + [3096] = 2897, + [3097] = 2898, + [3098] = 2899, + [3099] = 2900, + [3100] = 2895, + [3101] = 2887, + [3102] = 2886, + [3103] = 2884, + [3104] = 2883, + [3105] = 2903, + [3106] = 2904, + [3107] = 2905, + [3108] = 2894, + [3109] = 2893, + [3110] = 2893, + [3111] = 2894, + [3112] = 2892, + [3113] = 2891, + [3114] = 2890, + [3115] = 2888, + [3116] = 2887, + [3117] = 2905, + [3118] = 2904, + [3119] = 2903, + [3120] = 2895, + [3121] = 2900, + [3122] = 2899, + [3123] = 2898, + [3124] = 2897, + [3125] = 2886, + [3126] = 2896, + [3127] = 2889, + [3128] = 2927, + [3129] = 2879, + [3130] = 2880, + [3131] = 2877, + [3132] = 2882, + [3133] = 2883, + [3134] = 2882, + [3135] = 2884, + [3136] = 2877, + [3137] = 2886, + [3138] = 2887, + [3139] = 2888, + [3140] = 2890, + [3141] = 2891, + [3142] = 2884, + [3143] = 2883, + [3144] = 2882, + [3145] = 2877, + [3146] = 2880, + [3147] = 2879, + [3148] = 2889, + [3149] = 2889, + [3150] = 2896, + [3151] = 2897, + [3152] = 2898, + [3153] = 2897, + [3154] = 2898, + [3155] = 2899, + [3156] = 2900, + [3157] = 2880, + [3158] = 2879, + [3159] = 2892, + [3160] = 2893, + [3161] = 2895, + [3162] = 2903, + [3163] = 2894, + [3164] = 2904, + [3165] = 2905, + [3166] = 2894, + [3167] = 2905, + [3168] = 2904, + [3169] = 2903, + [3170] = 2895, + [3171] = 2900, + [3172] = 2899, + [3173] = 2898, + [3174] = 2893, + [3175] = 2897, + [3176] = 2896, + [3177] = 2889, + [3178] = 2927, + [3179] = 2879, + [3180] = 2880, + [3181] = 2877, + [3182] = 2882, + [3183] = 2892, + [3184] = 2883, + [3185] = 2884, + [3186] = 2888, + [3187] = 2886, + [3188] = 2887, + [3189] = 2888, + [3190] = 2890, + [3191] = 2891, + [3192] = 2890, + [3193] = 2888, + [3194] = 2887, + [3195] = 2886, + [3196] = 2890, + [3197] = 2891, + [3198] = 2884, + [3199] = 2883, + [3200] = 2892, + [3201] = 2899, + [3202] = 3202, + [3203] = 2882, + [3204] = 2877, + [3205] = 2880, + [3206] = 2879, + [3207] = 2927, + [3208] = 2891, + [3209] = 2892, + [3210] = 2880, + [3211] = 2900, + [3212] = 2893, + [3213] = 2894, + [3214] = 2896, + [3215] = 2880, + [3216] = 2897, + [3217] = 2905, + [3218] = 2904, + [3219] = 2903, + [3220] = 2895, + [3221] = 2900, + [3222] = 2899, + [3223] = 2898, + [3224] = 2898, + [3225] = 2897, + [3226] = 2896, + [3227] = 2889, + [3228] = 2927, + [3229] = 2879, + [3230] = 2880, + [3231] = 2877, + [3232] = 2899, + [3233] = 2882, + [3234] = 2883, + [3235] = 2884, + [3236] = 2893, + [3237] = 2886, + [3238] = 2887, + [3239] = 2888, + [3240] = 2894, + [3241] = 2905, + [3242] = 2900, + [3243] = 2895, + [3244] = 2903, + [3245] = 2904, + [3246] = 2905, + [3247] = 2894, + [3248] = 2893, + [3249] = 2895, + [3250] = 2903, + [3251] = 2892, + [3252] = 2891, + [3253] = 2890, + [3254] = 2888, + [3255] = 2887, + [3256] = 2886, + [3257] = 2890, + [3258] = 2891, + [3259] = 2904, + [3260] = 2884, + [3261] = 2892, + [3262] = 2893, + [3263] = 2894, + [3264] = 2883, + [3265] = 2882, [3266] = 3266, - [3267] = 3267, - [3268] = 3268, - [3269] = 3269, - [3270] = 3270, - [3271] = 3271, - [3272] = 3257, - [3273] = 3273, - [3274] = 3274, - [3275] = 3275, - [3276] = 3276, - [3277] = 3263, - [3278] = 3278, - [3279] = 3279, - [3280] = 3278, - [3281] = 3279, - [3282] = 3269, - [3283] = 3283, - [3284] = 3284, - [3285] = 3285, - [3286] = 3286, - [3287] = 3273, - [3288] = 3283, - [3289] = 3284, - [3290] = 3285, - [3291] = 3286, - [3292] = 3258, - [3293] = 3259, - [3294] = 3260, - [3295] = 3261, - [3296] = 3262, - [3297] = 3265, - [3298] = 3276, - [3299] = 3275, - [3300] = 3274, - [3301] = 3273, - [3302] = 3257, - [3303] = 3271, - [3304] = 3270, - [3305] = 3268, - [3306] = 3267, - [3307] = 3266, - [3308] = 3265, - [3309] = 3264, - [3310] = 3266, - [3311] = 3262, - [3312] = 3261, - [3313] = 3260, - [3314] = 3259, - [3315] = 3258, - [3316] = 3286, - [3317] = 3285, - [3318] = 3284, - [3319] = 3283, - [3320] = 3269, - [3321] = 3279, - [3322] = 3267, - [3323] = 3268, - [3324] = 3278, - [3325] = 3263, - [3326] = 3270, - [3327] = 3271, - [3328] = 3257, - [3329] = 3273, - [3330] = 3274, - [3331] = 3275, - [3332] = 3276, - [3333] = 3276, - [3334] = 3275, - [3335] = 3274, - [3336] = 3261, - [3337] = 3257, - [3338] = 3271, - [3339] = 3270, - [3340] = 3268, - [3341] = 3267, - [3342] = 3266, - [3343] = 3265, - [3344] = 3264, - [3345] = 3262, - [3346] = 3285, - [3347] = 3260, - [3348] = 3259, - [3349] = 3258, - [3350] = 3286, - [3351] = 3285, - [3352] = 3284, - [3353] = 3283, - [3354] = 3269, - [3355] = 3279, - [3356] = 3278, - [3357] = 3263, - [3358] = 3263, - [3359] = 3278, - [3360] = 3279, - [3361] = 3269, - [3362] = 3283, - [3363] = 3284, - [3364] = 3285, - [3365] = 3286, - [3366] = 3258, - [3367] = 3259, - [3368] = 3260, - [3369] = 3261, - [3370] = 3276, - [3371] = 3275, - [3372] = 3274, - [3373] = 3273, - [3374] = 3257, - [3375] = 3271, - [3376] = 3270, - [3377] = 3268, - [3378] = 3267, - [3379] = 3266, - [3380] = 3265, - [3381] = 3264, - [3382] = 3262, - [3383] = 3262, - [3384] = 3261, - [3385] = 3260, - [3386] = 3259, - [3387] = 3258, - [3388] = 3286, - [3389] = 3285, - [3390] = 3284, - [3391] = 3283, - [3392] = 3269, - [3393] = 3279, - [3394] = 3264, - [3395] = 3265, - [3396] = 3278, - [3397] = 3263, - [3398] = 3266, - [3399] = 3267, - [3400] = 3264, - [3401] = 3270, - [3402] = 3271, - [3403] = 3257, - [3404] = 3273, - [3405] = 3274, - [3406] = 3275, - [3407] = 3276, - [3408] = 3276, - [3409] = 3275, - [3410] = 3274, - [3411] = 3273, - [3412] = 3257, - [3413] = 3271, - [3414] = 3270, - [3415] = 3268, - [3416] = 3267, - [3417] = 3266, - [3418] = 3265, - [3419] = 3264, - [3420] = 3262, - [3421] = 3261, - [3422] = 3260, - [3423] = 3259, - [3424] = 3424, - [3425] = 3258, - [3426] = 3286, - [3427] = 3285, - [3428] = 3284, - [3429] = 3283, - [3430] = 3269, - [3431] = 3279, - [3432] = 3268, - [3433] = 3278, - [3434] = 3263, - [3435] = 3263, - [3436] = 3278, - [3437] = 3279, - [3438] = 3269, - [3439] = 3283, - [3440] = 3284, - [3441] = 3265, - [3442] = 3286, - [3443] = 3258, - [3444] = 3259, - [3445] = 3260, - [3446] = 3276, - [3447] = 3275, - [3448] = 3274, - [3449] = 3273, - [3450] = 3257, - [3451] = 3271, - [3452] = 3270, - [3453] = 3268, - [3454] = 3267, - [3455] = 3266, - [3456] = 3265, - [3457] = 3264, - [3458] = 3261, - [3459] = 3262, - [3460] = 3261, - [3461] = 3260, - [3462] = 3259, - [3463] = 3258, - [3464] = 3286, - [3465] = 3285, - [3466] = 3284, - [3467] = 3283, - [3468] = 3269, - [3469] = 3279, - [3470] = 3262, - [3471] = 3264, - [3472] = 3278, - [3473] = 3263, - [3474] = 3265, - [3475] = 3266, - [3476] = 3266, - [3477] = 3267, - [3478] = 3268, - [3479] = 3270, - [3480] = 3271, - [3481] = 3257, - [3482] = 3273, - [3483] = 3274, - [3484] = 3275, - [3485] = 3276, - [3486] = 3276, - [3487] = 3275, - [3488] = 3274, - [3489] = 3273, - [3490] = 3257, - [3491] = 3271, - [3492] = 3270, - [3493] = 3268, - [3494] = 3267, - [3495] = 3266, - [3496] = 3265, - [3497] = 3264, - [3498] = 3262, - [3499] = 3261, - [3500] = 3260, - [3501] = 3259, - [3502] = 3258, - [3503] = 3276, - [3504] = 3286, - [3505] = 3285, - [3506] = 3284, - [3507] = 3283, - [3508] = 3269, - [3509] = 3279, - [3510] = 3278, - [3511] = 3263, - [3512] = 3263, - [3513] = 3278, - [3514] = 3279, - [3515] = 3269, - [3516] = 3283, - [3517] = 3284, - [3518] = 3285, - [3519] = 3286, - [3520] = 3258, - [3521] = 3259, - [3522] = 3260, - [3523] = 3276, - [3524] = 3275, - [3525] = 3274, - [3526] = 3273, - [3527] = 3275, - [3528] = 3274, - [3529] = 3273, - [3530] = 3257, - [3531] = 3271, - [3532] = 3270, - [3533] = 3268, - [3534] = 3267, - [3535] = 3266, - [3536] = 3265, - [3537] = 3264, - [3538] = 3261, - [3539] = 3262, - [3540] = 3261, - [3541] = 3260, - [3542] = 3259, - [3543] = 3258, - [3544] = 3286, - [3545] = 3285, - [3546] = 3284, - [3547] = 3283, - [3548] = 3269, - [3549] = 3279, - [3550] = 3262, - [3551] = 3264, - [3552] = 3278, - [3553] = 3257, - [3554] = 3271, - [3555] = 3270, - [3556] = 3263, - [3557] = 3285, - [3558] = 3266, - [3559] = 3267, - [3560] = 3268, - [3561] = 3270, - [3562] = 3271, - [3563] = 3257, - [3564] = 3273, - [3565] = 3274, - [3566] = 3275, - [3567] = 3276, - [3568] = 3276, - [3569] = 3275, - [3570] = 3274, - [3571] = 3273, - [3572] = 3257, - [3573] = 3271, - [3574] = 3270, - [3575] = 3268, - [3576] = 3267, - [3577] = 3266, - [3578] = 3265, - [3579] = 3264, - [3580] = 3268, - [3581] = 3267, - [3582] = 3262, - [3583] = 3261, - [3584] = 3260, - [3585] = 3259, - [3586] = 3258, - [3587] = 3286, - [3588] = 3285, - [3589] = 3284, - [3590] = 3283, - [3591] = 3269, - [3592] = 3279, - [3593] = 3278, - [3594] = 3263, - [3595] = 3263, - [3596] = 3278, - [3597] = 3279, - [3598] = 3269, - [3599] = 3283, - [3600] = 3284, - [3601] = 3286, - [3602] = 3286, - [3603] = 3258, - [3604] = 3276, - [3605] = 3263, - [3606] = 3265, - [3607] = 3264, - [3608] = 3275, - [3609] = 3274, - [3610] = 3273, - [3611] = 3257, - [3612] = 3271, - [3613] = 3270, - [3614] = 3268, - [3615] = 3267, - [3616] = 3266, - [3617] = 3265, - [3618] = 3264, - [3619] = 3260, - [3620] = 3262, - [3621] = 3261, - [3622] = 3260, - [3623] = 3259, - [3624] = 3258, - [3625] = 3286, - [3626] = 3285, - [3627] = 3284, - [3628] = 3283, - [3629] = 3269, - [3630] = 3279, - [3631] = 3262, - [3632] = 3261, - [3633] = 3260, - [3634] = 3261, - [3635] = 3262, - [3636] = 3278, - [3637] = 3263, - [3638] = 3264, - [3639] = 3265, - [3640] = 3266, - [3641] = 3267, - [3642] = 3268, - [3643] = 3259, - [3644] = 3271, - [3645] = 3257, - [3646] = 3273, - [3647] = 3274, - [3648] = 3275, - [3649] = 3276, - [3650] = 3275, - [3651] = 3274, - [3652] = 3273, - [3653] = 3258, - [3654] = 3271, - [3655] = 3270, - [3656] = 3268, - [3657] = 3259, - [3658] = 3258, - [3659] = 3286, - [3660] = 3267, - [3661] = 3266, - [3662] = 3265, - [3663] = 3264, - [3664] = 3276, - [3665] = 3262, - [3666] = 3261, - [3667] = 3260, - [3668] = 3259, - [3669] = 3258, - [3670] = 3257, - [3671] = 3285, - [3672] = 3284, - [3673] = 3283, - [3674] = 3269, - [3675] = 3279, - [3676] = 3278, - [3677] = 3263, - [3678] = 3263, - [3679] = 3278, - [3680] = 3279, - [3681] = 3269, - [3682] = 3283, - [3683] = 3285, - [3684] = 3284, - [3685] = 3283, - [3686] = 3284, - [3687] = 3285, - [3688] = 3286, - [3689] = 3258, - [3690] = 3276, - [3691] = 3275, - [3692] = 3274, - [3693] = 3273, - [3694] = 3257, - [3695] = 3271, - [3696] = 3270, - [3697] = 3268, - [3698] = 3267, - [3699] = 3266, - [3700] = 3265, - [3701] = 3264, - [3702] = 3259, - [3703] = 3262, - [3704] = 3261, - [3705] = 3260, - [3706] = 3259, - [3707] = 3258, - [3708] = 3286, - [3709] = 3269, - [3710] = 3279, - [3711] = 3278, - [3712] = 3285, - [3713] = 3284, - [3714] = 3283, - [3715] = 3269, - [3716] = 3279, - [3717] = 3260, - [3718] = 3261, - [3719] = 3278, - [3720] = 3263, - [3721] = 3262, - [3722] = 3264, - [3723] = 3265, - [3724] = 3266, - [3725] = 3267, - [3726] = 3268, - [3727] = 3270, - [3728] = 3271, - [3729] = 3267, - [3730] = 3273, - [3731] = 3270, - [3732] = 3276, - [3733] = 3275, - [3734] = 3274, - [3735] = 3273, - [3736] = 3257, - [3737] = 3271, - [3738] = 3270, - [3739] = 3268, - [3740] = 3267, - [3741] = 3266, - [3742] = 3265, - [3743] = 3264, - [3744] = 3275, - [3745] = 3262, - [3746] = 3261, - [3747] = 3260, - [3748] = 3259, - [3749] = 3258, - [3750] = 3286, - [3751] = 3285, - [3752] = 3284, - [3753] = 3283, - [3754] = 3269, - [3755] = 3279, - [3756] = 3276, - [3757] = 3278, - [3758] = 3263, - [3759] = 3263, - [3760] = 3278, - [3761] = 3279, - [3762] = 3762, - [3763] = 3269, - [3764] = 3283, - [3765] = 3284, - [3766] = 3285, - [3767] = 3286, - [3768] = 3276, - [3769] = 3275, - [3770] = 3274, - [3771] = 3273, - [3772] = 3257, - [3773] = 3271, - [3774] = 3270, - [3775] = 3268, - [3776] = 3261, - [3777] = 3266, - [3778] = 3265, - [3779] = 3264, - [3780] = 3258, - [3781] = 3262, - [3782] = 3261, - [3783] = 3260, - [3784] = 3259, - [3785] = 3258, - [3786] = 3286, - [3787] = 3285, - [3788] = 3284, - [3789] = 3283, - [3790] = 3269, - [3791] = 3279, - [3792] = 3259, - [3793] = 3260, - [3794] = 3278, - [3795] = 3263, - [3796] = 3261, - [3797] = 3262, - [3798] = 3264, - [3799] = 3265, - [3800] = 3266, - [3801] = 3267, - [3802] = 3268, - [3803] = 3270, - [3804] = 3271, - [3805] = 3257, - [3806] = 3273, - [3807] = 3276, - [3808] = 3275, - [3809] = 3274, - [3810] = 3273, - [3811] = 3257, - [3812] = 3271, - [3813] = 3270, - [3814] = 3268, - [3815] = 3267, - [3816] = 3266, - [3817] = 3265, - [3818] = 3264, - [3819] = 3274, - [3820] = 3262, - [3821] = 3261, - [3822] = 3260, - [3823] = 3259, - [3824] = 3258, - [3825] = 3286, - [3826] = 3285, - [3827] = 3284, - [3828] = 3283, - [3829] = 3269, - [3830] = 3279, - [3831] = 3275, - [3832] = 3276, - [3833] = 3278, - [3834] = 3263, - [3835] = 3263, - [3836] = 3274, - [3837] = 3279, - [3838] = 3269, - [3839] = 3283, - [3840] = 3284, - [3841] = 3285, - [3842] = 3276, - [3843] = 3275, - [3844] = 3274, - [3845] = 3273, - [3846] = 3257, - [3847] = 3271, - [3848] = 3270, - [3849] = 3268, - [3850] = 3267, - [3851] = 3266, - [3852] = 3265, - [3853] = 3264, - [3854] = 3286, - [3855] = 3262, - [3856] = 3257, - [3857] = 3260, - [3858] = 3259, - [3859] = 3258, - [3860] = 3286, - [3861] = 3285, - [3862] = 3284, - [3863] = 3283, - [3864] = 3269, - [3865] = 3279, - [3866] = 3258, - [3867] = 3259, - [3868] = 3278, - [3869] = 3263, - [3870] = 3278, - [3871] = 3261, - [3872] = 3262, - [3873] = 3264, - [3874] = 3265, - [3875] = 3266, - [3876] = 3267, - [3877] = 3268, - [3878] = 3270, - [3879] = 3271, - [3880] = 3259, - [3881] = 3276, - [3882] = 3275, - [3883] = 3274, - [3884] = 3273, - [3885] = 3257, - [3886] = 3271, - [3887] = 3270, - [3888] = 3268, - [3889] = 3267, - [3890] = 3266, - [3891] = 3265, - [3892] = 3264, - [3893] = 3273, - [3894] = 3262, - [3895] = 3261, - [3896] = 3260, - [3897] = 3259, - [3898] = 3258, - [3899] = 3286, - [3900] = 3285, - [3901] = 3284, - [3902] = 3283, - [3903] = 3269, - [3904] = 3279, - [3905] = 3274, - [3906] = 3275, - [3907] = 3278, - [3908] = 3263, - [3909] = 3276, - [3910] = 3263, - [3911] = 3278, - [3912] = 3279, - [3913] = 3269, - [3914] = 3283, - [3915] = 3284, - [3916] = 3276, - [3917] = 3275, - [3918] = 3274, - [3919] = 3273, - [3920] = 3257, - [3921] = 3271, - [3922] = 3270, - [3923] = 3268, - [3924] = 3267, - [3925] = 3266, - [3926] = 3265, - [3927] = 3264, - [3928] = 3285, - [3929] = 3262, - [3930] = 3261, - [3931] = 3260, - [3932] = 3259, - [3933] = 3258, - [3934] = 3286, - [3935] = 3285, - [3936] = 3284, - [3937] = 3283, - [3938] = 3269, - [3939] = 3279, - [3940] = 3286, - [3941] = 3260, - [3942] = 3278, - [3943] = 3263, - [3944] = 3276, - [3945] = 3275, - [3946] = 3274, - [3947] = 3273, - [3948] = 3257, - [3949] = 3271, - [3950] = 3270, - [3951] = 3268, - [3952] = 3267, - [3953] = 3266, - [3954] = 3265, - [3955] = 3264, - [3956] = 3262, - [3957] = 3261, - [3958] = 3260, - [3959] = 3259, - [3960] = 3258, - [3961] = 3286, - [3962] = 3285, - [3963] = 3284, - [3964] = 3283, - [3965] = 3269, - [3966] = 3279, - [3967] = 3278, - [3968] = 3263, - [3969] = 3276, - [3970] = 3275, - [3971] = 3274, - [3972] = 3273, - [3973] = 3257, - [3974] = 3271, - [3975] = 3270, - [3976] = 3268, - [3977] = 3267, - [3978] = 3266, - [3979] = 3265, - [3980] = 3264, - [3981] = 3262, - [3982] = 3261, - [3983] = 3260, - [3984] = 3984, - [3985] = 3985, + [3267] = 2905, + [3268] = 2904, + [3269] = 2903, + [3270] = 2895, + [3271] = 2900, + [3272] = 3272, + [3273] = 2899, + [3274] = 2898, + [3275] = 2897, + [3276] = 2896, + [3277] = 2889, + [3278] = 2927, + [3279] = 2879, + [3280] = 2880, + [3281] = 2905, + [3282] = 2877, + [3283] = 2882, + [3284] = 2883, + [3285] = 2884, + [3286] = 2904, + [3287] = 2886, + [3288] = 2887, + [3289] = 2879, + [3290] = 2927, + [3291] = 2889, + [3292] = 2896, + [3293] = 2897, + [3294] = 2898, + [3295] = 2905, + [3296] = 2903, + [3297] = 2899, + [3298] = 2927, + [3299] = 2889, + [3300] = 2900, + [3301] = 2895, + [3302] = 2903, + [3303] = 2904, + [3304] = 2905, + [3305] = 2894, + [3306] = 2888, + [3307] = 2890, + [3308] = 2893, + [3309] = 2892, + [3310] = 2891, + [3311] = 2892, + [3312] = 2893, + [3313] = 2894, + [3314] = 2891, + [3315] = 2890, + [3316] = 2888, + [3317] = 2905, + [3318] = 2904, + [3319] = 2903, + [3320] = 2895, + [3321] = 2887, + [3322] = 2900, + [3323] = 2899, + [3324] = 2898, + [3325] = 2897, + [3326] = 2896, + [3327] = 2889, + [3328] = 2927, + [3329] = 2879, + [3330] = 2886, + [3331] = 2880, + [3332] = 2927, + [3333] = 2882, + [3334] = 2883, + [3335] = 2884, + [3336] = 2896, + [3337] = 2886, + [3338] = 2897, + [3339] = 2884, + [3340] = 2883, + [3341] = 2882, + [3342] = 2877, + [3343] = 2880, + [3344] = 2879, + [3345] = 2927, + [3346] = 2889, + [3347] = 2898, + [3348] = 2899, + [3349] = 2896, + [3350] = 2897, + [3351] = 2900, + [3352] = 2895, + [3353] = 2898, + [3354] = 2899, + [3355] = 2887, + [3356] = 2888, + [3357] = 2900, + [3358] = 2895, + [3359] = 2890, + [3360] = 2891, + [3361] = 2892, + [3362] = 2893, + [3363] = 2894, + [3364] = 2903, + [3365] = 2904, + [3366] = 2879, + [3367] = 2905, + [3368] = 2904, + [3369] = 2903, + [3370] = 2894, + [3371] = 2895, + [3372] = 2900, + [3373] = 2899, + [3374] = 2898, + [3375] = 2897, + [3376] = 2896, + [3377] = 2889, + [3378] = 2927, + [3379] = 2893, + [3380] = 2879, + [3381] = 2880, + [3382] = 2877, + [3383] = 2882, + [3384] = 2883, + [3385] = 2884, + [3386] = 2895, + [3387] = 2892, + [3388] = 2891, + [3389] = 2890, + [3390] = 2888, + [3391] = 2887, + [3392] = 2903, + [3393] = 2886, + [3394] = 2904, + [3395] = 2884, + [3396] = 2905, + [3397] = 2894, + [3398] = 2893, + [3399] = 3066, + [3400] = 2883, + [3401] = 2882, + [3402] = 2877, + [3403] = 2880, + [3404] = 2886, + [3405] = 2887, + [3406] = 2882, + [3407] = 2880, + [3408] = 2888, + [3409] = 2890, + [3410] = 2891, + [3411] = 2892, + [3412] = 2893, + [3413] = 2894, + [3414] = 2927, + [3415] = 2889, + [3416] = 2896, + [3417] = 2905, + [3418] = 2904, + [3419] = 2879, + [3420] = 2903, + [3421] = 2895, + [3422] = 2900, + [3423] = 2899, + [3424] = 2898, + [3425] = 2897, + [3426] = 2896, + [3427] = 2889, + [3428] = 2892, + [3429] = 2927, + [3430] = 2879, + [3431] = 2880, + [3432] = 2877, + [3433] = 2882, + [3434] = 2883, + [3435] = 2884, + [3436] = 2894, + [3437] = 2927, + [3438] = 2897, + [3439] = 2889, + [3440] = 2896, + [3441] = 2897, + [3442] = 2898, + [3443] = 2899, + [3444] = 2900, + [3445] = 2891, + [3446] = 2893, + [3447] = 2898, + [3448] = 2899, + [3449] = 2895, + [3450] = 2903, + [3451] = 2904, + [3452] = 2905, + [3453] = 2892, + [3454] = 2886, + [3455] = 2900, + [3456] = 2894, + [3457] = 2887, + [3458] = 2888, + [3459] = 2890, + [3460] = 2891, + [3461] = 2892, + [3462] = 2893, + [3463] = 2894, + [3464] = 2893, + [3465] = 2895, + [3466] = 2903, + [3467] = 2905, + [3468] = 2904, + [3469] = 2904, + [3470] = 2903, + [3471] = 2895, + [3472] = 2900, + [3473] = 2899, + [3474] = 2898, + [3475] = 2897, + [3476] = 2896, + [3477] = 2892, + [3478] = 2889, + [3479] = 2927, + [3480] = 2879, + [3481] = 2880, + [3482] = 2877, + [3483] = 2882, + [3484] = 2883, + [3485] = 2891, + [3486] = 2905, + [3487] = 2890, + [3488] = 2894, + [3489] = 2893, + [3490] = 2892, + [3491] = 2888, + [3492] = 2887, + [3493] = 2886, + [3494] = 2891, + [3495] = 2890, + [3496] = 2891, + [3497] = 2890, + [3498] = 2888, + [3499] = 2884, + [3500] = 2883, + [3501] = 2882, + [3502] = 2884, + [3503] = 2887, + [3504] = 2888, + [3505] = 2887, + [3506] = 2886, + [3507] = 2887, + [3508] = 2888, + [3509] = 2890, + [3510] = 2891, + [3511] = 2892, + [3512] = 2893, + [3513] = 2894, + [3514] = 2886, + [3515] = 2886, + [3516] = 2884, + [3517] = 2883, + [3518] = 2905, + [3519] = 2904, + [3520] = 2903, + [3521] = 2895, + [3522] = 2900, + [3523] = 2899, + [3524] = 2898, + [3525] = 2897, + [3526] = 2877, + [3527] = 2896, + [3528] = 2889, + [3529] = 2927, + [3530] = 2879, + [3531] = 2880, + [3532] = 2877, + [3533] = 2882, + [3534] = 2927, + [3535] = 2927, + [3536] = 2879, + [3537] = 2927, + [3538] = 2889, + [3539] = 2884, + [3540] = 2883, + [3541] = 2896, + [3542] = 2897, + [3543] = 2882, + [3544] = 2890, + [3545] = 2877, + [3546] = 2880, + [3547] = 2898, + [3548] = 2899, + [3549] = 2900, + [3550] = 2895, + [3551] = 2883, + [3552] = 2884, + [3553] = 2903, + [3554] = 2904, + [3555] = 2888, + [3556] = 2886, + [3557] = 2887, + [3558] = 2888, + [3559] = 2890, + [3560] = 2891, + [3561] = 2892, + [3562] = 2893, + [3563] = 2894, + [3564] = 2905, + [3565] = 2894, + [3566] = 2893, + [3567] = 2892, + [3568] = 2905, + [3569] = 2904, + [3570] = 2903, + [3571] = 2895, + [3572] = 2900, + [3573] = 2899, + [3574] = 2898, + [3575] = 2891, + [3576] = 2897, + [3577] = 2896, + [3578] = 2889, + [3579] = 2927, + [3580] = 2879, + [3581] = 2880, + [3582] = 2877, + [3583] = 2890, + [3584] = 2888, + [3585] = 2887, + [3586] = 2886, + [3587] = 2877, + [3588] = 2884, + [3589] = 2883, + [3590] = 2882, + [3591] = 2877, + [3592] = 2880, + [3593] = 2900, + [3594] = 2880, + [3595] = 2879, + [3596] = 2880, + [3597] = 2899, + [3598] = 2898, + [3599] = 2889, + [3600] = 2882, + [3601] = 2883, + [3602] = 2896, + [3603] = 2879, + [3604] = 2884, + [3605] = 2897, + [3606] = 2886, + [3607] = 2887, + [3608] = 2888, + [3609] = 2890, + [3610] = 2891, + [3611] = 2892, + [3612] = 2893, + [3613] = 2894, + [3614] = 2897, + [3615] = 2898, + [3616] = 2899, + [3617] = 2900, + [3618] = 2905, + [3619] = 2904, + [3620] = 2903, + [3621] = 2895, + [3622] = 2900, + [3623] = 2899, + [3624] = 2895, + [3625] = 2898, + [3626] = 2897, + [3627] = 2896, + [3628] = 2889, + [3629] = 2927, + [3630] = 2879, + [3631] = 2880, + [3632] = 2903, + [3633] = 2904, + [3634] = 2905, + [3635] = 2894, + [3636] = 2893, + [3637] = 2892, + [3638] = 2891, + [3639] = 2890, + [3640] = 2888, + [3641] = 2887, + [3642] = 2886, + [3643] = 2887, + [3644] = 2886, + [3645] = 2896, + [3646] = 2884, + [3647] = 2883, + [3648] = 2882, + [3649] = 2877, + [3650] = 2882, + [3651] = 2927, + [3652] = 2877, + [3653] = 2883, + [3654] = 2884, + [3655] = 2889, + [3656] = 2886, + [3657] = 2887, + [3658] = 2888, + [3659] = 2890, + [3660] = 2891, + [3661] = 2892, + [3662] = 2893, + [3663] = 2894, + [3664] = 2927, + [3665] = 2879, + [3666] = 2880, + [3667] = 2877, + [3668] = 2905, + [3669] = 2904, + [3670] = 2903, + [3671] = 2895, + [3672] = 2900, + [3673] = 2884, + [3674] = 2899, + [3675] = 2898, + [3676] = 2897, + [3677] = 2896, + [3678] = 2889, + [3679] = 2927, + [3680] = 2879, + [3681] = 2883, + [3682] = 2882, + [3683] = 2879, + [3684] = 3684, + [3685] = 3685, + [3686] = 3686, + [3687] = 3684, + [3688] = 3686, + [3689] = 3686, + [3690] = 3684, + [3691] = 3685, + [3692] = 3685, + [3693] = 3684, + [3694] = 3686, + [3695] = 3684, + [3696] = 3685, + [3697] = 3685, + [3698] = 3684, + [3699] = 3686, + [3700] = 3686, + [3701] = 3685, + [3702] = 3684, + [3703] = 3684, + [3704] = 3685, + [3705] = 3686, + [3706] = 3686, + [3707] = 3686, + [3708] = 3686, + [3709] = 3685, + [3710] = 3684, + [3711] = 3686, + [3712] = 3685, + [3713] = 3684, + [3714] = 3684, + [3715] = 3685, + [3716] = 3716, + [3717] = 3685, + [3718] = 3684, + [3719] = 3686, + [3720] = 3720, + [3721] = 3686, + [3722] = 3684, + [3723] = 3685, + [3724] = 3685, + [3725] = 3684, + [3726] = 3686, + [3727] = 3686, + [3728] = 3685, + [3729] = 3684, + [3730] = 3684, + [3731] = 3685, + [3732] = 3686, + [3733] = 3686, + [3734] = 3685, + [3735] = 3684, + [3736] = 3684, + [3737] = 3685, + [3738] = 3686, + [3739] = 3684, + [3740] = 3685, + [3741] = 3741, + [3742] = 3685, + [3743] = 3684, + [3744] = 3686, + [3745] = 3745, + [3746] = 3686, + [3747] = 3684, + [3748] = 3685, + [3749] = 3685, + [3750] = 3684, + [3751] = 3686, + [3752] = 3686, + [3753] = 3684, + [3754] = 3685, + [3755] = 3686, + [3756] = 3684, + [3757] = 3685, + [3758] = 3686, + [3759] = 3716, + [3760] = 3720, + [3761] = 3686, + [3762] = 3685, + [3763] = 3684, + [3764] = 3685, + [3765] = 3686, + [3766] = 3685, + [3767] = 3684, + [3768] = 3684, + [3769] = 3685, + [3770] = 3684, + [3771] = 3686, + [3772] = 3686, + [3773] = 3684, + [3774] = 3685, + [3775] = 3685, + [3776] = 3684, + [3777] = 3686, + [3778] = 3686, + [3779] = 3684, + [3780] = 3686, + [3781] = 3741, + [3782] = 3685, + [3783] = 3685, + [3784] = 3684, + [3785] = 3685, + [3786] = 3745, + [3787] = 3686, + [3788] = 3788, + [3789] = 3789, + [3790] = 3790, + [3791] = 3791, + [3792] = 3792, + [3793] = 3793, + [3794] = 3794, + [3795] = 3795, + [3796] = 3796, + [3797] = 3797, + [3798] = 3798, + [3799] = 3799, + [3800] = 3800, + [3801] = 3801, + [3802] = 3788, + [3803] = 3803, + [3804] = 3804, + [3805] = 3805, + [3806] = 3806, + [3807] = 3807, + [3808] = 3808, + [3809] = 3809, + [3810] = 3810, + [3811] = 3794, + [3812] = 3812, + [3813] = 3813, + [3814] = 3814, + [3815] = 3815, + [3816] = 3816, + [3817] = 3817, + [3818] = 3791, + [3819] = 3790, + [3820] = 3789, + [3821] = 3793, + [3822] = 3794, + [3823] = 3795, + [3824] = 3796, + [3825] = 3797, + [3826] = 3798, + [3827] = 3799, + [3828] = 3800, + [3829] = 3801, + [3830] = 3788, + [3831] = 3803, + [3832] = 3804, + [3833] = 3805, + [3834] = 3806, + [3835] = 3807, + [3836] = 3808, + [3837] = 3809, + [3838] = 3810, + [3839] = 3792, + [3840] = 3812, + [3841] = 3813, + [3842] = 3814, + [3843] = 3815, + [3844] = 3816, + [3845] = 3817, + [3846] = 3791, + [3847] = 3790, + [3848] = 3789, + [3849] = 3793, + [3850] = 3794, + [3851] = 3795, + [3852] = 3796, + [3853] = 3797, + [3854] = 3798, + [3855] = 3799, + [3856] = 3800, + [3857] = 3801, + [3858] = 3788, + [3859] = 3803, + [3860] = 3804, + [3861] = 3805, + [3862] = 3806, + [3863] = 3807, + [3864] = 3808, + [3865] = 3809, + [3866] = 3810, + [3867] = 3792, + [3868] = 3812, + [3869] = 3813, + [3870] = 3814, + [3871] = 3815, + [3872] = 3816, + [3873] = 3817, + [3874] = 3791, + [3875] = 3790, + [3876] = 3789, + [3877] = 3793, + [3878] = 3808, + [3879] = 3795, + [3880] = 3796, + [3881] = 3797, + [3882] = 3798, + [3883] = 3799, + [3884] = 3800, + [3885] = 3801, + [3886] = 3788, + [3887] = 3803, + [3888] = 3804, + [3889] = 3805, + [3890] = 3806, + [3891] = 3807, + [3892] = 3808, + [3893] = 3809, + [3894] = 3810, + [3895] = 3792, + [3896] = 3812, + [3897] = 3813, + [3898] = 3814, + [3899] = 3815, + [3900] = 3816, + [3901] = 3817, + [3902] = 3791, + [3903] = 3790, + [3904] = 3789, + [3905] = 3793, + [3906] = 3794, + [3907] = 3795, + [3908] = 3796, + [3909] = 3797, + [3910] = 3798, + [3911] = 3799, + [3912] = 3800, + [3913] = 3801, + [3914] = 3788, + [3915] = 3803, + [3916] = 3804, + [3917] = 3805, + [3918] = 3806, + [3919] = 3807, + [3920] = 3817, + [3921] = 3809, + [3922] = 3810, + [3923] = 3792, + [3924] = 3812, + [3925] = 3813, + [3926] = 3814, + [3927] = 3815, + [3928] = 3816, + [3929] = 3817, + [3930] = 3791, + [3931] = 3790, + [3932] = 3789, + [3933] = 3793, + [3934] = 3794, + [3935] = 3795, + [3936] = 3796, + [3937] = 3797, + [3938] = 3798, + [3939] = 3799, + [3940] = 3800, + [3941] = 3801, + [3942] = 3788, + [3943] = 3803, + [3944] = 3804, + [3945] = 3805, + [3946] = 3806, + [3947] = 3807, + [3948] = 3808, + [3949] = 3809, + [3950] = 3810, + [3951] = 3792, + [3952] = 3812, + [3953] = 3813, + [3954] = 3814, + [3955] = 3815, + [3956] = 3816, + [3957] = 3804, + [3958] = 3791, + [3959] = 3790, + [3960] = 3789, + [3961] = 3793, + [3962] = 3794, + [3963] = 3795, + [3964] = 3796, + [3965] = 3797, + [3966] = 3798, + [3967] = 3799, + [3968] = 3800, + [3969] = 3801, + [3970] = 3788, + [3971] = 3803, + [3972] = 3804, + [3973] = 3805, + [3974] = 3806, + [3975] = 3807, + [3976] = 3808, + [3977] = 3809, + [3978] = 3810, + [3979] = 3792, + [3980] = 3812, + [3981] = 3813, + [3982] = 3814, + [3983] = 3815, + [3984] = 3816, + [3985] = 3817, + [3986] = 3791, + [3987] = 3790, + [3988] = 3789, + [3989] = 3793, + [3990] = 3794, + [3991] = 3795, + [3992] = 3796, + [3993] = 3797, + [3994] = 3798, + [3995] = 3799, + [3996] = 3800, + [3997] = 3801, + [3998] = 3788, + [3999] = 3803, + [4000] = 3804, + [4001] = 3805, + [4002] = 3806, + [4003] = 3807, + [4004] = 3808, + [4005] = 3809, + [4006] = 3810, + [4007] = 3792, + [4008] = 3812, + [4009] = 3813, + [4010] = 3814, + [4011] = 3815, + [4012] = 3816, + [4013] = 3817, + [4014] = 3791, + [4015] = 3790, + [4016] = 3789, + [4017] = 3793, + [4018] = 3794, + [4019] = 3795, + [4020] = 3796, + [4021] = 3797, + [4022] = 3798, + [4023] = 3799, + [4024] = 3800, + [4025] = 3801, + [4026] = 3788, + [4027] = 3803, + [4028] = 3796, + [4029] = 3805, + [4030] = 3806, + [4031] = 3807, + [4032] = 3808, + [4033] = 3809, + [4034] = 3810, + [4035] = 3792, + [4036] = 3812, + [4037] = 3813, + [4038] = 3814, + [4039] = 3815, + [4040] = 3816, + [4041] = 3817, + [4042] = 3791, + [4043] = 3790, + [4044] = 3789, + [4045] = 3793, + [4046] = 3794, + [4047] = 3795, + [4048] = 3817, + [4049] = 3797, + [4050] = 3798, + [4051] = 3799, + [4052] = 3800, + [4053] = 3801, + [4054] = 3788, + [4055] = 3803, + [4056] = 3804, + [4057] = 3805, + [4058] = 3806, + [4059] = 3807, + [4060] = 3808, + [4061] = 3809, + [4062] = 3810, + [4063] = 3792, + [4064] = 3812, + [4065] = 3813, + [4066] = 3814, + [4067] = 3815, + [4068] = 3816, + [4069] = 3817, + [4070] = 3791, + [4071] = 3790, + [4072] = 3789, + [4073] = 3793, + [4074] = 3794, + [4075] = 3795, + [4076] = 3796, + [4077] = 3797, + [4078] = 3798, + [4079] = 3799, + [4080] = 3800, + [4081] = 3801, + [4082] = 3788, + [4083] = 3803, + [4084] = 3804, + [4085] = 3805, + [4086] = 3806, + [4087] = 3807, + [4088] = 3808, + [4089] = 3809, + [4090] = 3810, + [4091] = 3792, + [4092] = 3812, + [4093] = 3813, + [4094] = 3814, + [4095] = 3815, + [4096] = 3816, + [4097] = 3812, + [4098] = 3791, + [4099] = 3790, + [4100] = 3789, + [4101] = 3793, + [4102] = 3794, + [4103] = 3795, + [4104] = 3796, + [4105] = 3797, + [4106] = 3798, + [4107] = 3799, + [4108] = 3800, + [4109] = 3801, + [4110] = 3788, + [4111] = 3803, + [4112] = 3804, + [4113] = 3805, + [4114] = 3806, + [4115] = 3807, + [4116] = 3808, + [4117] = 3809, + [4118] = 3810, + [4119] = 3792, + [4120] = 3812, + [4121] = 3813, + [4122] = 3814, + [4123] = 3815, + [4124] = 3816, + [4125] = 3817, + [4126] = 3791, + [4127] = 3790, + [4128] = 3789, + [4129] = 3793, + [4130] = 3794, + [4131] = 3795, + [4132] = 3796, + [4133] = 3797, + [4134] = 3798, + [4135] = 3799, + [4136] = 3800, + [4137] = 3801, + [4138] = 3788, + [4139] = 3803, + [4140] = 3804, + [4141] = 3805, + [4142] = 3806, + [4143] = 3807, + [4144] = 3808, + [4145] = 3809, + [4146] = 3810, + [4147] = 3792, + [4148] = 3812, + [4149] = 3813, + [4150] = 3814, + [4151] = 3815, + [4152] = 3816, + [4153] = 3817, + [4154] = 3791, + [4155] = 3790, + [4156] = 3789, + [4157] = 3793, + [4158] = 3794, + [4159] = 3795, + [4160] = 3796, + [4161] = 3797, + [4162] = 3798, + [4163] = 3799, + [4164] = 3800, + [4165] = 3801, + [4166] = 3788, + [4167] = 3803, + [4168] = 3804, + [4169] = 3805, + [4170] = 3806, + [4171] = 3807, + [4172] = 3808, + [4173] = 3809, + [4174] = 3810, + [4175] = 3792, + [4176] = 3814, + [4177] = 3813, + [4178] = 3796, + [4179] = 3815, + [4180] = 3816, + [4181] = 3817, + [4182] = 3791, + [4183] = 3790, + [4184] = 3789, + [4185] = 3793, + [4186] = 3794, + [4187] = 3795, + [4188] = 3796, + [4189] = 3797, + [4190] = 3798, + [4191] = 3799, + [4192] = 3800, + [4193] = 3801, + [4194] = 3788, + [4195] = 3803, + [4196] = 3804, + [4197] = 3805, + [4198] = 3806, + [4199] = 3807, + [4200] = 3808, + [4201] = 3809, + [4202] = 3810, + [4203] = 3792, + [4204] = 3812, + [4205] = 3813, + [4206] = 3814, + [4207] = 3815, + [4208] = 3816, + [4209] = 3817, + [4210] = 3791, + [4211] = 3790, + [4212] = 3789, + [4213] = 3793, + [4214] = 3794, + [4215] = 3795, + [4216] = 3796, + [4217] = 3797, + [4218] = 3798, + [4219] = 3799, + [4220] = 3800, + [4221] = 3801, + [4222] = 3788, + [4223] = 3803, + [4224] = 3804, + [4225] = 3805, + [4226] = 3806, + [4227] = 3807, + [4228] = 3808, + [4229] = 3809, + [4230] = 3810, + [4231] = 3792, + [4232] = 3812, + [4233] = 3813, + [4234] = 3814, + [4235] = 3815, + [4236] = 3816, + [4237] = 3817, + [4238] = 3791, + [4239] = 3790, + [4240] = 3789, + [4241] = 3793, + [4242] = 3794, + [4243] = 3795, + [4244] = 3800, + [4245] = 3797, + [4246] = 3798, + [4247] = 3799, + [4248] = 3800, + [4249] = 3801, + [4250] = 3788, + [4251] = 3803, + [4252] = 3804, + [4253] = 3805, + [4254] = 3806, + [4255] = 3807, + [4256] = 3808, + [4257] = 3809, + [4258] = 3810, + [4259] = 3792, + [4260] = 3812, + [4261] = 3813, + [4262] = 3814, + [4263] = 3815, + [4264] = 3816, + [4265] = 3817, + [4266] = 3791, + [4267] = 3790, + [4268] = 3789, + [4269] = 3793, + [4270] = 3794, + [4271] = 3795, + [4272] = 3796, + [4273] = 3797, + [4274] = 3798, + [4275] = 3799, + [4276] = 3800, + [4277] = 3801, + [4278] = 3788, + [4279] = 3803, + [4280] = 3804, + [4281] = 3805, + [4282] = 3806, + [4283] = 3807, + [4284] = 3808, + [4285] = 3809, + [4286] = 3810, + [4287] = 3792, + [4288] = 3812, + [4289] = 3813, + [4290] = 3814, + [4291] = 3815, + [4292] = 3816, + [4293] = 3817, + [4294] = 3791, + [4295] = 3790, + [4296] = 3789, + [4297] = 3793, + [4298] = 3794, + [4299] = 3795, + [4300] = 3796, + [4301] = 3797, + [4302] = 3798, + [4303] = 3799, + [4304] = 3817, + [4305] = 3801, + [4306] = 3788, + [4307] = 3803, + [4308] = 3804, + [4309] = 3805, + [4310] = 3806, + [4311] = 3807, + [4312] = 3808, + [4313] = 3809, + [4314] = 3810, + [4315] = 3792, + [4316] = 3812, + [4317] = 3813, + [4318] = 3814, + [4319] = 3815, + [4320] = 3816, + [4321] = 3806, + [4322] = 3791, + [4323] = 3790, + [4324] = 3789, + [4325] = 3793, + [4326] = 3794, + [4327] = 3795, + [4328] = 3796, + [4329] = 3797, + [4330] = 3798, + [4331] = 3799, + [4332] = 3800, + [4333] = 3801, + [4334] = 3788, + [4335] = 3803, + [4336] = 3804, + [4337] = 3805, + [4338] = 3806, + [4339] = 3807, + [4340] = 3808, + [4341] = 3809, + [4342] = 3810, + [4343] = 3792, + [4344] = 3812, + [4345] = 3813, + [4346] = 3814, + [4347] = 3815, + [4348] = 3816, + [4349] = 3817, + [4350] = 3791, + [4351] = 3790, + [4352] = 3789, + [4353] = 3793, + [4354] = 3794, + [4355] = 3795, + [4356] = 3796, + [4357] = 3797, + [4358] = 3798, + [4359] = 3799, + [4360] = 3800, + [4361] = 3801, + [4362] = 3788, + [4363] = 3803, + [4364] = 3804, + [4365] = 3805, + [4366] = 3806, + [4367] = 3807, + [4368] = 3808, + [4369] = 3809, + [4370] = 3810, + [4371] = 3792, + [4372] = 3812, + [4373] = 3813, + [4374] = 3814, + [4375] = 3815, + [4376] = 3816, + [4377] = 3817, + [4378] = 3791, + [4379] = 3790, + [4380] = 3789, + [4381] = 3793, + [4382] = 3794, + [4383] = 3795, + [4384] = 3796, + [4385] = 3797, + [4386] = 3798, + [4387] = 3799, + [4388] = 3800, + [4389] = 3801, + [4390] = 3788, + [4391] = 3803, + [4392] = 3804, + [4393] = 3805, + [4394] = 3816, + [4395] = 3807, + [4396] = 3808, + [4397] = 3809, + [4398] = 3810, + [4399] = 3792, + [4400] = 3812, + [4401] = 3813, + [4402] = 3814, + [4403] = 3815, + [4404] = 3816, + [4405] = 3817, + [4406] = 3791, + [4407] = 3790, + [4408] = 3789, + [4409] = 3793, + [4410] = 3794, + [4411] = 3795, + [4412] = 3796, + [4413] = 3797, + [4414] = 3798, + [4415] = 3799, + [4416] = 3800, + [4417] = 3801, + [4418] = 3788, + [4419] = 3803, + [4420] = 3804, + [4421] = 3805, + [4422] = 3806, + [4423] = 3807, + [4424] = 3808, + [4425] = 3809, + [4426] = 3810, + [4427] = 3792, + [4428] = 3812, + [4429] = 3813, + [4430] = 3814, + [4431] = 3815, + [4432] = 3817, + [4433] = 3817, + [4434] = 3791, + [4435] = 3790, + [4436] = 3789, + [4437] = 3793, + [4438] = 3794, + [4439] = 3795, + [4440] = 3796, + [4441] = 3797, + [4442] = 3798, + [4443] = 3799, + [4444] = 3800, + [4445] = 3801, + [4446] = 3788, + [4447] = 3803, + [4448] = 3804, + [4449] = 3805, + [4450] = 3806, + [4451] = 3807, + [4452] = 3808, + [4453] = 3809, + [4454] = 3810, + [4455] = 3792, + [4456] = 3812, + [4457] = 3813, + [4458] = 3814, + [4459] = 3815, + [4460] = 3816, + [4461] = 3815, + [4462] = 3791, + [4463] = 3790, + [4464] = 3789, + [4465] = 3793, + [4466] = 3794, + [4467] = 3795, + [4468] = 3796, + [4469] = 3797, + [4470] = 3798, + [4471] = 3799, + [4472] = 3800, + [4473] = 3801, + [4474] = 3788, + [4475] = 3803, + [4476] = 3804, + [4477] = 3805, + [4478] = 3806, + [4479] = 3807, + [4480] = 3808, + [4481] = 3809, + [4482] = 3810, + [4483] = 3792, + [4484] = 3812, + [4485] = 3813, + [4486] = 3814, + [4487] = 3815, + [4488] = 3816, + [4489] = 3817, + [4490] = 3791, + [4491] = 3790, + [4492] = 3789, + [4493] = 3793, + [4494] = 3794, + [4495] = 3795, + [4496] = 3796, + [4497] = 3797, + [4498] = 3798, + [4499] = 3799, + [4500] = 3800, + [4501] = 3801, + [4502] = 3788, + [4503] = 3803, + [4504] = 3804, + [4505] = 3805, + [4506] = 3806, + [4507] = 3807, + [4508] = 3808, + [4509] = 3809, + [4510] = 3810, + [4511] = 3792, + [4512] = 3812, + [4513] = 3813, + [4514] = 3814, + [4515] = 3815, + [4516] = 3816, + [4517] = 3817, + [4518] = 3791, + [4519] = 3790, + [4520] = 3789, + [4521] = 3793, + [4522] = 3794, + [4523] = 3795, + [4524] = 3796, + [4525] = 3797, + [4526] = 3798, + [4527] = 3799, + [4528] = 3800, + [4529] = 3801, + [4530] = 3788, + [4531] = 3803, + [4532] = 3804, + [4533] = 3805, + [4534] = 3806, + [4535] = 3807, + [4536] = 3808, + [4537] = 3809, + [4538] = 3810, + [4539] = 3792, + [4540] = 3812, + [4541] = 3813, + [4542] = 3814, + [4543] = 3804, + [4544] = 3816, + [4545] = 3817, + [4546] = 3791, + [4547] = 3790, + [4548] = 3789, + [4549] = 3793, + [4550] = 3794, + [4551] = 3795, + [4552] = 3796, + [4553] = 3797, + [4554] = 3798, + [4555] = 3799, + [4556] = 3800, + [4557] = 3801, + [4558] = 3788, + [4559] = 3803, + [4560] = 3799, + [4561] = 3805, + [4562] = 3806, + [4563] = 3807, + [4564] = 3808, + [4565] = 3809, + [4566] = 3810, + [4567] = 3792, + [4568] = 3812, + [4569] = 3813, + [4570] = 3814, + [4571] = 3815, + [4572] = 3816, + [4573] = 3817, + [4574] = 3791, + [4575] = 3790, + [4576] = 3789, + [4577] = 3793, + [4578] = 3794, + [4579] = 3795, + [4580] = 3796, + [4581] = 3797, + [4582] = 3798, + [4583] = 3799, + [4584] = 3800, + [4585] = 3801, + [4586] = 3788, + [4587] = 3803, + [4588] = 3804, + [4589] = 3805, + [4590] = 3806, + [4591] = 3807, + [4592] = 3808, + [4593] = 3809, + [4594] = 3810, + [4595] = 3792, + [4596] = 3812, + [4597] = 3813, + [4598] = 3814, + [4599] = 3815, + [4600] = 3816, + [4601] = 3817, + [4602] = 3791, + [4603] = 3790, + [4604] = 3789, + [4605] = 3793, + [4606] = 3794, + [4607] = 3795, + [4608] = 3796, + [4609] = 3797, + [4610] = 3798, + [4611] = 3817, + [4612] = 3800, + [4613] = 3801, + [4614] = 3803, + [4615] = 3804, + [4616] = 3805, + [4617] = 3806, + [4618] = 3807, + [4619] = 3808, + [4620] = 3809, + [4621] = 3810, + [4622] = 3792, + [4623] = 3812, + [4624] = 3813, + [4625] = 3814, + [4626] = 3815, + [4627] = 3816, + [4628] = 3817, + [4629] = 3791, + [4630] = 3790, + [4631] = 3789, + [4632] = 3793, + [4633] = 3794, + [4634] = 3795, + [4635] = 3796, + [4636] = 3797, + [4637] = 3798, + [4638] = 3799, + [4639] = 3800, + [4640] = 3801, + [4641] = 3788, + [4642] = 3803, + [4643] = 3804, + [4644] = 3805, + [4645] = 3806, + [4646] = 3807, + [4647] = 3808, + [4648] = 3809, + [4649] = 3810, + [4650] = 3792, + [4651] = 3812, + [4652] = 3813, + [4653] = 3814, + [4654] = 3815, + [4655] = 3816, + [4656] = 4656, + [4657] = 4657, + [4658] = 3791, + [4659] = 3790, + [4660] = 3789, + [4661] = 3793, + [4662] = 3794, + [4663] = 3795, + [4664] = 3796, + [4665] = 3797, + [4666] = 3798, + [4667] = 3799, + [4668] = 3800, + [4669] = 3801, + [4670] = 3788, + [4671] = 3803, + [4672] = 3804, + [4673] = 3805, + [4674] = 3806, + [4675] = 3807, + [4676] = 3808, + [4677] = 3809, + [4678] = 3810, + [4679] = 3792, + [4680] = 3812, + [4681] = 3813, + [4682] = 3814, + [4683] = 3815, + [4684] = 3816, + [4685] = 3817, + [4686] = 4686, + [4687] = 4687, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -5093,26 +5858,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - 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 (eof) ADVANCE(101); + if (lookahead == '!') ADVANCE(758); + if (lookahead == '(') ADVANCE(740); + if (lookahead == ')') ADVANCE(741); + if (lookahead == '-') ADVANCE(760); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(761); + if (lookahead == '{') ADVANCE(759); + if (lookahead == '}') ADVANCE(797); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(0) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 1: - if (lookahead == '!') ADVANCE(719); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(756); - if (lookahead == '{') ADVANCE(754); + if (lookahead == '!') ADVANCE(758); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(798); + if (lookahead == '{') ADVANCE(796); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5120,563 +5885,563 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 2: - if (lookahead == '!') ADVANCE(102); + if (lookahead == '!') ADVANCE(108); END_STATE(); case 3: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(753); - if (lookahead == '{') ADVANCE(754); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(795); + if (lookahead == '{') ADVANCE(796); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(3) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 4: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(726); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(765); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(4) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 5: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(725); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(764); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(5) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 6: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(723); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(762); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(6) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 7: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(728); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(767); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(7) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 8: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(730); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(769); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 9: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(732); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(771); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 10: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(734); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(773); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 11: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(736); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(775); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 12: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(738); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(777); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 13: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(740); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(779); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(13) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 14: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(742); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(781); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 15: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(744); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(783); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(15) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 16: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(746); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(785); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(16) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 17: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(747); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 18: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(748); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(18) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 19: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(749); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(789); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(19) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 20: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(750); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(790); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(20) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 21: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(727); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(766); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(21) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 22: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(751); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(791); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 23: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(752); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(768); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(23) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 24: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(729); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(770); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(24) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 25: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(731); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(772); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(25) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 26: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(733); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(774); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(26) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 27: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(735); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(776); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(27) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 28: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(737); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(778); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 29: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(739); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(780); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(29) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 30: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(741); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(782); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 31: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(743); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(784); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 32: - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(745); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(32) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 33: - if (lookahead == '(') ADVANCE(709); - if (lookahead == ')') ADVANCE(702); - if (lookahead == '{') ADVANCE(707); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(793); + if (lookahead == '{') ADVANCE(759); + if (lookahead == '!' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(703); - if (lookahead != 0) ADVANCE(708); + lookahead == ' ') SKIP(33) + if (lookahead != 0) ADVANCE(799); END_STATE(); case 34: - if (lookahead == '(') ADVANCE(709); - if (lookahead == ')') ADVANCE(710); - if (lookahead == '{') ADVANCE(707); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(792); + if (lookahead == '{') ADVANCE(759); + if (lookahead == '!' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(706); - if (lookahead != 0) ADVANCE(708); + lookahead == ' ') SKIP(34) + if (lookahead != 0) ADVANCE(799); END_STATE(); case 35: - if (lookahead == '-') ADVANCE(721); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(756); - if (lookahead == '{') ADVANCE(754); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(794); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || - lookahead == '(' || lookahead == ')' || - lookahead == '}') ADVANCE(718); + lookahead == '-' || + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(35) - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 36: - if (lookahead == '-') ADVANCE(36); - if (lookahead != 0 && - lookahead != '!' && - lookahead != '(' && - lookahead != ')' && - lookahead != '?' && - lookahead != '@' && - lookahead != '{' && - lookahead != '}') ADVANCE(757); + if (lookahead == '(') ADVANCE(748); + if (lookahead == ')') ADVANCE(741); + if (lookahead == '{') ADVANCE(746); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(742); + if (lookahead != 0) ADVANCE(747); END_STATE(); case 37: - if (lookahead == '-') ADVANCE(38); - END_STATE(); - case 38: - if (lookahead == '-') ADVANCE(96); - END_STATE(); - case 39: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(753); - if (lookahead == '{') ADVANCE(754); + if (lookahead == '(') ADVANCE(748); + if (lookahead == ')') ADVANCE(749); + if (lookahead == '{') ADVANCE(746); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(39) - if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == ' ') ADVANCE(745); + if (lookahead != 0) ADVANCE(747); END_STATE(); - case 40: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(756); - if (lookahead == '{') ADVANCE(754); - if (lookahead == '}') ADVANCE(755); + case 38: + if (lookahead == '-') ADVANCE(760); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(798); + if (lookahead == '{') ADVANCE(796); if (lookahead == '!' || lookahead == '(' || lookahead == ')' || - lookahead == '-') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(40) - if (lookahead != 0) ADVANCE(757); + lookahead == ' ') SKIP(38) + if (lookahead != 0) ADVANCE(799); + END_STATE(); + case 39: + if (lookahead == '-') ADVANCE(39); + if (lookahead != 0 && + lookahead != '!' && + lookahead != '(' && + lookahead != ')' && + lookahead != '?' && + lookahead != '@' && + lookahead != '{' && + lookahead != '}') ADVANCE(799); + END_STATE(); + case 40: + if (lookahead == '-') ADVANCE(41); END_STATE(); case 41: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(726); - if (lookahead == '{') ADVANCE(720); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(41) - if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + if (lookahead == '-') ADVANCE(102); END_STATE(); case 42: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(725); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(795); + if (lookahead == '{') ADVANCE(796); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5685,28 +6450,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 43: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(723); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(798); + if (lookahead == '{') ADVANCE(796); + if (lookahead == '}') ADVANCE(797); + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(43) - if (lookahead == '!' || - lookahead == '(' || - lookahead == ')' || - lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 44: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(728); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(765); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5715,13 +6480,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 45: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(730); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(764); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5730,13 +6495,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 46: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(732); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(762); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5745,13 +6510,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 47: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(734); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(767); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5760,13 +6525,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 48: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(736); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(769); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5775,13 +6540,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 49: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(738); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(771); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5790,13 +6555,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 50: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(740); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(773); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5805,13 +6570,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 51: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(742); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(775); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5820,13 +6585,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 52: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(744); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(777); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5835,13 +6600,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 53: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(746); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(779); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5850,13 +6615,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 54: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(747); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(781); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5865,13 +6630,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 55: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(748); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(783); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5880,13 +6645,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 56: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(749); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(785); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5895,13 +6660,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 57: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(750); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(787); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5910,13 +6675,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 58: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(727); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(788); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5925,13 +6690,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 59: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(751); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(789); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5940,13 +6705,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 60: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(752); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(790); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5955,13 +6720,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 61: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(729); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(766); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5970,13 +6735,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 62: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(731); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(791); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -5985,13 +6750,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 63: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(733); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(768); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6000,13 +6765,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 64: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(735); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(770); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6015,13 +6780,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 65: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(737); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(772); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6030,13 +6795,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 66: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(739); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(774); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6045,13 +6810,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 67: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(741); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(776); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6060,13 +6825,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 68: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(743); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(778); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6075,13 +6840,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 69: - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(745); - if (lookahead == '{') ADVANCE(720); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(780); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || @@ -6090,6681 +6855,7165 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 70: - if (lookahead == '@') ADVANCE(73); - if (lookahead == '{') ADVANCE(89); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(782); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(70) + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 71: - if (lookahead == 'a') ADVANCE(84); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(784); + if (lookahead == '{') ADVANCE(759); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(71) + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 72: - if (lookahead == 'a') ADVANCE(87); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(786); + if (lookahead == '{') ADVANCE(759); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(72) + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 73: - if (lookahead == 'c') ADVANCE(71); - if (lookahead == 'd') ADVANCE(76); - if (lookahead == 'e') ADVANCE(82); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(793); + if (lookahead == '{') ADVANCE(759); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(73) + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 74: - if (lookahead == 'c') ADVANCE(79); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(792); + if (lookahead == '{') ADVANCE(759); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(74) + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 75: - if (lookahead == 'd') ADVANCE(83); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(794); + if (lookahead == '{') ADVANCE(759); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(75) + if (lookahead == '!' || + lookahead == '(' || + lookahead == ')' || + lookahead == '-' || + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); case 76: - if (lookahead == 'e') ADVANCE(78); + if (lookahead == '@') ADVANCE(79); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(76) END_STATE(); case 77: - if (lookahead == 'e') ADVANCE(684); + if (lookahead == 'a') ADVANCE(90); END_STATE(); case 78: - if (lookahead == 'f') ADVANCE(72); + if (lookahead == 'a') ADVANCE(93); END_STATE(); case 79: - if (lookahead == 'h') ADVANCE(683); + if (lookahead == 'c') ADVANCE(77); + if (lookahead == 'd') ADVANCE(82); + if (lookahead == 'e') ADVANCE(88); END_STATE(); case 80: - if (lookahead == 'i') ADVANCE(86); + if (lookahead == 'c') ADVANCE(85); END_STATE(); case 81: - if (lookahead == 'l') ADVANCE(85); + if (lookahead == 'd') ADVANCE(89); END_STATE(); case 82: - if (lookahead == 'n') ADVANCE(75); + if (lookahead == 'e') ADVANCE(84); END_STATE(); case 83: - if (lookahead == 's') ADVANCE(88); + if (lookahead == 'e') ADVANCE(723); END_STATE(); case 84: - if (lookahead == 's') ADVANCE(77); + if (lookahead == 'f') ADVANCE(78); END_STATE(); case 85: - if (lookahead == 't') ADVANCE(682); + if (lookahead == 'h') ADVANCE(722); END_STATE(); case 86: - if (lookahead == 't') ADVANCE(74); + if (lookahead == 'i') ADVANCE(92); END_STATE(); case 87: - if (lookahead == 'u') ADVANCE(81); + if (lookahead == 'l') ADVANCE(91); END_STATE(); case 88: - if (lookahead == 'w') ADVANCE(80); + if (lookahead == 'n') ADVANCE(81); END_STATE(); case 89: - if (lookahead == '{') ADVANCE(37); + if (lookahead == 's') ADVANCE(94); END_STATE(); case 90: - if (lookahead == '}') ADVANCE(103); + if (lookahead == 's') ADVANCE(83); END_STATE(); case 91: - if (lookahead == '}') ADVANCE(98); + if (lookahead == 't') ADVANCE(721); END_STATE(); case 92: - if (lookahead == '}') ADVANCE(91); + if (lookahead == 't') ADVANCE(80); END_STATE(); case 93: - if (eof) ADVANCE(95); - if (lookahead == '(') ADVANCE(701); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(724); - if (lookahead == '{') ADVANCE(720); + if (lookahead == 'u') ADVANCE(87); + END_STATE(); + case 94: + if (lookahead == 'w') ADVANCE(86); + END_STATE(); + case 95: + if (lookahead == '{') ADVANCE(40); + END_STATE(); + case 96: + if (lookahead == '}') ADVANCE(109); + END_STATE(); + case 97: + if (lookahead == '}') ADVANCE(104); + END_STATE(); + case 98: + if (lookahead == '}') ADVANCE(97); + END_STATE(); + case 99: + if (eof) ADVANCE(101); + if (lookahead == '(') ADVANCE(740); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(763); + if (lookahead == '{') ADVANCE(759); if (lookahead == '!' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); + lookahead == '}') ADVANCE(757); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(93) - if (lookahead != 0) ADVANCE(757); + lookahead == ' ') SKIP(99) + if (lookahead != 0) ADVANCE(799); END_STATE(); - case 94: - if (eof) ADVANCE(95); - if (lookahead == '?') ADVANCE(757); - if (lookahead == '@') ADVANCE(724); - if (lookahead == '{') ADVANCE(720); + case 100: + if (eof) ADVANCE(101); + if (lookahead == '?') ADVANCE(799); + if (lookahead == '@') ADVANCE(763); + if (lookahead == '{') ADVANCE(759); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(94) + lookahead == ' ') SKIP(100) if (lookahead == '!' || lookahead == '(' || lookahead == ')' || lookahead == '-' || - lookahead == '}') ADVANCE(718); - if (lookahead != 0) ADVANCE(757); + lookahead == '}') ADVANCE(757); + if (lookahead != 0) ADVANCE(799); END_STATE(); - case 95: + case 101: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 96: + case 102: ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE_DASH_DASH); END_STATE(); - case 97: + case 103: ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE_DASH_DASH); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(708); + lookahead != ')') ADVANCE(747); END_STATE(); - case 98: + case 104: ACCEPT_TOKEN(anon_sym_DASH_DASH_RBRACE_RBRACE); END_STATE(); - case 99: + case 105: ACCEPT_TOKEN(aux_sym_keyword_token1); END_STATE(); - case 100: + case 106: ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); - if (lookahead == '-') ADVANCE(38); + if (lookahead == '-') ADVANCE(41); END_STATE(); - case 101: + case 107: ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); END_STATE(); - case 102: + case 108: ACCEPT_TOKEN(anon_sym_LBRACE_BANG_BANG); END_STATE(); - case 103: + case 109: ACCEPT_TOKEN(anon_sym_BANG_BANG_RBRACE); END_STATE(); - case 104: + case 110: ACCEPT_TOKEN(anon_sym_ATphp); END_STATE(); - case 105: + case 111: ACCEPT_TOKEN(anon_sym_ATendphp); END_STATE(); - case 106: + case 112: ACCEPT_TOKEN(aux_sym_attribute_token1); END_STATE(); - case 107: + case 113: ACCEPT_TOKEN(aux_sym__inline_directive_token1); END_STATE(); - case 108: + case 114: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'F') ADVANCE(383); - if (lookahead == 'I') ADVANCE(335); - if (lookahead == 'U') ADVANCE(442); - if (lookahead == 'W') ADVANCE(365); + if (lookahead == 'F') ADVANCE(408); + if (lookahead == 'I') ADVANCE(361); + if (lookahead == 'U') ADVANCE(474); + if (lookahead == 'W') ADVANCE(390); END_STATE(); - case 109: + case 115: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'R') ADVANCE(303); + if (lookahead == 'R') ADVANCE(328); END_STATE(); - case 110: + case 116: ACCEPT_TOKEN(aux_sym__inline_directive_token1); - if (lookahead == 'S') ADVANCE(215); + if (lookahead == 'S') ADVANCE(236); END_STATE(); - case 111: + case 117: ACCEPT_TOKEN(anon_sym_ATfragment); END_STATE(); - case 112: + case 118: ACCEPT_TOKEN(anon_sym_ATendfragment); END_STATE(); - case 113: + case 119: ACCEPT_TOKEN(anon_sym_ATsection); - if (lookahead == 'M') ADVANCE(386); + if (lookahead == 'M') ADVANCE(411); END_STATE(); - case 114: + case 120: ACCEPT_TOKEN(anon_sym_ATendsection); END_STATE(); - case 115: + case 121: ACCEPT_TOKEN(anon_sym_ATonce); END_STATE(); - case 116: + case 122: ACCEPT_TOKEN(anon_sym_ATendonce); END_STATE(); - case 117: + case 123: ACCEPT_TOKEN(anon_sym_ATverbatim); END_STATE(); - case 118: + case 124: ACCEPT_TOKEN(anon_sym_ATendverbatim); END_STATE(); - case 119: + case 125: ACCEPT_TOKEN(anon_sym_ATpush); - if (lookahead == 'I') ADVANCE(336); - if (lookahead == 'O') ADVANCE(437); + if (lookahead == 'I') ADVANCE(362); + if (lookahead == 'O') ADVANCE(467); END_STATE(); - case 120: + case 126: ACCEPT_TOKEN(anon_sym_ATendpush); END_STATE(); - case 121: + case 127: ACCEPT_TOKEN(anon_sym_ATpushOnce); END_STATE(); - case 122: + case 128: ACCEPT_TOKEN(anon_sym_ATendPushOnce); END_STATE(); - case 123: + case 129: ACCEPT_TOKEN(anon_sym_ATpushIf); END_STATE(); - case 124: + case 130: ACCEPT_TOKEN(anon_sym_ATendPushIf); END_STATE(); - case 125: + case 131: ACCEPT_TOKEN(anon_sym_ATprepend); - if (lookahead == 'O') ADVANCE(438); + if (lookahead == 'O') ADVANCE(470); END_STATE(); - case 126: + case 132: ACCEPT_TOKEN(anon_sym_ATendprepend); END_STATE(); - case 127: + case 133: ACCEPT_TOKEN(anon_sym_ATprependOnce); END_STATE(); - case 128: + case 134: ACCEPT_TOKEN(anon_sym_ATendPrependOnce); END_STATE(); - case 129: + case 135: ACCEPT_TOKEN(anon_sym_ATelse); - if (lookahead == 'i') ADVANCE(130); + if (lookahead == 'i') ADVANCE(136); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(137); END_STATE(); - case 130: + case 136: ACCEPT_TOKEN(aux_sym_conditional_keyword_token1); - if (lookahead == 'f') ADVANCE(131); + if (lookahead == 'f') ADVANCE(137); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(137); END_STATE(); - case 131: + case 137: ACCEPT_TOKEN(aux_sym_conditional_keyword_token1); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(131); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(137); END_STATE(); - case 132: + case 138: ACCEPT_TOKEN(anon_sym_ATif); END_STATE(); - case 133: + case 139: ACCEPT_TOKEN(anon_sym_ATendif); END_STATE(); - case 134: + case 140: ACCEPT_TOKEN(anon_sym_ATunless); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); - END_STATE(); - case 135: - ACCEPT_TOKEN(anon_sym_ATendunless); - END_STATE(); - case 136: - ACCEPT_TOKEN(anon_sym_ATisset); - END_STATE(); - case 137: - ACCEPT_TOKEN(anon_sym_ATendisset); - END_STATE(); - case 138: - ACCEPT_TOKEN(anon_sym_ATempty); - END_STATE(); - case 139: - ACCEPT_TOKEN(anon_sym_ATendempty); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_ATauth); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(164); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_ATendauth); + ACCEPT_TOKEN(anon_sym_ATendunless); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_ATguest); + ACCEPT_TOKEN(anon_sym_ATisset); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_ATendguest); + ACCEPT_TOKEN(anon_sym_ATendisset); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_ATproduction); + ACCEPT_TOKEN(anon_sym_ATempty); END_STATE(); case 145: - ACCEPT_TOKEN(anon_sym_ATendproduction); + ACCEPT_TOKEN(anon_sym_ATendempty); END_STATE(); case 146: - ACCEPT_TOKEN(anon_sym_ATenv); + ACCEPT_TOKEN(anon_sym_ATauth); END_STATE(); case 147: - ACCEPT_TOKEN(anon_sym_ATendenv); + ACCEPT_TOKEN(anon_sym_ATendauth); END_STATE(); case 148: - ACCEPT_TOKEN(anon_sym_AThasSection); + ACCEPT_TOKEN(anon_sym_ATguest); END_STATE(); case 149: - ACCEPT_TOKEN(anon_sym_ATsectionMissing); + ACCEPT_TOKEN(anon_sym_ATendguest); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_ATerror); + ACCEPT_TOKEN(anon_sym_ATproduction); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_ATenderror); + ACCEPT_TOKEN(anon_sym_ATendproduction); END_STATE(); case 152: - ACCEPT_TOKEN(aux_sym__custom_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(152); + ACCEPT_TOKEN(anon_sym_ATenv); END_STATE(); case 153: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'C') ADVANCE(454); - if (lookahead == 's') ADVANCE(99); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATendenv); END_STATE(); case 154: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'I') ADVANCE(338); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_AThasSection); END_STATE(); case 155: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'O') ADVANCE(440); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATsectionMissing); END_STATE(); case 156: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'O') ADVANCE(441); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATerror); END_STATE(); case 157: - ACCEPT_TOKEN(aux_sym__custom_token2); - 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 != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATenderror); END_STATE(); case 158: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(575); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATcan); + if (lookahead == 'a') ADVANCE(454); + if (lookahead == 'n') ADVANCE(482); END_STATE(); case 159: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(576); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATendcan); END_STATE(); case 160: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'P') ADVANCE(501); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATcannot); END_STATE(); case 161: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'R') ADVANCE(298); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATendcannot); END_STATE(); case 162: - ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'S') ADVANCE(305); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATcanany); END_STATE(); case 163: - ACCEPT_TOKEN(aux_sym__custom_token2); - 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(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ACCEPT_TOKEN(anon_sym_ATendcanany); END_STATE(); case 164: - ACCEPT_TOKEN(aux_sym__custom_token2); - 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); + ACCEPT_TOKEN(aux_sym__custom_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); - if (lookahead != 0 && - lookahead != '(' && - lookahead != '-') ADVANCE(711); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(164); END_STATE(); case 165: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'C') ADVANCE(488); + if (lookahead == 's') ADVANCE(105); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 166: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'I') ADVANCE(364); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 167: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'O') ADVANCE(472); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 168: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'O') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 169: ACCEPT_TOKEN(aux_sym__custom_token2); - 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(596); + if (lookahead == 'P') ADVANCE(698); + if (lookahead == 'a') ADVANCE(714); + if (lookahead == 'c') ADVANCE(639); + if (lookahead == 'e') ADVANCE(678); + if (lookahead == 'f') ADVANCE(686); + if (lookahead == 'g') ADVANCE(716); + if (lookahead == 'i') ADVANCE(662); + if (lookahead == 'o') ADVANCE(681); + if (lookahead == 'p') ADVANCE(653); + if (lookahead == 's') ADVANCE(650); + if (lookahead == 't') ADVANCE(649); + if (lookahead == 'u') ADVANCE(685); + if (lookahead == 'v') ADVANCE(656); + if (lookahead == 'w') ADVANCE(667); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 170: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'P') ADVANCE(610); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 171: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'P') ADVANCE(612); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 172: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'P') ADVANCE(534); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 173: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'R') ADVANCE(323); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 174: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'S') ADVANCE(330); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 175: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(255); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 176: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(282); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 177: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(619); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 178: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(268); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 179: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(269); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 180: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(272); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 181: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(261); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 182: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(279); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 183: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(276); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 184: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(288); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 185: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(266); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 186: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(283); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 187: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(284); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 188: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(291); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 189: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'l') ADVANCE(546); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(292); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 190: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(619); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 191: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(280); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 192: ACCEPT_TOKEN(aux_sym__custom_token2); - 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 (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(285); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 193: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(346); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(271); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 194: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(241); - if (lookahead == 'q') ADVANCE(573); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(286); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 195: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(393); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(264); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 196: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(208); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(289); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 197: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(503); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(274); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 198: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(394); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(259); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 199: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(515); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(287); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 200: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(219); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(262); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 201: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(214); - if (lookahead == 'l') ADVANCE(527); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(275); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 202: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(557); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(277); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 203: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(560); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(263); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 204: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(220); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(270); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 205: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(578); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(273); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 206: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'a') ADVANCE(349); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(290); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 207: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(202); + if (lookahead == 'a') ADVANCE(231); + if (lookahead == 'm') ADVANCE(498); + if (lookahead == 'n') ADVANCE(294); + if (lookahead == 'r') ADVANCE(511); + if (lookahead == 'x') ADVANCE(594); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 208: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(403); + if (lookahead == 'a') ADVANCE(372); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 209: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'b') ADVANCE(203); + if (lookahead == 'a') ADVANCE(265); + if (lookahead == 'q') ADVANCE(609); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 210: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(395); + if (lookahead == 'a') ADVANCE(418); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 211: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(352); + if (lookahead == 'a') ADVANCE(228); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 212: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(398); - if (lookahead == 'j') ADVANCE(295); + if (lookahead == 'a') ADVANCE(442); + if (lookahead == 'h') ADVANCE(317); + if (lookahead == 'l') ADVANCE(215); + if (lookahead == 'o') ADVANCE(452); + if (lookahead == 's') ADVANCE(510); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 213: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(354); + if (lookahead == 'a') ADVANCE(537); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 214: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(355); + if (lookahead == 'a') ADVANCE(419); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 215: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(485); - if (lookahead == 't') ADVANCE(595); + if (lookahead == 'a') ADVANCE(548); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 216: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(536); + if (lookahead == 'a') ADVANCE(469); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 217: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(357); + if (lookahead == 'a') ADVANCE(456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 218: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(275); + if (lookahead == 'a') ADVANCE(448); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 219: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(543); + if (lookahead == 'a') ADVANCE(464); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 220: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(360); + if (lookahead == 'a') ADVANCE(241); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 221: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(283); + if (lookahead == 'a') ADVANCE(234); + if (lookahead == 'l') ADVANCE(559); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 222: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(284); + if (lookahead == 'a') ADVANCE(593); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 223: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(285); + if (lookahead == 'a') ADVANCE(596); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 224: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(286); + if (lookahead == 'a') ADVANCE(240); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 225: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(289); + if (lookahead == 'a') ADVANCE(614); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 226: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(556); - if (lookahead == 'l') ADVANCE(300); + if (lookahead == 'a') ADVANCE(374); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 227: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(562); + if (lookahead == 'b') ADVANCE(222); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 228: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(565); + if (lookahead == 'b') ADVANCE(428); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 229: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(566); + if (lookahead == 'b') ADVANCE(223); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 230: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(567); + if (lookahead == 'c') ADVANCE(420); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 231: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'c') ADVANCE(568); + if (lookahead == 'c') ADVANCE(378); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 232: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(157); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(422); + if (lookahead == 'j') ADVANCE(320); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 233: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(107); + if (lookahead == 'c') ADVANCE(380); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 234: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(106); + if (lookahead == 'c') ADVANCE(381); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 235: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(125); + if (lookahead == 'c') ADVANCE(216); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 236: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(158); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(520); + if (lookahead == 't') ADVANCE(633); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 237: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(126); + if (lookahead == 'c') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 238: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(597); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(383); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 239: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(589); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(301); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 240: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(160); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(386); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 241: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(447); + if (lookahead == 'c') ADVANCE(578); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 242: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(585); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(309); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 243: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(462); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(310); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 244: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(348); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(311); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 245: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(580); - if (lookahead == 'p') ADVANCE(505); + if (lookahead == 'c') ADVANCE(312); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 246: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(466); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(315); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 247: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(582); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(592); + if (lookahead == 'l') ADVANCE(325); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 248: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(465); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(598); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 249: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(475); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(218); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 250: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(340); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(219); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 251: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(205); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(601); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 252: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(339); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(602); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 253: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(343); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'c') ADVANCE(603); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 254: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(505); + if (lookahead == 'c') ADVANCE(604); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 255: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(374); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(169); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 256: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(531); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 257: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(280); + if (lookahead == 'd') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 258: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(293); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(131); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 259: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(311); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(170); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 260: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(313); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(132); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 261: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(587); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(635); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 262: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(470); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(625); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 263: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(535); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(172); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 264: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(378); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(621); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 265: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(569); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(481); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 266: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(159); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(375); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 267: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(344); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 'd') ADVANCE(616); + if (lookahead == 'p') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 268: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(156); + if (lookahead == 'd') ADVANCE(499); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 269: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'd') ADVANCE(581); + if (lookahead == 'd') ADVANCE(618); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 270: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(194); + if (lookahead == 'd') ADVANCE(509); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 271: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(226); - if (lookahead == 't') ADVANCE(594); - if (lookahead == 'w') ADVANCE(373); + if (lookahead == 'd') ADVANCE(496); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 272: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(400); + if (lookahead == 'd') ADVANCE(235); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 273: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(129); + if (lookahead == 'd') ADVANCE(507); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 274: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(588); + if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 275: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(115); + if (lookahead == 'd') ADVANCE(365); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 276: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(109); + if (lookahead == 'd') ADVANCE(225); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 277: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(106); + if (lookahead == 'd') ADVANCE(369); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 278: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(693); + if (lookahead == 'd') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 279: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(691); + if (lookahead == 'd') ADVANCE(398); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 280: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(108); + if (lookahead == 'd') ADVANCE(564); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 281: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(686); + if (lookahead == 'd') ADVANCE(306); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 282: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(110); + if (lookahead == 'd') ADVANCE(342); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 283: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(121); + if (lookahead == 'd') ADVANCE(319); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 284: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(127); + if (lookahead == 'd') ADVANCE(338); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 285: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(116); + if (lookahead == 'd') ADVANCE(623); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 286: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(122); + if (lookahead == 'd') ADVANCE(569); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 287: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(694); + if (lookahead == 'd') ADVANCE(504); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 288: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(692); + if (lookahead == 'd') ADVANCE(403); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 289: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(128); + if (lookahead == 'd') ADVANCE(605); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 290: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'd') ADVANCE(171); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 291: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(210); + if (lookahead == 'd') ADVANCE(249); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 292: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(469); - if (lookahead == 'o') ADVANCE(245); + if (lookahead == 'd') ADVANCE(250); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 293: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(415); + if (lookahead == 'd') ADVANCE(168); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 294: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(427); + if (lookahead == 'd') ADVANCE(370); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 295: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(216); + if (lookahead == 'd') ADVANCE(617); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 296: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(471); + if (lookahead == 'e') ADVANCE(209); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 297: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(396); + if (lookahead == 'e') ADVANCE(247); + if (lookahead == 't') ADVANCE(632); + if (lookahead == 'w') ADVANCE(397); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 298: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(342); + if (lookahead == 'e') ADVANCE(425); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 299: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(484); - if (lookahead == 'h') ADVANCE(463); - if (lookahead == 'r') ADVANCE(292); - if (lookahead == 'u') ADVANCE(510); + if (lookahead == 'e') ADVANCE(135); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 300: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(227); + if (lookahead == 'e') ADVANCE(624); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 301: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(234); + if (lookahead == 'e') ADVANCE(121); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 302: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(479); - if (lookahead == 'i') ADVANCE(561); - if (lookahead == 'o') ADVANCE(399); + if (lookahead == 'e') ADVANCE(115); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 303: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(200); + if (lookahead == 'e') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 304: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(430); + if (lookahead == 'e') ADVANCE(732); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 305: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(228); + if (lookahead == 'e') ADVANCE(730); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 306: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(408); + if (lookahead == 'e') ADVANCE(114); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 307: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'e') ADVANCE(725); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 308: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(511); + if (lookahead == 'e') ADVANCE(116); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 309: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(539); + if (lookahead == 'e') ADVANCE(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 310: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'e') ADVANCE(133); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 311: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(496); + if (lookahead == 'e') ADVANCE(122); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 312: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(417); + if (lookahead == 'e') ADVANCE(128); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 313: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(426); + if (lookahead == 'e') ADVANCE(733); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 314: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(504); + if (lookahead == 'e') ADVANCE(731); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 315: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(513); + if (lookahead == 'e') ADVANCE(134); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 316: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(546); + if (lookahead == 'e') ADVANCE(210); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 317: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(524); + if (lookahead == 'e') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 318: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(553); + if (lookahead == 'e') ADVANCE(502); + if (lookahead == 'o') ADVANCE(267); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 319: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(433); + if (lookahead == 'e') ADVANCE(441); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 320: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(431); + if (lookahead == 'e') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 321: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(520); + if (lookahead == 'e') ADVANCE(506); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 322: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(434); + if (lookahead == 'e') ADVANCE(421); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 323: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(432); + if (lookahead == 'e') ADVANCE(368); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 324: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(517); + if (lookahead == 'e') ADVANCE(519); + if (lookahead == 'h') ADVANCE(497); + if (lookahead == 'r') ADVANCE(318); + if (lookahead == 'u') ADVANCE(544); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 325: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(525); + if (lookahead == 'e') ADVANCE(248); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 326: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(472); + if (lookahead == 'e') ADVANCE(257); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 327: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(474); + if (lookahead == 'e') ADVANCE(513); + if (lookahead == 'i') ADVANCE(597); + if (lookahead == 'o') ADVANCE(424); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 328: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(473); + if (lookahead == 'e') ADVANCE(220); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 329: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(409); + if (lookahead == 'e') ADVANCE(455); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 330: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(499); + if (lookahead == 'e') ADVANCE(251); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 331: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(500); + if (lookahead == 'e') ADVANCE(433); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 332: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'e') ADVANCE(231); + if (lookahead == 'e') ADVANCE(214); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 333: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(132); - if (lookahead == 'n') ADVANCE(212); - if (lookahead == 's') ADVANCE(530); + if (lookahead == 'e') ADVANCE(545); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 334: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(99); + if (lookahead == 'e') ADVANCE(459); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 335: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(107); + if (lookahead == 'e') ADVANCE(573); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 336: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(123); + if (lookahead == 'e') ADVANCE(224); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 337: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(133); + if (lookahead == 'e') ADVANCE(462); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 338: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(124); + if (lookahead == 'e') ADVANCE(530); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 339: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(460); + if (lookahead == 'e') ADVANCE(443); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 340: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(502); + if (lookahead == 'e') ADVANCE(538); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 341: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(370); + if (lookahead == 'e') ADVANCE(547); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 342: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(498); + if (lookahead == 'e') ADVANCE(453); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 343: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(455); + if (lookahead == 'e') ADVANCE(581); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 344: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'f') ADVANCE(461); + if (lookahead == 'e') ADVANCE(558); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 345: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(99); + if (lookahead == 'e') ADVANCE(460); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 346: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(414); + if (lookahead == 'e') ADVANCE(461); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 347: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(149); + if (lookahead == 'e') ADVANCE(589); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 348: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(579); + if (lookahead == 'e') ADVANCE(503); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 349: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'g') ADVANCE(416); + if (lookahead == 'e') ADVANCE(553); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 350: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(140); + if (lookahead == 'e') ADVANCE(463); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 351: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(99); + if (lookahead == 'e') ADVANCE(505); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 352: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(107); + if (lookahead == 'e') ADVANCE(550); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 353: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(119); + if (lookahead == 'e') ADVANCE(557); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 354: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(681); + if (lookahead == 'e') ADVANCE(508); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 355: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(689); + if (lookahead == 'e') ADVANCE(434); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 356: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(141); + if (lookahead == 'e') ADVANCE(533); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 357: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(683); + if (lookahead == 'e') ADVANCE(535); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 358: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(120); + if (lookahead == 'e') ADVANCE(254); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 359: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(155); + if (lookahead == 'f') ADVANCE(138); + if (lookahead == 'n') ADVANCE(232); + if (lookahead == 's') ADVANCE(563); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 360: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(690); + if (lookahead == 'f') ADVANCE(105); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 361: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(154); + if (lookahead == 'f') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 362: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(444); + if (lookahead == 'f') ADVANCE(129); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 363: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(387); + if (lookahead == 'f') ADVANCE(139); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 364: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(291); - if (lookahead == 'l') ADVANCE(199); - if (lookahead == 'o') ADVANCE(425); - if (lookahead == 's') ADVANCE(476); + if (lookahead == 'f') ADVANCE(130); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 365: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(312); + if (lookahead == 'f') ADVANCE(494); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 366: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'h') ADVANCE(389); + if (lookahead == 'f') ADVANCE(395); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 367: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(509); + if (lookahead == 'f') ADVANCE(536); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 368: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(586); + if (lookahead == 'f') ADVANCE(532); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 369: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(412); + if (lookahead == 'f') ADVANCE(487); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 370: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(345); + if (lookahead == 'f') ADVANCE(495); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 371: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(413); + if (lookahead == 'g') ADVANCE(105); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 372: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(436); + if (lookahead == 'g') ADVANCE(439); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 373: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(563); + if (lookahead == 'g') ADVANCE(155); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 374: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(337); + if (lookahead == 'g') ADVANCE(440); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 375: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(297); + if (lookahead == 'g') ADVANCE(615); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 376: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(516); + if (lookahead == 'h') ADVANCE(146); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 377: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(424); + if (lookahead == 'h') ADVANCE(105); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 378: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(534); + if (lookahead == 'h') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 379: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(526); + if (lookahead == 'h') ADVANCE(125); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 380: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(489); + if (lookahead == 'h') ADVANCE(720); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 381: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(467); + if (lookahead == 'h') ADVANCE(728); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 382: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(450); + if (lookahead == 'h') ADVANCE(147); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 383: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(487); + if (lookahead == 'h') ADVANCE(722); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 384: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(490); + if (lookahead == 'h') ADVANCE(167); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 385: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(451); + if (lookahead == 'h') ADVANCE(126); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 386: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(522); + if (lookahead == 'h') ADVANCE(729); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 387: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(402); + if (lookahead == 'h') ADVANCE(166); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 388: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(452); + if (lookahead == 'h') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 389: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(405); + if (lookahead == 'h') ADVANCE(412); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 390: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(456); + if (lookahead == 'h') ADVANCE(339); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 391: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(457); + if (lookahead == 'h') ADVANCE(414); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 392: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'i') ADVANCE(564); + if (lookahead == 'i') ADVANCE(543); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 393: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(685); + if (lookahead == 'i') ADVANCE(622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 394: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(686); + if (lookahead == 'i') ADVANCE(437); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 395: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'k') ADVANCE(301); + if (lookahead == 'i') ADVANCE(371); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 396: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(233); + if (lookahead == 'i') ADVANCE(438); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 397: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(591); + if (lookahead == 'i') ADVANCE(599); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 398: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(571); + if (lookahead == 'i') ADVANCE(363); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 399: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(537); + if (lookahead == 'i') ADVANCE(322); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 400: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(296); + if (lookahead == 'i') ADVANCE(466); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 401: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(277); + if (lookahead == 'i') ADVANCE(551); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 402: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(278); + if (lookahead == 'i') ADVANCE(451); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 403: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(301); + if (lookahead == 'i') ADVANCE(568); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 404: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(550); + if (lookahead == 'i') ADVANCE(560); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 405: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(287); + if (lookahead == 'i') ADVANCE(523); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 406: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(321); + if (lookahead == 'i') ADVANCE(500); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 407: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(314); + if (lookahead == 'i') ADVANCE(483); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 408: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(528); + if (lookahead == 'i') ADVANCE(522); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 409: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(327); + if (lookahead == 'i') ADVANCE(525); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 410: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(324); + if (lookahead == 'i') ADVANCE(485); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 411: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'l') ADVANCE(325); + if (lookahead == 'i') ADVANCE(555); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 412: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(117); + if (lookahead == 'i') ADVANCE(427); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 413: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(118); + if (lookahead == 'i') ADVANCE(486); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 414: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(319); + if (lookahead == 'i') ADVANCE(430); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 415: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(468); + if (lookahead == 'i') ADVANCE(490); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 416: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'm') ADVANCE(322); + if (lookahead == 'i') ADVANCE(491); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 417: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(107); + if (lookahead == 'i') ADVANCE(600); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 418: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(113); + if (lookahead == 'k') ADVANCE(724); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 419: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(148); + if (lookahead == 'k') ADVANCE(725); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 420: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(144); + if (lookahead == 'k') ADVANCE(326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 421: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(145); + if (lookahead == 'l') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 422: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(114); + if (lookahead == 'l') ADVANCE(607); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 423: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(218); + if (lookahead == 'l') ADVANCE(627); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 424: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(347); + if (lookahead == 'l') ADVANCE(571); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 425: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(555); + if (lookahead == 'l') ADVANCE(321); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 426: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(584); + if (lookahead == 'l') ADVANCE(303); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 427: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(254); + if (lookahead == 'l') ADVANCE(304); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 428: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(397); + if (lookahead == 'l') ADVANCE(326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 429: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(341); + if (lookahead == 'l') ADVANCE(583); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 430: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(235); + if (lookahead == 'l') ADVANCE(313); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 431: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(237); + if (lookahead == 'l') ADVANCE(349); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 432: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(268); + if (lookahead == 'l') ADVANCE(340); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 433: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(541); + if (lookahead == 'l') ADVANCE(561); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 434: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(548); + if (lookahead == 'l') ADVANCE(354); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 435: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(406); + if (lookahead == 'l') ADVANCE(352); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 436: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(577); + if (lookahead == 'l') ADVANCE(353); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 437: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(221); + if (lookahead == 'm') ADVANCE(123); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 438: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(222); + if (lookahead == 'm') ADVANCE(124); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 439: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(223); + if (lookahead == 'm') ADVANCE(337); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 440: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(224); + if (lookahead == 'm') ADVANCE(350); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 441: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(225); + if (lookahead == 'm') ADVANCE(501); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 442: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(410); + if (lookahead == 'n') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 443: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'n') ADVANCE(411); + if (lookahead == 'n') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 444: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(233); + if (lookahead == 'n') ADVANCE(119); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 445: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(478); - if (lookahead == 'r') ADVANCE(193); + if (lookahead == 'n') ADVANCE(154); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 446: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(480); + if (lookahead == 'n') ADVANCE(150); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 447: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(428); + if (lookahead == 'n') ADVANCE(151); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 448: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(269); + if (lookahead == 'n') ADVANCE(159); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 449: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(486); + if (lookahead == 'n') ADVANCE(120); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 450: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(418); + if (lookahead == 'n') ADVANCE(239); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 451: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(419); + if (lookahead == 'n') ADVANCE(373); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 452: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(420); + if (lookahead == 'n') ADVANCE(590); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 453: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(481); + if (lookahead == 'n') ADVANCE(620); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 454: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(429); + if (lookahead == 'n') ADVANCE(629); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 455: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(482); + if (lookahead == 'n') ADVANCE(278); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 456: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(421); + if (lookahead == 'n') ADVANCE(630); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 457: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(422); + if (lookahead == 'n') ADVANCE(423); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 458: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(404); + if (lookahead == 'n') ADVANCE(366); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 459: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(488); + if (lookahead == 'n') ADVANCE(258); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 460: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(493); + if (lookahead == 'n') ADVANCE(260); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 461: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(494); + if (lookahead == 'n') ADVANCE(293); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 462: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'o') ADVANCE(439); + if (lookahead == 'n') ADVANCE(576); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 463: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(104); + if (lookahead == 'n') ADVANCE(585); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 464: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(552); + if (lookahead == 'n') ADVANCE(468); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 465: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(574); + if (lookahead == 'n') ADVANCE(431); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 466: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(495); + if (lookahead == 'n') ADVANCE(613); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 467: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(544); + if (lookahead == 'n') ADVANCE(242); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 468: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(554); + if (lookahead == 'n') ADVANCE(489); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 469: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(304); + if (lookahead == 'n') ADVANCE(217); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 470: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(330); + if (lookahead == 'n') ADVANCE(243); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 471: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(449); + if (lookahead == 'n') ADVANCE(244); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 472: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(320); + if (lookahead == 'n') ADVANCE(245); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 473: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(323); + if (lookahead == 'n') ADVANCE(246); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 474: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(459); + if (lookahead == 'n') ADVANCE(435); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 475: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'p') ADVANCE(492); + if (lookahead == 'n') ADVANCE(436); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 476: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(334); + if (lookahead == 'o') ADVANCE(256); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 477: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(446); + if (lookahead == 'o') ADVANCE(512); + if (lookahead == 'r') ADVANCE(208); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 478: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(687); + if (lookahead == 'o') ADVANCE(514); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 479: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(207); + if (lookahead == 'o') ADVANCE(295); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 480: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(150); + if (lookahead == 'o') ADVANCE(521); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 481: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(151); + if (lookahead == 'o') ADVANCE(457); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 482: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(688); + if (lookahead == 'o') ADVANCE(574); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 483: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(290); + if (lookahead == 'o') ADVANCE(444); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 484: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(529); + if (lookahead == 'o') ADVANCE(515); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 485: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(381); + if (lookahead == 'o') ADVANCE(445); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 486: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(542); + if (lookahead == 'o') ADVANCE(446); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 487: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(514); + if (lookahead == 'o') ADVANCE(516); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 488: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(547); + if (lookahead == 'o') ADVANCE(458); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 489: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(301); + if (lookahead == 'o') ADVANCE(580); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 490: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(282); + if (lookahead == 'o') ADVANCE(447); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 491: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(307); + if (lookahead == 'o') ADVANCE(449); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 492: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(326); + if (lookahead == 'o') ADVANCE(429); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 493: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(306); + if (lookahead == 'o') ADVANCE(524); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 494: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(310); + if (lookahead == 'o') ADVANCE(528); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 495: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(448); + if (lookahead == 'o') ADVANCE(529); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 496: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(497); + if (lookahead == 'o') ADVANCE(471); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 497: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(453); + if (lookahead == 'p') ADVANCE(110); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 498: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(315); + if (lookahead == 'p') ADVANCE(588); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 499: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(533); + if (lookahead == 'p') ADVANCE(518); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 500: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(209); + if (lookahead == 'p') ADVANCE(579); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 501: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(328); + if (lookahead == 'p') ADVANCE(591); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 502: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'r') ADVANCE(206); + if (lookahead == 'p') ADVANCE(334); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 503: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(162); + if (lookahead == 'p') ADVANCE(345); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 504: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(99); + if (lookahead == 'p') ADVANCE(356); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 505: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(107); + if (lookahead == 'p') ADVANCE(346); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 506: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(106); + if (lookahead == 'p') ADVANCE(480); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 507: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(134); + if (lookahead == 'p') ADVANCE(611); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 508: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(135); + if (lookahead == 'p') ADVANCE(493); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 509: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(196); + if (lookahead == 'p') ADVANCE(527); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 510: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(353); + if (lookahead == 'r') ADVANCE(360); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 511: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(538); + if (lookahead == 'r') ADVANCE(478); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 512: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(273); + if (lookahead == 'r') ADVANCE(726); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 513: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(351); + if (lookahead == 'r') ADVANCE(227); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 514: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(536); + if (lookahead == 'r') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 515: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(506); + if (lookahead == 'r') ADVANCE(157); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 516: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(540); + if (lookahead == 'r') ADVANCE(727); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 517: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(505); + if (lookahead == 'r') ADVANCE(316); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 518: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(377); + if (lookahead == 'r') ADVANCE(479); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 519: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(358); + if (lookahead == 'r') ADVANCE(562); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 520: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(507); + if (lookahead == 'r') ADVANCE(406); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 521: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(359); + if (lookahead == 'r') ADVANCE(577); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 522: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(518); + if (lookahead == 'r') ADVANCE(549); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 523: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(361); + if (lookahead == 'r') ADVANCE(326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 524: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(545); + if (lookahead == 'r') ADVANCE(584); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 525: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(508); + if (lookahead == 'r') ADVANCE(308); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 526: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(549); + if (lookahead == 'r') ADVANCE(332); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 527: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(279); + if (lookahead == 'r') ADVANCE(348); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 528: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(288); + if (lookahead == 'r') ADVANCE(331); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 529: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(376); + if (lookahead == 'r') ADVANCE(336); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 530: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(309); + if (lookahead == 'r') ADVANCE(531); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 531: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(590); + if (lookahead == 'r') ADVANCE(484); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 532: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(316); + if (lookahead == 'r') ADVANCE(341); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 533: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(379); + if (lookahead == 'r') ADVANCE(567); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 534: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(532); + if (lookahead == 'r') ADVANCE(351); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 535: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 's') ADVANCE(332); + if (lookahead == 'r') ADVANCE(229); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 536: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(107); + if (lookahead == 'r') ADVANCE(226); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 537: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(699); + if (lookahead == 's') ADVANCE(174); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 538: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(142); + if (lookahead == 's') ADVANCE(105); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 539: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(136); + if (lookahead == 's') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 540: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(695); + if (lookahead == 's') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 541: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(111); + if (lookahead == 's') ADVANCE(140); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 542: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(697); + if (lookahead == 's') ADVANCE(141); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 543: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(161); + if (lookahead == 's') ADVANCE(211); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 544: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(153); + if (lookahead == 's') ADVANCE(379); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 545: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(143); + if (lookahead == 's') ADVANCE(572); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 546: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(137); + if (lookahead == 's') ADVANCE(299); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 547: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(698); + if (lookahead == 's') ADVANCE(377); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 548: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(112); + if (lookahead == 's') ADVANCE(540); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 549: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(696); + if (lookahead == 's') ADVANCE(570); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 550: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(700); + if (lookahead == 's') ADVANCE(539); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 551: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(350); + if (lookahead == 's') ADVANCE(575); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 552: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(592); + if (lookahead == 's') ADVANCE(384); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 553: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(362); + if (lookahead == 's') ADVANCE(541); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 554: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(593); + if (lookahead == 's') ADVANCE(385); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 555: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(372); + if (lookahead == 's') ADVANCE(565); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 556: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(382); + if (lookahead == 's') ADVANCE(387); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 557: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(369); + if (lookahead == 's') ADVANCE(542); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 558: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(294); + if (lookahead == 's') ADVANCE(582); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 559: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(356); + if (lookahead == 's') ADVANCE(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 560: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(371); + if (lookahead == 's') ADVANCE(586); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 561: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(276); + if (lookahead == 's') ADVANCE(314); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 562: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(301); + if (lookahead == 's') ADVANCE(401); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 563: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(213); + if (lookahead == 's') ADVANCE(335); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 564: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(217); + if (lookahead == 's') ADVANCE(626); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 565: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(385); + if (lookahead == 's') ADVANCE(402); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 566: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(388); + if (lookahead == 's') ADVANCE(343); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 567: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(390); + if (lookahead == 's') ADVANCE(404); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 568: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(391); + if (lookahead == 's') ADVANCE(566); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 569: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 't') ADVANCE(329); + if (lookahead == 's') ADVANCE(358); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 570: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(551); + if (lookahead == 't') ADVANCE(113); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 571: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(257); + if (lookahead == 't') ADVANCE(738); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 572: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(308); + if (lookahead == 't') ADVANCE(148); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 573: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(380); + if (lookahead == 't') ADVANCE(142); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 574: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(519); + if (lookahead == 't') ADVANCE(160); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 575: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(521); + if (lookahead == 't') ADVANCE(734); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 576: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(523); + if (lookahead == 't') ADVANCE(117); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 577: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(281); + if (lookahead == 't') ADVANCE(736); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 578: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(559); + if (lookahead == 't') ADVANCE(173); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 579: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(317); + if (lookahead == 't') ADVANCE(165); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 580: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(229); + if (lookahead == 't') ADVANCE(161); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 581: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(230); + if (lookahead == 't') ADVANCE(143); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 582: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'u') ADVANCE(443); + if (lookahead == 't') ADVANCE(149); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 583: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(146); + if (lookahead == 't') ADVANCE(739); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 584: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(147); + if (lookahead == 't') ADVANCE(737); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 585: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(458); + if (lookahead == 't') ADVANCE(118); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 586: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(274); + if (lookahead == 't') ADVANCE(735); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 587: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'v') ADVANCE(331); + if (lookahead == 't') ADVANCE(376); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 588: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(384); + if (lookahead == 't') ADVANCE(628); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 589: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(366); + if (lookahead == 't') ADVANCE(388); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 590: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'w') ADVANCE(392); + if (lookahead == 't') ADVANCE(400); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 591: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(106); + if (lookahead == 't') ADVANCE(631); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 592: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(138); + if (lookahead == 't') ADVANCE(407); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 593: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(139); + if (lookahead == 't') ADVANCE(394); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 594: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(401); + if (lookahead == 't') ADVANCE(329); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 595: ACCEPT_TOKEN(aux_sym__custom_token2); - if (lookahead == 'y') ADVANCE(407); + if (lookahead == 't') ADVANCE(382); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 596: ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(396); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(596); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 597: ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(302); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); case 598: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'I') ADVANCE(624); - if (lookahead == 'O') ADVANCE(642); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(326); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 599: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'O') ADVANCE(642); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(233); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 600: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(625); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(238); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 601: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'a') ADVANCE(674); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(410); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 602: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'b') ADVANCE(601); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(413); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 603: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(626); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(415); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 604: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(673); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(416); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 605: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'c') ADVANCE(609); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 't') ADVANCE(355); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 606: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(680); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(587); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 607: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(599); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(281); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 608: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'd') ADVANCE(676); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(333); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 609: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(680); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(405); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 610: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(636); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(552); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 611: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(604); - if (lookahead == 'w') ADVANCE(632); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(554); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 612: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(643); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(556); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 613: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(667); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(307); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 614: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(653); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(595); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 615: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(660); - if (lookahead == 'h') ADVANCE(651); - if (lookahead == 'r') ADVANCE(622); - if (lookahead == 'u') ADVANCE(664); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(344); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 616: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(644); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(252); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 617: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(655); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(253); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 618: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(658); - if (lookahead == 'o') ADVANCE(635); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'u') ADVANCE(475); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 619: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(645); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'v') ADVANCE(152); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 620: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(668); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'v') ADVANCE(153); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 621: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(669); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'v') ADVANCE(492); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 622: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'e') ADVANCE(654); - if (lookahead == 'o') ADVANCE(608); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'v') ADVANCE(300); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 623: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(680); - if (lookahead == 's') ADVANCE(666); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'v') ADVANCE(357); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 624: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'f') ADVANCE(680); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'w') ADVANCE(409); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 625: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'g') ADVANCE(640); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'w') ADVANCE(391); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 626: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(680); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'w') ADVANCE(417); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 627: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(598); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(112); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 628: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'h') ADVANCE(633); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(144); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 629: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(650); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(162); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 630: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(638); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(163); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 631: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(667); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(145); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 632: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(672); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(426); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 633: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'i') ADVANCE(634); + ACCEPT_TOKEN(aux_sym__custom_token2); + if (lookahead == 'y') ADVANCE(432); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 634: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(609); + ACCEPT_TOKEN(aux_sym__custom_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 635: - ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(669); + ACCEPT_TOKEN(aux_sym__custom_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); END_STATE(); case 636: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(617); + if (lookahead == 'I') ADVANCE(663); + if (lookahead == 'O') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 637: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'l') ADVANCE(620); + if (lookahead == 'O') ADVANCE(681); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 638: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(680); + if (lookahead == 'a') ADVANCE(664); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 639: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(652); - if (lookahead == 'n') ADVANCE(678); - if (lookahead == 'r') ADVANCE(657); + if (lookahead == 'a') ADVANCE(680); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 640: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'm') ADVANCE(619); + if (lookahead == 'a') ADVANCE(713); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 641: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(680); + if (lookahead == 'b') ADVANCE(640); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 642: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(605); + if (lookahead == 'c') ADVANCE(665); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 643: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(607); + if (lookahead == 'c') ADVANCE(712); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 644: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(606); + if (lookahead == 'c') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 645: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(669); + if (lookahead == 'd') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 646: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'n') ADVANCE(637); + if (lookahead == 'd') ADVANCE(637); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 647: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(656); - if (lookahead == 'r') ADVANCE(600); + if (lookahead == 'd') ADVANCE(715); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 648: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(656); + if (lookahead == 'e') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 649: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(661); + if (lookahead == 'e') ADVANCE(675); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 650: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'o') ADVANCE(641); + if (lookahead == 'e') ADVANCE(643); + if (lookahead == 'w') ADVANCE(671); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 651: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(680); + if (lookahead == 'e') ADVANCE(706); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 652: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(670); + if (lookahead == 'e') ADVANCE(692); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 653: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(612); + if (lookahead == 'e') ADVANCE(699); + if (lookahead == 'h') ADVANCE(690); + if (lookahead == 'r') ADVANCE(661); + if (lookahead == 'u') ADVANCE(703); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 654: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(616); + if (lookahead == 'e') ADVANCE(682); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 655: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'p') ADVANCE(649); + if (lookahead == 'e') ADVANCE(694); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 656: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(680); + if (lookahead == 'e') ADVANCE(697); + if (lookahead == 'o') ADVANCE(674); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 657: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(648); + if (lookahead == 'e') ADVANCE(683); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 658: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(602); + if (lookahead == 'e') ADVANCE(707); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 659: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(614); - if (lookahead == 'u') ADVANCE(663); + if (lookahead == 'e') ADVANCE(708); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 660: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(665); + if (lookahead == 'e') ADVANCE(684); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 661: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'r') ADVANCE(669); + if (lookahead == 'e') ADVANCE(693); + if (lookahead == 'o') ADVANCE(647); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 662: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(680); + if (lookahead == 'f') ADVANCE(719); + if (lookahead == 's') ADVANCE(705); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 663: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(627); + if (lookahead == 'f') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 664: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(626); + if (lookahead == 'g') ADVANCE(679); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 665: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(631); + if (lookahead == 'h') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 666: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(621); + if (lookahead == 'h') ADVANCE(636); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 667: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(669); + if (lookahead == 'h') ADVANCE(672); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 668: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 's') ADVANCE(662); + if (lookahead == 'i') ADVANCE(688); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 669: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(680); + if (lookahead == 'i') ADVANCE(677); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 670: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(679); + if (lookahead == 'i') ADVANCE(706); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 671: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(626); + if (lookahead == 'i') ADVANCE(711); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 672: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(603); + if (lookahead == 'i') ADVANCE(673); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 673: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(629); + if (lookahead == 'l') ADVANCE(648); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 674: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 't') ADVANCE(630); + if (lookahead == 'l') ADVANCE(708); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 675: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(671); + if (lookahead == 'l') ADVANCE(655); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 676: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(604); + if (lookahead == 'l') ADVANCE(658); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 677: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'u') ADVANCE(613); + if (lookahead == 'm') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 678: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'v') ADVANCE(680); + if (lookahead == 'm') ADVANCE(691); + if (lookahead == 'n') ADVANCE(717); + if (lookahead == 'r') ADVANCE(696); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 679: ACCEPT_TOKEN(aux_sym__custom_token3); - if (lookahead == 'y') ADVANCE(680); + if (lookahead == 'm') ADVANCE(660); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 680: ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'n') ADVANCE(719); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(680); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 681: - ACCEPT_TOKEN(anon_sym_ATswitch); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'n') ADVANCE(644); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 682: - ACCEPT_TOKEN(anon_sym_ATdefault); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'n') ADVANCE(646); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 683: - ACCEPT_TOKEN(anon_sym_ATendswitch); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'n') ADVANCE(645); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 684: - ACCEPT_TOKEN(anon_sym_ATcase); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'n') ADVANCE(708); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 685: - ACCEPT_TOKEN(anon_sym_ATbreak); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'n') ADVANCE(676); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 686: - ACCEPT_TOKEN(aux_sym_loop_operator_token1); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'o') ADVANCE(695); + if (lookahead == 'r') ADVANCE(638); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 687: - ACCEPT_TOKEN(anon_sym_ATfor); - if (lookahead == 'e') ADVANCE(201); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'o') ADVANCE(695); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 688: - ACCEPT_TOKEN(anon_sym_ATendfor); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'o') ADVANCE(680); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 689: - ACCEPT_TOKEN(anon_sym_ATforeach); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'o') ADVANCE(700); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 690: - ACCEPT_TOKEN(anon_sym_ATendforeach); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'p') ADVANCE(719); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 691: - ACCEPT_TOKEN(anon_sym_ATforelse); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'p') ADVANCE(709); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 692: - ACCEPT_TOKEN(anon_sym_ATendforelse); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'p') ADVANCE(654); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 693: - ACCEPT_TOKEN(anon_sym_ATwhile); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'p') ADVANCE(657); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 694: - ACCEPT_TOKEN(anon_sym_ATendwhile); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'p') ADVANCE(689); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 695: - ACCEPT_TOKEN(anon_sym_ATpersist); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'r') ADVANCE(719); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 696: - ACCEPT_TOKEN(anon_sym_ATendpersist); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'r') ADVANCE(687); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 697: - ACCEPT_TOKEN(anon_sym_ATteleport); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'r') ADVANCE(641); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 698: - ACCEPT_TOKEN(anon_sym_ATendteleport); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'r') ADVANCE(652); + if (lookahead == 'u') ADVANCE(702); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 699: - ACCEPT_TOKEN(anon_sym_ATvolt); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'r') ADVANCE(704); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 700: - ACCEPT_TOKEN(anon_sym_ATendvolt); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'r') ADVANCE(708); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 701: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 's') ADVANCE(719); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 702: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 's') ADVANCE(666); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); END_STATE(); case 703: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 's') ADVANCE(665); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 704: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 's') ADVANCE(670); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 705: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 's') ADVANCE(659); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 706: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 's') ADVANCE(708); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 707: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 's') ADVANCE(701); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 708: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 't') ADVANCE(719); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 709: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 't') ADVANCE(718); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 710: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 't') ADVANCE(665); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 711: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 't') ADVANCE(642); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 712: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 't') ADVANCE(668); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 713: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 't') ADVANCE(669); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 714: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'u') ADVANCE(710); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 715: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'u') ADVANCE(643); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 716: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'u') ADVANCE(651); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 717: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'v') ADVANCE(719); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 718: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (lookahead == 'y') ADVANCE(719); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 719: + ACCEPT_TOKEN(aux_sym__custom_token3); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(719); + END_STATE(); + case 720: + ACCEPT_TOKEN(anon_sym_ATswitch); + END_STATE(); + case 721: + ACCEPT_TOKEN(anon_sym_ATdefault); + END_STATE(); + case 722: + ACCEPT_TOKEN(anon_sym_ATendswitch); + END_STATE(); + case 723: + ACCEPT_TOKEN(anon_sym_ATcase); + END_STATE(); + case 724: + ACCEPT_TOKEN(anon_sym_ATbreak); + END_STATE(); + case 725: + ACCEPT_TOKEN(aux_sym_loop_operator_token1); + END_STATE(); + case 726: + ACCEPT_TOKEN(anon_sym_ATfor); + if (lookahead == 'e') ADVANCE(221); + END_STATE(); + case 727: + ACCEPT_TOKEN(anon_sym_ATendfor); + END_STATE(); + case 728: + ACCEPT_TOKEN(anon_sym_ATforeach); + END_STATE(); + case 729: + ACCEPT_TOKEN(anon_sym_ATendforeach); + END_STATE(); + case 730: + ACCEPT_TOKEN(anon_sym_ATforelse); + END_STATE(); + case 731: + ACCEPT_TOKEN(anon_sym_ATendforelse); + END_STATE(); + case 732: + ACCEPT_TOKEN(anon_sym_ATwhile); + END_STATE(); + case 733: + ACCEPT_TOKEN(anon_sym_ATendwhile); + END_STATE(); + case 734: + ACCEPT_TOKEN(anon_sym_ATpersist); + END_STATE(); + case 735: + ACCEPT_TOKEN(anon_sym_ATendpersist); + END_STATE(); + case 736: + ACCEPT_TOKEN(anon_sym_ATteleport); + END_STATE(); + case 737: + ACCEPT_TOKEN(anon_sym_ATendteleport); + END_STATE(); + case 738: + ACCEPT_TOKEN(anon_sym_ATvolt); + END_STATE(); + case 739: + ACCEPT_TOKEN(anon_sym_ATendvolt); + END_STATE(); + case 740: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 741: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 742: ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == ')') ADVANCE(702); - if (lookahead == '{') ADVANCE(707); + if (lookahead == ')') ADVANCE(741); + if (lookahead == '{') ADVANCE(746); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(703); + lookahead == ' ') ADVANCE(742); if (lookahead != 0 && - lookahead != '(') ADVANCE(708); + lookahead != '(') ADVANCE(747); END_STATE(); - case 704: + case 743: ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '-') ADVANCE(97); + if (lookahead == '-') ADVANCE(103); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(708); + lookahead != ')') ADVANCE(747); END_STATE(); - case 705: + case 744: ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '-') ADVANCE(704); + if (lookahead == '-') ADVANCE(743); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(708); + lookahead != ')') ADVANCE(747); END_STATE(); - case 706: + case 745: ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '{') ADVANCE(707); + if (lookahead == '{') ADVANCE(746); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(706); + lookahead == ' ') ADVANCE(745); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(708); + lookahead != ')') ADVANCE(747); END_STATE(); - case 707: + case 746: ACCEPT_TOKEN(aux_sym_parameter_token1); - if (lookahead == '{') ADVANCE(705); + if (lookahead == '{') ADVANCE(744); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(708); + lookahead != ')') ADVANCE(747); END_STATE(); - case 708: + case 747: ACCEPT_TOKEN(aux_sym_parameter_token1); if (lookahead != 0 && lookahead != '(' && - lookahead != ')') ADVANCE(708); + lookahead != ')') ADVANCE(747); END_STATE(); - case 709: + case 748: ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); - case 710: + case 749: ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); - case 711: + case 750: ACCEPT_TOKEN(aux_sym_text_token1); END_STATE(); - case 712: + case 751: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'd') ADVANCE(715); + if (lookahead == 'd') ADVANCE(754); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(756); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 713: + case 752: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'h') ADVANCE(716); + if (lookahead == 'h') ADVANCE(755); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(756); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 714: + case 753: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'n') ADVANCE(712); + if (lookahead == 'n') ADVANCE(751); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(756); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 715: + case 754: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'p') ADVANCE(713); + if (lookahead == 'p') ADVANCE(752); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(756); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 716: + case 755: ACCEPT_TOKEN(aux_sym_text_token1); - if (lookahead == 'p') ADVANCE(105); + if (lookahead == 'p') ADVANCE(111); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(756); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 717: + case 756: ACCEPT_TOKEN(aux_sym_text_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(756); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 718: + case 757: ACCEPT_TOKEN(aux_sym_text_token2); END_STATE(); - case 719: + case 758: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '!') ADVANCE(90); + if (lookahead == '!') ADVANCE(96); END_STATE(); - case 720: + case 759: ACCEPT_TOKEN(aux_sym_text_token2); if (lookahead == '!') ADVANCE(2); - if (lookahead == '{') ADVANCE(100); + if (lookahead == '{') ADVANCE(106); END_STATE(); - case 721: + case 760: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '-') ADVANCE(92); + if (lookahead == '-') ADVANCE(98); END_STATE(); - case 722: + case 761: ACCEPT_TOKEN(aux_sym_text_token2); - 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') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(517); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(175); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 723: + case 762: ACCEPT_TOKEN(aux_sym_text_token2); - 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') || - ('j' <= lookahead && lookahead <= 'z')) ADVANCE(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(517); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(190); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 724: + case 763: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(190); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 725: + case 764: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(177); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 726: + case 765: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'b') ADVANCE(491); - if (lookahead == 'c') ADVANCE(364); - if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(191); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); + END_STATE(); + case 766: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); 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(596); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 727: + case 767: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(192); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 728: + case 768: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(178); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 729: + case 769: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(193); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 730: + case 770: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(179); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 731: + case 771: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(194); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 732: + case 772: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(180); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 733: + case 773: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(195); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 734: + case 774: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(186); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 735: + case 775: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(196); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 736: + case 776: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'b') ADVANCE(491); - if (lookahead == 'c') ADVANCE(364); - if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); 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(596); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 737: + case 777: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(197); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 738: + case 778: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'b') ADVANCE(491); - if (lookahead == 'c') ADVANCE(364); - if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(187); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); + END_STATE(); + case 779: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(198); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); + if (lookahead != 0 && + lookahead != '(' && + lookahead != '-') ADVANCE(750); + END_STATE(); + case 780: + ACCEPT_TOKEN(aux_sym_text_token2); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); 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(596); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 739: + case 781: ACCEPT_TOKEN(aux_sym_text_token2); - 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(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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(204); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 740: + case 782: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'b') ADVANCE(491); - if (lookahead == 'c') ADVANCE(364); - if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); 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(596); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 741: + case 783: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(205); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 742: + case 784: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(184); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 743: + case 785: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(199); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 744: + case 786: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(185); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 745: + case 787: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(200); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 746: + case 788: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(201); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 747: + case 789: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(202); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 748: + case 790: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(203); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 749: + case 791: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(206); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 750: + case 792: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'a') ADVANCE(570); - if (lookahead == 'b') ADVANCE(491); - if (lookahead == 'c') ADVANCE(364); - if (lookahead == 'd') ADVANCE(367); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); 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(596); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 751: + case 793: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(207); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 752: + case 794: ACCEPT_TOKEN(aux_sym_text_token2); - 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(596); + if (lookahead == 'a') ADVANCE(606); + if (lookahead == 'b') ADVANCE(526); + if (lookahead == 'c') ADVANCE(212); + if (lookahead == 'd') ADVANCE(392); + if (lookahead == 'e') ADVANCE(189); + if (lookahead == 'f') ADVANCE(477); + if (lookahead == 'g') ADVANCE(608); + if (lookahead == 'h') ADVANCE(213); + if (lookahead == 'i') ADVANCE(359); + if (lookahead == 'l') ADVANCE(393); + if (lookahead == 'm') ADVANCE(347); + if (lookahead == 'o') ADVANCE(450); + if (lookahead == 'p') ADVANCE(324); + if (lookahead == 'r') ADVANCE(296); + if (lookahead == 's') ADVANCE(297); + if (lookahead == 't') ADVANCE(298); + if (lookahead == 'u') ADVANCE(465); + if (lookahead == 'v') ADVANCE(327); + if (lookahead == 'w') ADVANCE(389); + if (lookahead == 'y') ADVANCE(399); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('j' <= lookahead && lookahead <= 'z')) ADVANCE(634); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 753: + case 795: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == 'e') ADVANCE(714); + if (lookahead == 'e') ADVANCE(753); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(756); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 754: + case 796: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '{') ADVANCE(37); + if (lookahead == '{') ADVANCE(40); END_STATE(); - case 755: + case 797: ACCEPT_TOKEN(aux_sym_text_token2); - if (lookahead == '}') ADVANCE(101); + if (lookahead == '}') ADVANCE(107); END_STATE(); - case 756: + case 798: ACCEPT_TOKEN(aux_sym_text_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(717); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(756); if (lookahead != 0 && lookahead != '(' && - lookahead != '-') ADVANCE(711); + lookahead != '-') ADVANCE(750); END_STATE(); - case 757: + case 799: ACCEPT_TOKEN(aux_sym_text_token3); - if (lookahead == '-') ADVANCE(36); + if (lookahead == '-') ADVANCE(39); if (lookahead != 0 && lookahead != '!' && lookahead != '(' && @@ -12772,7 +14021,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '?' && lookahead != '@' && lookahead != '{' && - lookahead != '}') ADVANCE(757); + lookahead != '}') ADVANCE(799); END_STATE(); default: return false; @@ -12781,7 +14030,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 94}, + [1] = {.lex_state = 100}, [2] = {.lex_state = 5}, [3] = {.lex_state = 5}, [4] = {.lex_state = 5}, @@ -12840,1633 +14089,1633 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [57] = {.lex_state = 5}, [58] = {.lex_state = 5}, [59] = {.lex_state = 5}, - [60] = {.lex_state = 58}, - [61] = {.lex_state = 58}, - [62] = {.lex_state = 61}, - [63] = {.lex_state = 62}, - [64] = {.lex_state = 62}, - [65] = {.lex_state = 62}, - [66] = {.lex_state = 63}, - [67] = {.lex_state = 62}, - [68] = {.lex_state = 64}, - [69] = {.lex_state = 62}, - [70] = {.lex_state = 62}, - [71] = {.lex_state = 64}, - [72] = {.lex_state = 62}, - [73] = {.lex_state = 65}, - [74] = {.lex_state = 66}, - [75] = {.lex_state = 62}, - [76] = {.lex_state = 61}, - [77] = {.lex_state = 67}, - [78] = {.lex_state = 62}, - [79] = {.lex_state = 68}, + [60] = {.lex_state = 5}, + [61] = {.lex_state = 5}, + [62] = {.lex_state = 5}, + [63] = {.lex_state = 5}, + [64] = {.lex_state = 5}, + [65] = {.lex_state = 5}, + [66] = {.lex_state = 61}, + [67] = {.lex_state = 63}, + [68] = {.lex_state = 63}, + [69] = {.lex_state = 64}, + [70] = {.lex_state = 65}, + [71] = {.lex_state = 65}, + [72] = {.lex_state = 66}, + [73] = {.lex_state = 74}, + [74] = {.lex_state = 67}, + [75] = {.lex_state = 67}, + [76] = {.lex_state = 75}, + [77] = {.lex_state = 66}, + [78] = {.lex_state = 65}, + [79] = {.lex_state = 67}, [80] = {.lex_state = 63}, - [81] = {.lex_state = 68}, - [82] = {.lex_state = 62}, - [83] = {.lex_state = 68}, - [84] = {.lex_state = 62}, - [85] = {.lex_state = 62}, - [86] = {.lex_state = 62}, - [87] = {.lex_state = 64}, - [88] = {.lex_state = 62}, + [81] = {.lex_state = 63}, + [82] = {.lex_state = 68}, + [83] = {.lex_state = 63}, + [84] = {.lex_state = 69}, + [85] = {.lex_state = 63}, + [86] = {.lex_state = 68}, + [87] = {.lex_state = 63}, + [88] = {.lex_state = 68}, [89] = {.lex_state = 69}, - [90] = {.lex_state = 66}, - [91] = {.lex_state = 62}, - [92] = {.lex_state = 62}, - [93] = {.lex_state = 65}, - [94] = {.lex_state = 65}, - [95] = {.lex_state = 69}, - [96] = {.lex_state = 61}, - [97] = {.lex_state = 62}, - [98] = {.lex_state = 69}, - [99] = {.lex_state = 62}, - [100] = {.lex_state = 62}, - [101] = {.lex_state = 63}, - [102] = {.lex_state = 62}, - [103] = {.lex_state = 62}, - [104] = {.lex_state = 67}, - [105] = {.lex_state = 62}, - [106] = {.lex_state = 66}, - [107] = {.lex_state = 62}, - [108] = {.lex_state = 62}, - [109] = {.lex_state = 62}, - [110] = {.lex_state = 58}, - [111] = {.lex_state = 62}, - [112] = {.lex_state = 67}, - [113] = {.lex_state = 62}, - [114] = {.lex_state = 62}, - [115] = {.lex_state = 62}, - [116] = {.lex_state = 62}, - [117] = {.lex_state = 42}, - [118] = {.lex_state = 42}, - [119] = {.lex_state = 42}, - [120] = {.lex_state = 42}, - [121] = {.lex_state = 42}, - [122] = {.lex_state = 42}, - [123] = {.lex_state = 42}, - [124] = {.lex_state = 42}, - [125] = {.lex_state = 42}, - [126] = {.lex_state = 42}, - [127] = {.lex_state = 42}, - [128] = {.lex_state = 42}, - [129] = {.lex_state = 42}, - [130] = {.lex_state = 42}, - [131] = {.lex_state = 42}, - [132] = {.lex_state = 42}, - [133] = {.lex_state = 42}, - [134] = {.lex_state = 42}, - [135] = {.lex_state = 42}, - [136] = {.lex_state = 42}, - [137] = {.lex_state = 42}, - [138] = {.lex_state = 42}, - [139] = {.lex_state = 42}, - [140] = {.lex_state = 42}, - [141] = {.lex_state = 42}, - [142] = {.lex_state = 42}, - [143] = {.lex_state = 42}, - [144] = {.lex_state = 42}, - [145] = {.lex_state = 42}, - [146] = {.lex_state = 42}, - [147] = {.lex_state = 42}, - [148] = {.lex_state = 41}, - [149] = {.lex_state = 41}, - [150] = {.lex_state = 44}, - [151] = {.lex_state = 44}, - [152] = {.lex_state = 44}, - [153] = {.lex_state = 44}, + [90] = {.lex_state = 63}, + [91] = {.lex_state = 66}, + [92] = {.lex_state = 70}, + [93] = {.lex_state = 63}, + [94] = {.lex_state = 75}, + [95] = {.lex_state = 63}, + [96] = {.lex_state = 71}, + [97] = {.lex_state = 72}, + [98] = {.lex_state = 75}, + [99] = {.lex_state = 63}, + [100] = {.lex_state = 63}, + [101] = {.lex_state = 64}, + [102] = {.lex_state = 63}, + [103] = {.lex_state = 63}, + [104] = {.lex_state = 63}, + [105] = {.lex_state = 63}, + [106] = {.lex_state = 63}, + [107] = {.lex_state = 63}, + [108] = {.lex_state = 63}, + [109] = {.lex_state = 71}, + [110] = {.lex_state = 63}, + [111] = {.lex_state = 74}, + [112] = {.lex_state = 63}, + [113] = {.lex_state = 63}, + [114] = {.lex_state = 63}, + [115] = {.lex_state = 72}, + [116] = {.lex_state = 64}, + [117] = {.lex_state = 63}, + [118] = {.lex_state = 63}, + [119] = {.lex_state = 63}, + [120] = {.lex_state = 63}, + [121] = {.lex_state = 61}, + [122] = {.lex_state = 63}, + [123] = {.lex_state = 70}, + [124] = {.lex_state = 63}, + [125] = {.lex_state = 63}, + [126] = {.lex_state = 70}, + [127] = {.lex_state = 74}, + [128] = {.lex_state = 61}, + [129] = {.lex_state = 71}, + [130] = {.lex_state = 63}, + [131] = {.lex_state = 63}, + [132] = {.lex_state = 72}, + [133] = {.lex_state = 69}, + [134] = {.lex_state = 63}, + [135] = {.lex_state = 45}, + [136] = {.lex_state = 45}, + [137] = {.lex_state = 45}, + [138] = {.lex_state = 45}, + [139] = {.lex_state = 45}, + [140] = {.lex_state = 45}, + [141] = {.lex_state = 45}, + [142] = {.lex_state = 45}, + [143] = {.lex_state = 45}, + [144] = {.lex_state = 45}, + [145] = {.lex_state = 45}, + [146] = {.lex_state = 45}, + [147] = {.lex_state = 45}, + [148] = {.lex_state = 45}, + [149] = {.lex_state = 45}, + [150] = {.lex_state = 45}, + [151] = {.lex_state = 45}, + [152] = {.lex_state = 45}, + [153] = {.lex_state = 45}, [154] = {.lex_state = 45}, - [155] = {.lex_state = 41}, - [156] = {.lex_state = 44}, - [157] = {.lex_state = 44}, - [158] = {.lex_state = 44}, - [159] = {.lex_state = 41}, - [160] = {.lex_state = 44}, + [155] = {.lex_state = 45}, + [156] = {.lex_state = 45}, + [157] = {.lex_state = 45}, + [158] = {.lex_state = 45}, + [159] = {.lex_state = 45}, + [160] = {.lex_state = 45}, [161] = {.lex_state = 45}, - [162] = {.lex_state = 44}, - [163] = {.lex_state = 44}, - [164] = {.lex_state = 44}, - [165] = {.lex_state = 44}, - [166] = {.lex_state = 41}, + [162] = {.lex_state = 45}, + [163] = {.lex_state = 45}, + [164] = {.lex_state = 45}, + [165] = {.lex_state = 45}, + [166] = {.lex_state = 45}, [167] = {.lex_state = 45}, [168] = {.lex_state = 45}, - [169] = {.lex_state = 45}, - [170] = {.lex_state = 41}, - [171] = {.lex_state = 44}, + [169] = {.lex_state = 44}, + [170] = {.lex_state = 47}, + [171] = {.lex_state = 48}, [172] = {.lex_state = 44}, - [173] = {.lex_state = 41}, + [173] = {.lex_state = 47}, [174] = {.lex_state = 44}, - [175] = {.lex_state = 45}, - [176] = {.lex_state = 46}, - [177] = {.lex_state = 44}, - [178] = {.lex_state = 45}, - [179] = {.lex_state = 41}, - [180] = {.lex_state = 47}, + [175] = {.lex_state = 47}, + [176] = {.lex_state = 48}, + [177] = {.lex_state = 47}, + [178] = {.lex_state = 48}, + [179] = {.lex_state = 44}, + [180] = {.lex_state = 44}, [181] = {.lex_state = 44}, [182] = {.lex_state = 44}, [183] = {.lex_state = 44}, [184] = {.lex_state = 44}, - [185] = {.lex_state = 41}, - [186] = {.lex_state = 45}, - [187] = {.lex_state = 45}, - [188] = {.lex_state = 41}, - [189] = {.lex_state = 41}, - [190] = {.lex_state = 45}, - [191] = {.lex_state = 41}, - [192] = {.lex_state = 44}, - [193] = {.lex_state = 44}, + [185] = {.lex_state = 44}, + [186] = {.lex_state = 48}, + [187] = {.lex_state = 47}, + [188] = {.lex_state = 48}, + [189] = {.lex_state = 44}, + [190] = {.lex_state = 47}, + [191] = {.lex_state = 48}, + [192] = {.lex_state = 47}, + [193] = {.lex_state = 48}, [194] = {.lex_state = 44}, - [195] = {.lex_state = 48}, + [195] = {.lex_state = 44}, [196] = {.lex_state = 44}, - [197] = {.lex_state = 45}, - [198] = {.lex_state = 41}, - [199] = {.lex_state = 45}, - [200] = {.lex_state = 43}, + [197] = {.lex_state = 44}, + [198] = {.lex_state = 44}, + [199] = {.lex_state = 44}, + [200] = {.lex_state = 44}, [201] = {.lex_state = 44}, - [202] = {.lex_state = 43}, - [203] = {.lex_state = 41}, - [204] = {.lex_state = 45}, - [205] = {.lex_state = 44}, - [206] = {.lex_state = 44}, + [202] = {.lex_state = 47}, + [203] = {.lex_state = 48}, + [204] = {.lex_state = 49}, + [205] = {.lex_state = 47}, + [206] = {.lex_state = 48}, [207] = {.lex_state = 44}, - [208] = {.lex_state = 44}, - [209] = {.lex_state = 44}, + [208] = {.lex_state = 50}, + [209] = {.lex_state = 51}, [210] = {.lex_state = 44}, - [211] = {.lex_state = 45}, + [211] = {.lex_state = 46}, [212] = {.lex_state = 44}, [213] = {.lex_state = 44}, - [214] = {.lex_state = 45}, - [215] = {.lex_state = 41}, - [216] = {.lex_state = 48}, + [214] = {.lex_state = 44}, + [215] = {.lex_state = 44}, + [216] = {.lex_state = 44}, [217] = {.lex_state = 44}, - [218] = {.lex_state = 45}, - [219] = {.lex_state = 41}, - [220] = {.lex_state = 41}, - [221] = {.lex_state = 44}, - [222] = {.lex_state = 44}, - [223] = {.lex_state = 44}, - [224] = {.lex_state = 44}, - [225] = {.lex_state = 44}, - [226] = {.lex_state = 41}, - [227] = {.lex_state = 41}, - [228] = {.lex_state = 45}, - [229] = {.lex_state = 45}, - [230] = {.lex_state = 41}, + [218] = {.lex_state = 47}, + [219] = {.lex_state = 47}, + [220] = {.lex_state = 48}, + [221] = {.lex_state = 47}, + [222] = {.lex_state = 48}, + [223] = {.lex_state = 47}, + [224] = {.lex_state = 47}, + [225] = {.lex_state = 49}, + [226] = {.lex_state = 48}, + [227] = {.lex_state = 44}, + [228] = {.lex_state = 47}, + [229] = {.lex_state = 44}, + [230] = {.lex_state = 44}, [231] = {.lex_state = 44}, - [232] = {.lex_state = 41}, - [233] = {.lex_state = 45}, - [234] = {.lex_state = 44}, - [235] = {.lex_state = 45}, + [232] = {.lex_state = 48}, + [233] = {.lex_state = 44}, + [234] = {.lex_state = 47}, + [235] = {.lex_state = 48}, [236] = {.lex_state = 44}, [237] = {.lex_state = 44}, [238] = {.lex_state = 44}, - [239] = {.lex_state = 44}, - [240] = {.lex_state = 45}, - [241] = {.lex_state = 41}, - [242] = {.lex_state = 41}, + [239] = {.lex_state = 47}, + [240] = {.lex_state = 46}, + [241] = {.lex_state = 48}, + [242] = {.lex_state = 44}, [243] = {.lex_state = 44}, [244] = {.lex_state = 44}, [245] = {.lex_state = 44}, [246] = {.lex_state = 44}, - [247] = {.lex_state = 45}, - [248] = {.lex_state = 41}, - [249] = {.lex_state = 44}, - [250] = {.lex_state = 45}, - [251] = {.lex_state = 94}, - [252] = {.lex_state = 41}, - [253] = {.lex_state = 44}, - [254] = {.lex_state = 44}, - [255] = {.lex_state = 49}, - [256] = {.lex_state = 44}, + [247] = {.lex_state = 44}, + [248] = {.lex_state = 48}, + [249] = {.lex_state = 47}, + [250] = {.lex_state = 48}, + [251] = {.lex_state = 47}, + [252] = {.lex_state = 48}, + [253] = {.lex_state = 47}, + [254] = {.lex_state = 48}, + [255] = {.lex_state = 44}, + [256] = {.lex_state = 52}, [257] = {.lex_state = 44}, [258] = {.lex_state = 44}, - [259] = {.lex_state = 50}, - [260] = {.lex_state = 41}, - [261] = {.lex_state = 44}, - [262] = {.lex_state = 44}, - [263] = {.lex_state = 41}, - [264] = {.lex_state = 45}, - [265] = {.lex_state = 45}, - [266] = {.lex_state = 41}, - [267] = {.lex_state = 41}, - [268] = {.lex_state = 45}, + [259] = {.lex_state = 52}, + [260] = {.lex_state = 44}, + [261] = {.lex_state = 47}, + [262] = {.lex_state = 48}, + [263] = {.lex_state = 44}, + [264] = {.lex_state = 47}, + [265] = {.lex_state = 48}, + [266] = {.lex_state = 44}, + [267] = {.lex_state = 44}, + [268] = {.lex_state = 44}, [269] = {.lex_state = 44}, - [270] = {.lex_state = 44}, - [271] = {.lex_state = 50}, + [270] = {.lex_state = 53}, + [271] = {.lex_state = 54}, [272] = {.lex_state = 44}, - [273] = {.lex_state = 45}, - [274] = {.lex_state = 44}, - [275] = {.lex_state = 41}, - [276] = {.lex_state = 41}, - [277] = {.lex_state = 51}, - [278] = {.lex_state = 44}, + [273] = {.lex_state = 48}, + [274] = {.lex_state = 47}, + [275] = {.lex_state = 47}, + [276] = {.lex_state = 48}, + [277] = {.lex_state = 47}, + [278] = {.lex_state = 48}, [279] = {.lex_state = 44}, [280] = {.lex_state = 44}, [281] = {.lex_state = 44}, [282] = {.lex_state = 44}, - [283] = {.lex_state = 41}, - [284] = {.lex_state = 44}, - [285] = {.lex_state = 44}, - [286] = {.lex_state = 45}, - [287] = {.lex_state = 41}, - [288] = {.lex_state = 45}, - [289] = {.lex_state = 45}, - [290] = {.lex_state = 41}, - [291] = {.lex_state = 45}, - [292] = {.lex_state = 51}, + [283] = {.lex_state = 48}, + [284] = {.lex_state = 47}, + [285] = {.lex_state = 100}, + [286] = {.lex_state = 44}, + [287] = {.lex_state = 47}, + [288] = {.lex_state = 48}, + [289] = {.lex_state = 55}, + [290] = {.lex_state = 47}, + [291] = {.lex_state = 48}, + [292] = {.lex_state = 44}, [293] = {.lex_state = 44}, - [294] = {.lex_state = 44}, - [295] = {.lex_state = 47}, - [296] = {.lex_state = 44}, + [294] = {.lex_state = 56}, + [295] = {.lex_state = 44}, + [296] = {.lex_state = 50}, [297] = {.lex_state = 44}, - [298] = {.lex_state = 45}, - [299] = {.lex_state = 41}, - [300] = {.lex_state = 45}, - [301] = {.lex_state = 41}, - [302] = {.lex_state = 41}, - [303] = {.lex_state = 45}, - [304] = {.lex_state = 45}, - [305] = {.lex_state = 45}, - [306] = {.lex_state = 44}, - [307] = {.lex_state = 41}, - [308] = {.lex_state = 44}, - [309] = {.lex_state = 47}, + [298] = {.lex_state = 44}, + [299] = {.lex_state = 44}, + [300] = {.lex_state = 44}, + [301] = {.lex_state = 44}, + [302] = {.lex_state = 48}, + [303] = {.lex_state = 47}, + [304] = {.lex_state = 55}, + [305] = {.lex_state = 47}, + [306] = {.lex_state = 48}, + [307] = {.lex_state = 52}, + [308] = {.lex_state = 47}, + [309] = {.lex_state = 48}, [310] = {.lex_state = 44}, - [311] = {.lex_state = 41}, + [311] = {.lex_state = 44}, [312] = {.lex_state = 44}, - [313] = {.lex_state = 45}, - [314] = {.lex_state = 44}, - [315] = {.lex_state = 44}, + [313] = {.lex_state = 44}, + [314] = {.lex_state = 48}, + [315] = {.lex_state = 47}, [316] = {.lex_state = 44}, - [317] = {.lex_state = 44}, - [318] = {.lex_state = 45}, - [319] = {.lex_state = 41}, - [320] = {.lex_state = 44}, - [321] = {.lex_state = 45}, - [322] = {.lex_state = 45}, - [323] = {.lex_state = 41}, - [324] = {.lex_state = 41}, + [317] = {.lex_state = 47}, + [318] = {.lex_state = 44}, + [319] = {.lex_state = 50}, + [320] = {.lex_state = 47}, + [321] = {.lex_state = 44}, + [322] = {.lex_state = 48}, + [323] = {.lex_state = 47}, + [324] = {.lex_state = 48}, [325] = {.lex_state = 44}, [326] = {.lex_state = 44}, [327] = {.lex_state = 44}, [328] = {.lex_state = 44}, - [329] = {.lex_state = 45}, - [330] = {.lex_state = 52}, - [331] = {.lex_state = 53}, + [329] = {.lex_state = 48}, + [330] = {.lex_state = 47}, + [331] = {.lex_state = 46}, [332] = {.lex_state = 44}, - [333] = {.lex_state = 54}, - [334] = {.lex_state = 46}, - [335] = {.lex_state = 46}, - [336] = {.lex_state = 50}, + [333] = {.lex_state = 47}, + [334] = {.lex_state = 48}, + [335] = {.lex_state = 47}, + [336] = {.lex_state = 48}, [337] = {.lex_state = 44}, [338] = {.lex_state = 44}, [339] = {.lex_state = 44}, - [340] = {.lex_state = 55}, - [341] = {.lex_state = 49}, - [342] = {.lex_state = 49}, - [343] = {.lex_state = 44}, - [344] = {.lex_state = 43}, - [345] = {.lex_state = 53}, - [346] = {.lex_state = 44}, - [347] = {.lex_state = 45}, - [348] = {.lex_state = 52}, - [349] = {.lex_state = 60}, - [350] = {.lex_state = 45}, - [351] = {.lex_state = 45}, - [352] = {.lex_state = 45}, - [353] = {.lex_state = 54}, - [354] = {.lex_state = 44}, - [355] = {.lex_state = 54}, - [356] = {.lex_state = 41}, - [357] = {.lex_state = 56}, - [358] = {.lex_state = 44}, - [359] = {.lex_state = 41}, - [360] = {.lex_state = 44}, - [361] = {.lex_state = 55}, - [362] = {.lex_state = 52}, - [363] = {.lex_state = 44}, - [364] = {.lex_state = 55}, - [365] = {.lex_state = 48}, + [340] = {.lex_state = 44}, + [341] = {.lex_state = 48}, + [342] = {.lex_state = 44}, + [343] = {.lex_state = 48}, + [344] = {.lex_state = 47}, + [345] = {.lex_state = 48}, + [346] = {.lex_state = 47}, + [347] = {.lex_state = 47}, + [348] = {.lex_state = 48}, + [349] = {.lex_state = 44}, + [350] = {.lex_state = 44}, + [351] = {.lex_state = 57}, + [352] = {.lex_state = 51}, + [353] = {.lex_state = 44}, + [354] = {.lex_state = 51}, + [355] = {.lex_state = 44}, + [356] = {.lex_state = 48}, + [357] = {.lex_state = 47}, + [358] = {.lex_state = 58}, + [359] = {.lex_state = 56}, + [360] = {.lex_state = 47}, + [361] = {.lex_state = 56}, + [362] = {.lex_state = 44}, + [363] = {.lex_state = 53}, + [364] = {.lex_state = 48}, + [365] = {.lex_state = 47}, [366] = {.lex_state = 44}, - [367] = {.lex_state = 44}, - [368] = {.lex_state = 57}, - [369] = {.lex_state = 60}, - [370] = {.lex_state = 41}, - [371] = {.lex_state = 44}, + [367] = {.lex_state = 48}, + [368] = {.lex_state = 73}, + [369] = {.lex_state = 44}, + [370] = {.lex_state = 57}, + [371] = {.lex_state = 47}, [372] = {.lex_state = 57}, - [373] = {.lex_state = 44}, - [374] = {.lex_state = 60}, - [375] = {.lex_state = 45}, + [373] = {.lex_state = 48}, + [374] = {.lex_state = 48}, + [375] = {.lex_state = 44}, [376] = {.lex_state = 44}, [377] = {.lex_state = 53}, - [378] = {.lex_state = 56}, - [379] = {.lex_state = 41}, - [380] = {.lex_state = 41}, - [381] = {.lex_state = 41}, - [382] = {.lex_state = 45}, + [378] = {.lex_state = 44}, + [379] = {.lex_state = 59}, + [380] = {.lex_state = 49}, + [381] = {.lex_state = 58}, + [382] = {.lex_state = 47}, [383] = {.lex_state = 44}, - [384] = {.lex_state = 56}, - [385] = {.lex_state = 45}, - [386] = {.lex_state = 41}, - [387] = {.lex_state = 45}, - [388] = {.lex_state = 45}, - [389] = {.lex_state = 41}, - [390] = {.lex_state = 51}, - [391] = {.lex_state = 44}, + [384] = {.lex_state = 58}, + [385] = {.lex_state = 48}, + [386] = {.lex_state = 60}, + [387] = {.lex_state = 54}, + [388] = {.lex_state = 48}, + [389] = {.lex_state = 47}, + [390] = {.lex_state = 60}, + [391] = {.lex_state = 73}, [392] = {.lex_state = 44}, - [393] = {.lex_state = 44}, - [394] = {.lex_state = 45}, - [395] = {.lex_state = 45}, - [396] = {.lex_state = 41}, + [393] = {.lex_state = 48}, + [394] = {.lex_state = 47}, + [395] = {.lex_state = 73}, + [396] = {.lex_state = 44}, [397] = {.lex_state = 44}, - [398] = {.lex_state = 41}, - [399] = {.lex_state = 45}, - [400] = {.lex_state = 57}, - [401] = {.lex_state = 59}, - [402] = {.lex_state = 45}, - [403] = {.lex_state = 45}, - [404] = {.lex_state = 41}, - [405] = {.lex_state = 41}, - [406] = {.lex_state = 45}, + [398] = {.lex_state = 54}, + [399] = {.lex_state = 59}, + [400] = {.lex_state = 44}, + [401] = {.lex_state = 44}, + [402] = {.lex_state = 48}, + [403] = {.lex_state = 59}, + [404] = {.lex_state = 47}, + [405] = {.lex_state = 48}, + [406] = {.lex_state = 47}, [407] = {.lex_state = 44}, - [408] = {.lex_state = 44}, - [409] = {.lex_state = 44}, - [410] = {.lex_state = 44}, + [408] = {.lex_state = 48}, + [409] = {.lex_state = 47}, + [410] = {.lex_state = 48}, [411] = {.lex_state = 44}, - [412] = {.lex_state = 45}, - [413] = {.lex_state = 41}, - [414] = {.lex_state = 41}, - [415] = {.lex_state = 45}, - [416] = {.lex_state = 41}, - [417] = {.lex_state = 44}, - [418] = {.lex_state = 59}, - [419] = {.lex_state = 45}, - [420] = {.lex_state = 41}, - [421] = {.lex_state = 44}, - [422] = {.lex_state = 94}, - [423] = {.lex_state = 44}, - [424] = {.lex_state = 59}, + [412] = {.lex_state = 44}, + [413] = {.lex_state = 47}, + [414] = {.lex_state = 44}, + [415] = {.lex_state = 44}, + [416] = {.lex_state = 48}, + [417] = {.lex_state = 47}, + [418] = {.lex_state = 44}, + [419] = {.lex_state = 44}, + [420] = {.lex_state = 48}, + [421] = {.lex_state = 48}, + [422] = {.lex_state = 47}, + [423] = {.lex_state = 100}, + [424] = {.lex_state = 47}, [425] = {.lex_state = 44}, [426] = {.lex_state = 44}, [427] = {.lex_state = 44}, [428] = {.lex_state = 44}, - [429] = {.lex_state = 41}, - [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 = 69}, - [480] = {.lex_state = 66}, - [481] = {.lex_state = 62}, - [482] = {.lex_state = 62}, - [483] = {.lex_state = 62}, - [484] = {.lex_state = 62}, - [485] = {.lex_state = 62}, - [486] = {.lex_state = 62}, - [487] = {.lex_state = 62}, - [488] = {.lex_state = 58}, - [489] = {.lex_state = 62}, - [490] = {.lex_state = 58}, - [491] = {.lex_state = 62}, - [492] = {.lex_state = 58}, - [493] = {.lex_state = 64}, - [494] = {.lex_state = 58}, - [495] = {.lex_state = 61}, - [496] = {.lex_state = 62}, - [497] = {.lex_state = 62}, - [498] = {.lex_state = 62}, - [499] = {.lex_state = 58}, - [500] = {.lex_state = 62}, - [501] = {.lex_state = 62}, - [502] = {.lex_state = 58}, - [503] = {.lex_state = 62}, - [504] = {.lex_state = 62}, - [505] = {.lex_state = 58}, - [506] = {.lex_state = 62}, - [507] = {.lex_state = 62}, - [508] = {.lex_state = 62}, - [509] = {.lex_state = 62}, - [510] = {.lex_state = 62}, - [511] = {.lex_state = 62}, - [512] = {.lex_state = 62}, - [513] = {.lex_state = 58}, - [514] = {.lex_state = 62}, - [515] = {.lex_state = 62}, - [516] = {.lex_state = 62}, - [517] = {.lex_state = 64}, - [518] = {.lex_state = 62}, - [519] = {.lex_state = 58}, - [520] = {.lex_state = 62}, - [521] = {.lex_state = 62}, - [522] = {.lex_state = 62}, - [523] = {.lex_state = 62}, - [524] = {.lex_state = 62}, - [525] = {.lex_state = 62}, - [526] = {.lex_state = 62}, - [527] = {.lex_state = 62}, - [528] = {.lex_state = 62}, - [529] = {.lex_state = 62}, - [530] = {.lex_state = 62}, - [531] = {.lex_state = 62}, - [532] = {.lex_state = 62}, - [533] = {.lex_state = 62}, - [534] = {.lex_state = 62}, - [535] = {.lex_state = 62}, - [536] = {.lex_state = 62}, - [537] = {.lex_state = 62}, - [538] = {.lex_state = 62}, - [539] = {.lex_state = 58}, - [540] = {.lex_state = 58}, - [541] = {.lex_state = 10}, - [542] = {.lex_state = 58}, - [543] = {.lex_state = 62}, - [544] = {.lex_state = 62}, - [545] = {.lex_state = 62}, - [546] = {.lex_state = 62}, - [547] = {.lex_state = 62}, - [548] = {.lex_state = 62}, - [549] = {.lex_state = 67}, - [550] = {.lex_state = 62}, - [551] = {.lex_state = 58}, - [552] = {.lex_state = 58}, - [553] = {.lex_state = 58}, - [554] = {.lex_state = 58}, - [555] = {.lex_state = 58}, - [556] = {.lex_state = 58}, - [557] = {.lex_state = 58}, - [558] = {.lex_state = 58}, - [559] = {.lex_state = 67}, - [560] = {.lex_state = 58}, - [561] = {.lex_state = 58}, - [562] = {.lex_state = 58}, - [563] = {.lex_state = 61}, - [564] = {.lex_state = 58}, - [565] = {.lex_state = 68}, - [566] = {.lex_state = 58}, - [567] = {.lex_state = 58}, - [568] = {.lex_state = 58}, - [569] = {.lex_state = 58}, - [570] = {.lex_state = 58}, - [571] = {.lex_state = 58}, - [572] = {.lex_state = 58}, - [573] = {.lex_state = 93}, - [574] = {.lex_state = 58}, - [575] = {.lex_state = 58}, - [576] = {.lex_state = 58}, - [577] = {.lex_state = 58}, - [578] = {.lex_state = 58}, - [579] = {.lex_state = 58}, - [580] = {.lex_state = 64}, - [581] = {.lex_state = 67}, - [582] = {.lex_state = 58}, - [583] = {.lex_state = 58}, - [584] = {.lex_state = 69}, - [585] = {.lex_state = 58}, - [586] = {.lex_state = 58}, - [587] = {.lex_state = 61}, - [588] = {.lex_state = 58}, - [589] = {.lex_state = 58}, - [590] = {.lex_state = 58}, - [591] = {.lex_state = 58}, - [592] = {.lex_state = 58}, - [593] = {.lex_state = 58}, - [594] = {.lex_state = 58}, - [595] = {.lex_state = 58}, - [596] = {.lex_state = 58}, - [597] = {.lex_state = 58}, - [598] = {.lex_state = 58}, - [599] = {.lex_state = 58}, - [600] = {.lex_state = 58}, - [601] = {.lex_state = 69}, - [602] = {.lex_state = 69}, - [603] = {.lex_state = 69}, - [604] = {.lex_state = 69}, - [605] = {.lex_state = 69}, - [606] = {.lex_state = 62}, - [607] = {.lex_state = 62}, - [608] = {.lex_state = 6}, - [609] = {.lex_state = 69}, - [610] = {.lex_state = 69}, - [611] = {.lex_state = 11}, - [612] = {.lex_state = 69}, - [613] = {.lex_state = 58}, - [614] = {.lex_state = 58}, - [615] = {.lex_state = 7}, - [616] = {.lex_state = 69}, - [617] = {.lex_state = 69}, - [618] = {.lex_state = 69}, - [619] = {.lex_state = 13}, - [620] = {.lex_state = 69}, - [621] = {.lex_state = 9}, - [622] = {.lex_state = 69}, - [623] = {.lex_state = 12}, - [624] = {.lex_state = 69}, - [625] = {.lex_state = 66}, - [626] = {.lex_state = 17}, - [627] = {.lex_state = 69}, - [628] = {.lex_state = 69}, - [629] = {.lex_state = 65}, - [630] = {.lex_state = 18}, - [631] = {.lex_state = 69}, - [632] = {.lex_state = 68}, - [633] = {.lex_state = 69}, - [634] = {.lex_state = 65}, - [635] = {.lex_state = 68}, - [636] = {.lex_state = 23}, - [637] = {.lex_state = 69}, - [638] = {.lex_state = 61}, - [639] = {.lex_state = 19}, - [640] = {.lex_state = 69}, - [641] = {.lex_state = 69}, - [642] = {.lex_state = 66}, - [643] = {.lex_state = 66}, - [644] = {.lex_state = 69}, - [645] = {.lex_state = 66}, - [646] = {.lex_state = 66}, - [647] = {.lex_state = 66}, - [648] = {.lex_state = 66}, - [649] = {.lex_state = 66}, - [650] = {.lex_state = 66}, - [651] = {.lex_state = 66}, - [652] = {.lex_state = 66}, - [653] = {.lex_state = 66}, - [654] = {.lex_state = 66}, - [655] = {.lex_state = 68}, - [656] = {.lex_state = 66}, + [429] = {.lex_state = 44}, + [430] = {.lex_state = 44}, + [431] = {.lex_state = 44}, + [432] = {.lex_state = 48}, + [433] = {.lex_state = 47}, + [434] = {.lex_state = 48}, + [435] = {.lex_state = 47}, + [436] = {.lex_state = 62}, + [437] = {.lex_state = 44}, + [438] = {.lex_state = 44}, + [439] = {.lex_state = 48}, + [440] = {.lex_state = 47}, + [441] = {.lex_state = 48}, + [442] = {.lex_state = 44}, + [443] = {.lex_state = 47}, + [444] = {.lex_state = 44}, + [445] = {.lex_state = 44}, + [446] = {.lex_state = 44}, + [447] = {.lex_state = 44}, + [448] = {.lex_state = 44}, + [449] = {.lex_state = 48}, + [450] = {.lex_state = 62}, + [451] = {.lex_state = 47}, + [452] = {.lex_state = 44}, + [453] = {.lex_state = 55}, + [454] = {.lex_state = 48}, + [455] = {.lex_state = 47}, + [456] = {.lex_state = 44}, + [457] = {.lex_state = 44}, + [458] = {.lex_state = 44}, + [459] = {.lex_state = 44}, + [460] = {.lex_state = 48}, + [461] = {.lex_state = 47}, + [462] = {.lex_state = 44}, + [463] = {.lex_state = 44}, + [464] = {.lex_state = 44}, + [465] = {.lex_state = 44}, + [466] = {.lex_state = 48}, + [467] = {.lex_state = 48}, + [468] = {.lex_state = 62}, + [469] = {.lex_state = 47}, + [470] = {.lex_state = 48}, + [471] = {.lex_state = 60}, + [472] = {.lex_state = 47}, + [473] = {.lex_state = 47}, + [474] = {.lex_state = 44}, + [475] = {.lex_state = 35}, + [476] = {.lex_state = 21}, + [477] = {.lex_state = 31}, + [478] = {.lex_state = 24}, + [479] = {.lex_state = 26}, + [480] = {.lex_state = 32}, + [481] = {.lex_state = 30}, + [482] = {.lex_state = 29}, + [483] = {.lex_state = 28}, + [484] = {.lex_state = 27}, + [485] = {.lex_state = 34}, + [486] = {.lex_state = 23}, + [487] = {.lex_state = 25}, + [488] = {.lex_state = 23}, + [489] = {.lex_state = 30}, + [490] = {.lex_state = 35}, + [491] = {.lex_state = 29}, + [492] = {.lex_state = 35}, + [493] = {.lex_state = 25}, + [494] = {.lex_state = 31}, + [495] = {.lex_state = 26}, + [496] = {.lex_state = 24}, + [497] = {.lex_state = 27}, + [498] = {.lex_state = 28}, + [499] = {.lex_state = 34}, + [500] = {.lex_state = 27}, + [501] = {.lex_state = 25}, + [502] = {.lex_state = 28}, + [503] = {.lex_state = 29}, + [504] = {.lex_state = 30}, + [505] = {.lex_state = 34}, + [506] = {.lex_state = 21}, + [507] = {.lex_state = 23}, + [508] = {.lex_state = 21}, + [509] = {.lex_state = 32}, + [510] = {.lex_state = 24}, + [511] = {.lex_state = 32}, + [512] = {.lex_state = 26}, + [513] = {.lex_state = 31}, + [514] = {.lex_state = 18}, + [515] = {.lex_state = 9}, + [516] = {.lex_state = 99}, + [517] = {.lex_state = 7}, + [518] = {.lex_state = 8}, + [519] = {.lex_state = 20}, + [520] = {.lex_state = 14}, + [521] = {.lex_state = 22}, + [522] = {.lex_state = 13}, + [523] = {.lex_state = 15}, + [524] = {.lex_state = 19}, + [525] = {.lex_state = 33}, + [526] = {.lex_state = 17}, + [527] = {.lex_state = 16}, + [528] = {.lex_state = 11}, + [529] = {.lex_state = 10}, + [530] = {.lex_state = 4}, + [531] = {.lex_state = 6}, + [532] = {.lex_state = 12}, + [533] = {.lex_state = 74}, + [534] = {.lex_state = 68}, + [535] = {.lex_state = 63}, + [536] = {.lex_state = 63}, + [537] = {.lex_state = 63}, + [538] = {.lex_state = 63}, + [539] = {.lex_state = 63}, + [540] = {.lex_state = 71}, + [541] = {.lex_state = 63}, + [542] = {.lex_state = 63}, + [543] = {.lex_state = 63}, + [544] = {.lex_state = 63}, + [545] = {.lex_state = 63}, + [546] = {.lex_state = 63}, + [547] = {.lex_state = 63}, + [548] = {.lex_state = 63}, + [549] = {.lex_state = 63}, + [550] = {.lex_state = 63}, + [551] = {.lex_state = 63}, + [552] = {.lex_state = 63}, + [553] = {.lex_state = 63}, + [554] = {.lex_state = 63}, + [555] = {.lex_state = 63}, + [556] = {.lex_state = 63}, + [557] = {.lex_state = 63}, + [558] = {.lex_state = 63}, + [559] = {.lex_state = 63}, + [560] = {.lex_state = 63}, + [561] = {.lex_state = 63}, + [562] = {.lex_state = 63}, + [563] = {.lex_state = 63}, + [564] = {.lex_state = 63}, + [565] = {.lex_state = 70}, + [566] = {.lex_state = 12}, + [567] = {.lex_state = 63}, + [568] = {.lex_state = 63}, + [569] = {.lex_state = 63}, + [570] = {.lex_state = 63}, + [571] = {.lex_state = 63}, + [572] = {.lex_state = 63}, + [573] = {.lex_state = 63}, + [574] = {.lex_state = 63}, + [575] = {.lex_state = 63}, + [576] = {.lex_state = 63}, + [577] = {.lex_state = 63}, + [578] = {.lex_state = 63}, + [579] = {.lex_state = 72}, + [580] = {.lex_state = 72}, + [581] = {.lex_state = 72}, + [582] = {.lex_state = 72}, + [583] = {.lex_state = 72}, + [584] = {.lex_state = 72}, + [585] = {.lex_state = 72}, + [586] = {.lex_state = 72}, + [587] = {.lex_state = 72}, + [588] = {.lex_state = 66}, + [589] = {.lex_state = 72}, + [590] = {.lex_state = 61}, + [591] = {.lex_state = 72}, + [592] = {.lex_state = 72}, + [593] = {.lex_state = 72}, + [594] = {.lex_state = 72}, + [595] = {.lex_state = 72}, + [596] = {.lex_state = 72}, + [597] = {.lex_state = 72}, + [598] = {.lex_state = 72}, + [599] = {.lex_state = 72}, + [600] = {.lex_state = 72}, + [601] = {.lex_state = 72}, + [602] = {.lex_state = 72}, + [603] = {.lex_state = 64}, + [604] = {.lex_state = 72}, + [605] = {.lex_state = 72}, + [606] = {.lex_state = 72}, + [607] = {.lex_state = 72}, + [608] = {.lex_state = 72}, + [609] = {.lex_state = 72}, + [610] = {.lex_state = 72}, + [611] = {.lex_state = 72}, + [612] = {.lex_state = 66}, + [613] = {.lex_state = 72}, + [614] = {.lex_state = 72}, + [615] = {.lex_state = 72}, + [616] = {.lex_state = 72}, + [617] = {.lex_state = 72}, + [618] = {.lex_state = 72}, + [619] = {.lex_state = 72}, + [620] = {.lex_state = 72}, + [621] = {.lex_state = 72}, + [622] = {.lex_state = 71}, + [623] = {.lex_state = 64}, + [624] = {.lex_state = 72}, + [625] = {.lex_state = 72}, + [626] = {.lex_state = 72}, + [627] = {.lex_state = 72}, + [628] = {.lex_state = 72}, + [629] = {.lex_state = 72}, + [630] = {.lex_state = 72}, + [631] = {.lex_state = 72}, + [632] = {.lex_state = 72}, + [633] = {.lex_state = 72}, + [634] = {.lex_state = 72}, + [635] = {.lex_state = 72}, + [636] = {.lex_state = 72}, + [637] = {.lex_state = 72}, + [638] = {.lex_state = 9}, + [639] = {.lex_state = 70}, + [640] = {.lex_state = 72}, + [641] = {.lex_state = 72}, + [642] = {.lex_state = 72}, + [643] = {.lex_state = 72}, + [644] = {.lex_state = 70}, + [645] = {.lex_state = 70}, + [646] = {.lex_state = 70}, + [647] = {.lex_state = 70}, + [648] = {.lex_state = 70}, + [649] = {.lex_state = 70}, + [650] = {.lex_state = 70}, + [651] = {.lex_state = 70}, + [652] = {.lex_state = 70}, + [653] = {.lex_state = 70}, + [654] = {.lex_state = 67}, + [655] = {.lex_state = 70}, + [656] = {.lex_state = 70}, [657] = {.lex_state = 63}, - [658] = {.lex_state = 66}, - [659] = {.lex_state = 66}, - [660] = {.lex_state = 66}, - [661] = {.lex_state = 66}, - [662] = {.lex_state = 66}, - [663] = {.lex_state = 66}, - [664] = {.lex_state = 66}, - [665] = {.lex_state = 66}, - [666] = {.lex_state = 66}, - [667] = {.lex_state = 66}, - [668] = {.lex_state = 66}, - [669] = {.lex_state = 66}, - [670] = {.lex_state = 66}, - [671] = {.lex_state = 66}, - [672] = {.lex_state = 66}, - [673] = {.lex_state = 66}, - [674] = {.lex_state = 66}, - [675] = {.lex_state = 66}, - [676] = {.lex_state = 66}, - [677] = {.lex_state = 66}, - [678] = {.lex_state = 69}, - [679] = {.lex_state = 14}, - [680] = {.lex_state = 58}, - [681] = {.lex_state = 66}, - [682] = {.lex_state = 66}, - [683] = {.lex_state = 66}, - [684] = {.lex_state = 66}, - [685] = {.lex_state = 66}, - [686] = {.lex_state = 66}, - [687] = {.lex_state = 66}, - [688] = {.lex_state = 66}, - [689] = {.lex_state = 66}, - [690] = {.lex_state = 66}, - [691] = {.lex_state = 66}, - [692] = {.lex_state = 66}, - [693] = {.lex_state = 66}, - [694] = {.lex_state = 66}, - [695] = {.lex_state = 66}, - [696] = {.lex_state = 69}, - [697] = {.lex_state = 66}, - [698] = {.lex_state = 66}, - [699] = {.lex_state = 66}, - [700] = {.lex_state = 65}, - [701] = {.lex_state = 69}, - [702] = {.lex_state = 66}, - [703] = {.lex_state = 66}, - [704] = {.lex_state = 66}, - [705] = {.lex_state = 64}, - [706] = {.lex_state = 63}, - [707] = {.lex_state = 69}, - [708] = {.lex_state = 69}, - [709] = {.lex_state = 69}, - [710] = {.lex_state = 66}, - [711] = {.lex_state = 65}, - [712] = {.lex_state = 67}, - [713] = {.lex_state = 65}, - [714] = {.lex_state = 65}, - [715] = {.lex_state = 65}, - [716] = {.lex_state = 65}, - [717] = {.lex_state = 65}, - [718] = {.lex_state = 65}, - [719] = {.lex_state = 65}, - [720] = {.lex_state = 65}, - [721] = {.lex_state = 65}, - [722] = {.lex_state = 65}, - [723] = {.lex_state = 65}, - [724] = {.lex_state = 65}, - [725] = {.lex_state = 69}, - [726] = {.lex_state = 65}, - [727] = {.lex_state = 65}, - [728] = {.lex_state = 65}, - [729] = {.lex_state = 65}, - [730] = {.lex_state = 65}, - [731] = {.lex_state = 65}, - [732] = {.lex_state = 65}, - [733] = {.lex_state = 65}, - [734] = {.lex_state = 65}, - [735] = {.lex_state = 65}, - [736] = {.lex_state = 65}, - [737] = {.lex_state = 65}, - [738] = {.lex_state = 65}, - [739] = {.lex_state = 65}, - [740] = {.lex_state = 65}, - [741] = {.lex_state = 63}, - [742] = {.lex_state = 65}, - [743] = {.lex_state = 65}, - [744] = {.lex_state = 65}, - [745] = {.lex_state = 65}, - [746] = {.lex_state = 69}, - [747] = {.lex_state = 15}, - [748] = {.lex_state = 62}, - [749] = {.lex_state = 65}, - [750] = {.lex_state = 65}, - [751] = {.lex_state = 65}, - [752] = {.lex_state = 65}, - [753] = {.lex_state = 65}, - [754] = {.lex_state = 65}, - [755] = {.lex_state = 65}, - [756] = {.lex_state = 65}, - [757] = {.lex_state = 65}, - [758] = {.lex_state = 65}, - [759] = {.lex_state = 65}, - [760] = {.lex_state = 65}, - [761] = {.lex_state = 65}, - [762] = {.lex_state = 65}, - [763] = {.lex_state = 65}, - [764] = {.lex_state = 69}, - [765] = {.lex_state = 65}, - [766] = {.lex_state = 65}, - [767] = {.lex_state = 65}, - [768] = {.lex_state = 66}, - [769] = {.lex_state = 69}, + [658] = {.lex_state = 63}, + [659] = {.lex_state = 70}, + [660] = {.lex_state = 61}, + [661] = {.lex_state = 70}, + [662] = {.lex_state = 68}, + [663] = {.lex_state = 6}, + [664] = {.lex_state = 63}, + [665] = {.lex_state = 72}, + [666] = {.lex_state = 72}, + [667] = {.lex_state = 4}, + [668] = {.lex_state = 63}, + [669] = {.lex_state = 70}, + [670] = {.lex_state = 70}, + [671] = {.lex_state = 70}, + [672] = {.lex_state = 70}, + [673] = {.lex_state = 10}, + [674] = {.lex_state = 63}, + [675] = {.lex_state = 11}, + [676] = {.lex_state = 63}, + [677] = {.lex_state = 16}, + [678] = {.lex_state = 63}, + [679] = {.lex_state = 67}, + [680] = {.lex_state = 70}, + [681] = {.lex_state = 17}, + [682] = {.lex_state = 63}, + [683] = {.lex_state = 65}, + [684] = {.lex_state = 61}, + [685] = {.lex_state = 18}, + [686] = {.lex_state = 70}, + [687] = {.lex_state = 61}, + [688] = {.lex_state = 75}, + [689] = {.lex_state = 33}, + [690] = {.lex_state = 63}, + [691] = {.lex_state = 74}, + [692] = {.lex_state = 19}, + [693] = {.lex_state = 63}, + [694] = {.lex_state = 67}, + [695] = {.lex_state = 67}, + [696] = {.lex_state = 67}, + [697] = {.lex_state = 67}, + [698] = {.lex_state = 67}, + [699] = {.lex_state = 67}, + [700] = {.lex_state = 67}, + [701] = {.lex_state = 67}, + [702] = {.lex_state = 67}, + [703] = {.lex_state = 67}, + [704] = {.lex_state = 67}, + [705] = {.lex_state = 67}, + [706] = {.lex_state = 67}, + [707] = {.lex_state = 67}, + [708] = {.lex_state = 67}, + [709] = {.lex_state = 67}, + [710] = {.lex_state = 63}, + [711] = {.lex_state = 15}, + [712] = {.lex_state = 72}, + [713] = {.lex_state = 67}, + [714] = {.lex_state = 67}, + [715] = {.lex_state = 67}, + [716] = {.lex_state = 67}, + [717] = {.lex_state = 67}, + [718] = {.lex_state = 67}, + [719] = {.lex_state = 67}, + [720] = {.lex_state = 67}, + [721] = {.lex_state = 67}, + [722] = {.lex_state = 67}, + [723] = {.lex_state = 67}, + [724] = {.lex_state = 67}, + [725] = {.lex_state = 67}, + [726] = {.lex_state = 67}, + [727] = {.lex_state = 67}, + [728] = {.lex_state = 70}, + [729] = {.lex_state = 67}, + [730] = {.lex_state = 67}, + [731] = {.lex_state = 67}, + [732] = {.lex_state = 70}, + [733] = {.lex_state = 68}, + [734] = {.lex_state = 70}, + [735] = {.lex_state = 74}, + [736] = {.lex_state = 67}, + [737] = {.lex_state = 67}, + [738] = {.lex_state = 67}, + [739] = {.lex_state = 69}, + [740] = {.lex_state = 67}, + [741] = {.lex_state = 67}, + [742] = {.lex_state = 69}, + [743] = {.lex_state = 67}, + [744] = {.lex_state = 67}, + [745] = {.lex_state = 70}, + [746] = {.lex_state = 67}, + [747] = {.lex_state = 67}, + [748] = {.lex_state = 67}, + [749] = {.lex_state = 67}, + [750] = {.lex_state = 67}, + [751] = {.lex_state = 67}, + [752] = {.lex_state = 67}, + [753] = {.lex_state = 70}, + [754] = {.lex_state = 67}, + [755] = {.lex_state = 67}, + [756] = {.lex_state = 67}, + [757] = {.lex_state = 68}, + [758] = {.lex_state = 67}, + [759] = {.lex_state = 70}, + [760] = {.lex_state = 67}, + [761] = {.lex_state = 67}, + [762] = {.lex_state = 67}, + [763] = {.lex_state = 67}, + [764] = {.lex_state = 68}, + [765] = {.lex_state = 70}, + [766] = {.lex_state = 70}, + [767] = {.lex_state = 67}, + [768] = {.lex_state = 65}, + [769] = {.lex_state = 65}, [770] = {.lex_state = 65}, [771] = {.lex_state = 65}, [772] = {.lex_state = 65}, - [773] = {.lex_state = 67}, + [773] = {.lex_state = 65}, [774] = {.lex_state = 65}, - [775] = {.lex_state = 67}, - [776] = {.lex_state = 69}, - [777] = {.lex_state = 69}, + [775] = {.lex_state = 65}, + [776] = {.lex_state = 65}, + [777] = {.lex_state = 65}, [778] = {.lex_state = 69}, - [779] = {.lex_state = 69}, + [779] = {.lex_state = 65}, [780] = {.lex_state = 65}, - [781] = {.lex_state = 68}, - [782] = {.lex_state = 68}, - [783] = {.lex_state = 68}, - [784] = {.lex_state = 68}, - [785] = {.lex_state = 68}, - [786] = {.lex_state = 68}, - [787] = {.lex_state = 68}, - [788] = {.lex_state = 68}, - [789] = {.lex_state = 68}, - [790] = {.lex_state = 62}, - [791] = {.lex_state = 68}, - [792] = {.lex_state = 68}, - [793] = {.lex_state = 68}, - [794] = {.lex_state = 68}, - [795] = {.lex_state = 68}, - [796] = {.lex_state = 68}, - [797] = {.lex_state = 68}, - [798] = {.lex_state = 68}, - [799] = {.lex_state = 68}, - [800] = {.lex_state = 68}, - [801] = {.lex_state = 68}, - [802] = {.lex_state = 68}, - [803] = {.lex_state = 68}, - [804] = {.lex_state = 68}, - [805] = {.lex_state = 68}, - [806] = {.lex_state = 68}, - [807] = {.lex_state = 67}, - [808] = {.lex_state = 68}, - [809] = {.lex_state = 68}, - [810] = {.lex_state = 68}, - [811] = {.lex_state = 68}, - [812] = {.lex_state = 69}, - [813] = {.lex_state = 22}, - [814] = {.lex_state = 68}, - [815] = {.lex_state = 68}, - [816] = {.lex_state = 68}, - [817] = {.lex_state = 68}, - [818] = {.lex_state = 68}, - [819] = {.lex_state = 68}, - [820] = {.lex_state = 68}, - [821] = {.lex_state = 68}, - [822] = {.lex_state = 68}, - [823] = {.lex_state = 68}, - [824] = {.lex_state = 68}, - [825] = {.lex_state = 68}, - [826] = {.lex_state = 68}, - [827] = {.lex_state = 68}, - [828] = {.lex_state = 68}, - [829] = {.lex_state = 68}, - [830] = {.lex_state = 69}, - [831] = {.lex_state = 68}, - [832] = {.lex_state = 68}, - [833] = {.lex_state = 68}, - [834] = {.lex_state = 68}, - [835] = {.lex_state = 68}, - [836] = {.lex_state = 68}, - [837] = {.lex_state = 64}, - [838] = {.lex_state = 68}, - [839] = {.lex_state = 68}, - [840] = {.lex_state = 69}, - [841] = {.lex_state = 63}, - [842] = {.lex_state = 63}, - [843] = {.lex_state = 69}, - [844] = {.lex_state = 69}, - [845] = {.lex_state = 68}, - [846] = {.lex_state = 61}, - [847] = {.lex_state = 61}, - [848] = {.lex_state = 61}, - [849] = {.lex_state = 69}, - [850] = {.lex_state = 61}, - [851] = {.lex_state = 61}, - [852] = {.lex_state = 61}, - [853] = {.lex_state = 61}, - [854] = {.lex_state = 61}, - [855] = {.lex_state = 61}, - [856] = {.lex_state = 61}, - [857] = {.lex_state = 61}, - [858] = {.lex_state = 61}, - [859] = {.lex_state = 61}, - [860] = {.lex_state = 61}, - [861] = {.lex_state = 61}, - [862] = {.lex_state = 61}, - [863] = {.lex_state = 61}, - [864] = {.lex_state = 61}, - [865] = {.lex_state = 61}, - [866] = {.lex_state = 61}, - [867] = {.lex_state = 61}, - [868] = {.lex_state = 61}, - [869] = {.lex_state = 61}, - [870] = {.lex_state = 64}, - [871] = {.lex_state = 61}, - [872] = {.lex_state = 61}, - [873] = {.lex_state = 61}, - [874] = {.lex_state = 61}, - [875] = {.lex_state = 69}, - [876] = {.lex_state = 16}, - [877] = {.lex_state = 61}, - [878] = {.lex_state = 61}, - [879] = {.lex_state = 69}, - [880] = {.lex_state = 61}, - [881] = {.lex_state = 61}, - [882] = {.lex_state = 61}, - [883] = {.lex_state = 61}, - [884] = {.lex_state = 69}, - [885] = {.lex_state = 61}, - [886] = {.lex_state = 61}, - [887] = {.lex_state = 61}, - [888] = {.lex_state = 61}, - [889] = {.lex_state = 61}, - [890] = {.lex_state = 61}, - [891] = {.lex_state = 61}, - [892] = {.lex_state = 61}, - [893] = {.lex_state = 69}, - [894] = {.lex_state = 61}, - [895] = {.lex_state = 61}, - [896] = {.lex_state = 61}, - [897] = {.lex_state = 61}, - [898] = {.lex_state = 61}, - [899] = {.lex_state = 61}, - [900] = {.lex_state = 61}, - [901] = {.lex_state = 61}, - [902] = {.lex_state = 61}, + [781] = {.lex_state = 65}, + [782] = {.lex_state = 65}, + [783] = {.lex_state = 63}, + [784] = {.lex_state = 13}, + [785] = {.lex_state = 63}, + [786] = {.lex_state = 65}, + [787] = {.lex_state = 65}, + [788] = {.lex_state = 65}, + [789] = {.lex_state = 65}, + [790] = {.lex_state = 65}, + [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 = 70}, + [802] = {.lex_state = 65}, + [803] = {.lex_state = 65}, + [804] = {.lex_state = 65}, + [805] = {.lex_state = 70}, + [806] = {.lex_state = 74}, + [807] = {.lex_state = 70}, + [808] = {.lex_state = 75}, + [809] = {.lex_state = 65}, + [810] = {.lex_state = 65}, + [811] = {.lex_state = 65}, + [812] = {.lex_state = 64}, + [813] = {.lex_state = 65}, + [814] = {.lex_state = 65}, + [815] = {.lex_state = 70}, + [816] = {.lex_state = 65}, + [817] = {.lex_state = 65}, + [818] = {.lex_state = 70}, + [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 = 70}, + [827] = {.lex_state = 65}, + [828] = {.lex_state = 65}, + [829] = {.lex_state = 65}, + [830] = {.lex_state = 74}, + [831] = {.lex_state = 65}, + [832] = {.lex_state = 70}, + [833] = {.lex_state = 65}, + [834] = {.lex_state = 65}, + [835] = {.lex_state = 65}, + [836] = {.lex_state = 65}, + [837] = {.lex_state = 65}, + [838] = {.lex_state = 65}, + [839] = {.lex_state = 61}, + [840] = {.lex_state = 70}, + [841] = {.lex_state = 70}, + [842] = {.lex_state = 65}, + [843] = {.lex_state = 75}, + [844] = {.lex_state = 75}, + [845] = {.lex_state = 75}, + [846] = {.lex_state = 75}, + [847] = {.lex_state = 75}, + [848] = {.lex_state = 75}, + [849] = {.lex_state = 75}, + [850] = {.lex_state = 75}, + [851] = {.lex_state = 64}, + [852] = {.lex_state = 75}, + [853] = {.lex_state = 75}, + [854] = {.lex_state = 75}, + [855] = {.lex_state = 75}, + [856] = {.lex_state = 63}, + [857] = {.lex_state = 22}, + [858] = {.lex_state = 75}, + [859] = {.lex_state = 75}, + [860] = {.lex_state = 75}, + [861] = {.lex_state = 75}, + [862] = {.lex_state = 75}, + [863] = {.lex_state = 75}, + [864] = {.lex_state = 75}, + [865] = {.lex_state = 75}, + [866] = {.lex_state = 75}, + [867] = {.lex_state = 75}, + [868] = {.lex_state = 75}, + [869] = {.lex_state = 75}, + [870] = {.lex_state = 75}, + [871] = {.lex_state = 75}, + [872] = {.lex_state = 75}, + [873] = {.lex_state = 75}, + [874] = {.lex_state = 70}, + [875] = {.lex_state = 75}, + [876] = {.lex_state = 75}, + [877] = {.lex_state = 75}, + [878] = {.lex_state = 75}, + [879] = {.lex_state = 70}, + [880] = {.lex_state = 65}, + [881] = {.lex_state = 75}, + [882] = {.lex_state = 75}, + [883] = {.lex_state = 75}, + [884] = {.lex_state = 71}, + [885] = {.lex_state = 75}, + [886] = {.lex_state = 75}, + [887] = {.lex_state = 70}, + [888] = {.lex_state = 75}, + [889] = {.lex_state = 75}, + [890] = {.lex_state = 64}, + [891] = {.lex_state = 75}, + [892] = {.lex_state = 75}, + [893] = {.lex_state = 75}, + [894] = {.lex_state = 74}, + [895] = {.lex_state = 75}, + [896] = {.lex_state = 75}, + [897] = {.lex_state = 75}, + [898] = {.lex_state = 75}, + [899] = {.lex_state = 75}, + [900] = {.lex_state = 75}, + [901] = {.lex_state = 75}, + [902] = {.lex_state = 75}, [903] = {.lex_state = 69}, - [904] = {.lex_state = 61}, - [905] = {.lex_state = 61}, - [906] = {.lex_state = 69}, - [907] = {.lex_state = 61}, - [908] = {.lex_state = 61}, - [909] = {.lex_state = 69}, - [910] = {.lex_state = 69}, - [911] = {.lex_state = 61}, - [912] = {.lex_state = 64}, - [913] = {.lex_state = 64}, - [914] = {.lex_state = 64}, - [915] = {.lex_state = 66}, - [916] = {.lex_state = 64}, - [917] = {.lex_state = 64}, - [918] = {.lex_state = 64}, - [919] = {.lex_state = 64}, - [920] = {.lex_state = 64}, - [921] = {.lex_state = 64}, - [922] = {.lex_state = 64}, - [923] = {.lex_state = 64}, - [924] = {.lex_state = 64}, - [925] = {.lex_state = 64}, - [926] = {.lex_state = 64}, - [927] = {.lex_state = 64}, - [928] = {.lex_state = 64}, - [929] = {.lex_state = 64}, - [930] = {.lex_state = 64}, - [931] = {.lex_state = 64}, - [932] = {.lex_state = 64}, - [933] = {.lex_state = 61}, - [934] = {.lex_state = 64}, - [935] = {.lex_state = 64}, - [936] = {.lex_state = 64}, - [937] = {.lex_state = 64}, - [938] = {.lex_state = 69}, - [939] = {.lex_state = 20}, - [940] = {.lex_state = 64}, - [941] = {.lex_state = 64}, - [942] = {.lex_state = 64}, - [943] = {.lex_state = 64}, - [944] = {.lex_state = 64}, - [945] = {.lex_state = 69}, - [946] = {.lex_state = 64}, - [947] = {.lex_state = 64}, - [948] = {.lex_state = 64}, - [949] = {.lex_state = 64}, - [950] = {.lex_state = 66}, - [951] = {.lex_state = 64}, - [952] = {.lex_state = 64}, - [953] = {.lex_state = 64}, - [954] = {.lex_state = 64}, - [955] = {.lex_state = 64}, - [956] = {.lex_state = 69}, - [957] = {.lex_state = 64}, - [958] = {.lex_state = 64}, - [959] = {.lex_state = 64}, - [960] = {.lex_state = 64}, - [961] = {.lex_state = 64}, - [962] = {.lex_state = 64}, - [963] = {.lex_state = 67}, - [964] = {.lex_state = 64}, - [965] = {.lex_state = 64}, - [966] = {.lex_state = 69}, - [967] = {.lex_state = 64}, - [968] = {.lex_state = 64}, - [969] = {.lex_state = 62}, - [970] = {.lex_state = 64}, - [971] = {.lex_state = 64}, - [972] = {.lex_state = 64}, - [973] = {.lex_state = 64}, - [974] = {.lex_state = 64}, - [975] = {.lex_state = 69}, - [976] = {.lex_state = 69}, - [977] = {.lex_state = 64}, - [978] = {.lex_state = 67}, - [979] = {.lex_state = 67}, - [980] = {.lex_state = 67}, - [981] = {.lex_state = 65}, - [982] = {.lex_state = 67}, - [983] = {.lex_state = 67}, - [984] = {.lex_state = 67}, - [985] = {.lex_state = 67}, - [986] = {.lex_state = 67}, - [987] = {.lex_state = 67}, - [988] = {.lex_state = 67}, - [989] = {.lex_state = 67}, + [904] = {.lex_state = 75}, + [905] = {.lex_state = 75}, + [906] = {.lex_state = 75}, + [907] = {.lex_state = 75}, + [908] = {.lex_state = 75}, + [909] = {.lex_state = 75}, + [910] = {.lex_state = 75}, + [911] = {.lex_state = 66}, + [912] = {.lex_state = 70}, + [913] = {.lex_state = 70}, + [914] = {.lex_state = 75}, + [915] = {.lex_state = 74}, + [916] = {.lex_state = 74}, + [917] = {.lex_state = 74}, + [918] = {.lex_state = 74}, + [919] = {.lex_state = 74}, + [920] = {.lex_state = 74}, + [921] = {.lex_state = 74}, + [922] = {.lex_state = 71}, + [923] = {.lex_state = 74}, + [924] = {.lex_state = 74}, + [925] = {.lex_state = 74}, + [926] = {.lex_state = 74}, + [927] = {.lex_state = 63}, + [928] = {.lex_state = 14}, + [929] = {.lex_state = 74}, + [930] = {.lex_state = 74}, + [931] = {.lex_state = 74}, + [932] = {.lex_state = 74}, + [933] = {.lex_state = 74}, + [934] = {.lex_state = 74}, + [935] = {.lex_state = 74}, + [936] = {.lex_state = 74}, + [937] = {.lex_state = 74}, + [938] = {.lex_state = 74}, + [939] = {.lex_state = 74}, + [940] = {.lex_state = 74}, + [941] = {.lex_state = 74}, + [942] = {.lex_state = 74}, + [943] = {.lex_state = 63}, + [944] = {.lex_state = 74}, + [945] = {.lex_state = 70}, + [946] = {.lex_state = 74}, + [947] = {.lex_state = 74}, + [948] = {.lex_state = 74}, + [949] = {.lex_state = 65}, + [950] = {.lex_state = 70}, + [951] = {.lex_state = 70}, + [952] = {.lex_state = 63}, + [953] = {.lex_state = 75}, + [954] = {.lex_state = 74}, + [955] = {.lex_state = 66}, + [956] = {.lex_state = 74}, + [957] = {.lex_state = 74}, + [958] = {.lex_state = 70}, + [959] = {.lex_state = 74}, + [960] = {.lex_state = 74}, + [961] = {.lex_state = 70}, + [962] = {.lex_state = 74}, + [963] = {.lex_state = 74}, + [964] = {.lex_state = 74}, + [965] = {.lex_state = 74}, + [966] = {.lex_state = 74}, + [967] = {.lex_state = 74}, + [968] = {.lex_state = 74}, + [969] = {.lex_state = 74}, + [970] = {.lex_state = 74}, + [971] = {.lex_state = 74}, + [972] = {.lex_state = 65}, + [973] = {.lex_state = 74}, + [974] = {.lex_state = 70}, + [975] = {.lex_state = 74}, + [976] = {.lex_state = 74}, + [977] = {.lex_state = 74}, + [978] = {.lex_state = 74}, + [979] = {.lex_state = 74}, + [980] = {.lex_state = 74}, + [981] = {.lex_state = 74}, + [982] = {.lex_state = 74}, + [983] = {.lex_state = 71}, + [984] = {.lex_state = 70}, + [985] = {.lex_state = 70}, + [986] = {.lex_state = 74}, + [987] = {.lex_state = 68}, + [988] = {.lex_state = 68}, + [989] = {.lex_state = 68}, [990] = {.lex_state = 67}, - [991] = {.lex_state = 67}, - [992] = {.lex_state = 67}, - [993] = {.lex_state = 67}, - [994] = {.lex_state = 67}, - [995] = {.lex_state = 67}, - [996] = {.lex_state = 67}, - [997] = {.lex_state = 67}, - [998] = {.lex_state = 67}, - [999] = {.lex_state = 67}, - [1000] = {.lex_state = 63}, - [1001] = {.lex_state = 8}, - [1002] = {.lex_state = 63}, - [1003] = {.lex_state = 67}, - [1004] = {.lex_state = 63}, - [1005] = {.lex_state = 63}, - [1006] = {.lex_state = 63}, - [1007] = {.lex_state = 63}, - [1008] = {.lex_state = 63}, - [1009] = {.lex_state = 63}, - [1010] = {.lex_state = 63}, - [1011] = {.lex_state = 63}, - [1012] = {.lex_state = 63}, - [1013] = {.lex_state = 63}, - [1014] = {.lex_state = 63}, - [1015] = {.lex_state = 63}, - [1016] = {.lex_state = 63}, - [1017] = {.lex_state = 63}, - [1018] = {.lex_state = 63}, - [1019] = {.lex_state = 62}, - [1020] = {.lex_state = 63}, - [1021] = {.lex_state = 67}, - [1022] = {.lex_state = 63}, - [1023] = {.lex_state = 63}, - [1024] = {.lex_state = 63}, - [1025] = {.lex_state = 63}, + [991] = {.lex_state = 68}, + [992] = {.lex_state = 68}, + [993] = {.lex_state = 66}, + [994] = {.lex_state = 68}, + [995] = {.lex_state = 68}, + [996] = {.lex_state = 68}, + [997] = {.lex_state = 68}, + [998] = {.lex_state = 66}, + [999] = {.lex_state = 20}, + [1000] = {.lex_state = 68}, + [1001] = {.lex_state = 68}, + [1002] = {.lex_state = 68}, + [1003] = {.lex_state = 68}, + [1004] = {.lex_state = 68}, + [1005] = {.lex_state = 68}, + [1006] = {.lex_state = 68}, + [1007] = {.lex_state = 68}, + [1008] = {.lex_state = 68}, + [1009] = {.lex_state = 68}, + [1010] = {.lex_state = 68}, + [1011] = {.lex_state = 68}, + [1012] = {.lex_state = 68}, + [1013] = {.lex_state = 68}, + [1014] = {.lex_state = 68}, + [1015] = {.lex_state = 68}, + [1016] = {.lex_state = 70}, + [1017] = {.lex_state = 68}, + [1018] = {.lex_state = 68}, + [1019] = {.lex_state = 68}, + [1020] = {.lex_state = 67}, + [1021] = {.lex_state = 70}, + [1022] = {.lex_state = 68}, + [1023] = {.lex_state = 68}, + [1024] = {.lex_state = 68}, + [1025] = {.lex_state = 61}, [1026] = {.lex_state = 68}, - [1027] = {.lex_state = 63}, - [1028] = {.lex_state = 63}, - [1029] = {.lex_state = 69}, - [1030] = {.lex_state = 63}, - [1031] = {.lex_state = 63}, - [1032] = {.lex_state = 4}, - [1033] = {.lex_state = 63}, - [1034] = {.lex_state = 63}, - [1035] = {.lex_state = 63}, - [1036] = {.lex_state = 63}, - [1037] = {.lex_state = 63}, - [1038] = {.lex_state = 63}, - [1039] = {.lex_state = 63}, - [1040] = {.lex_state = 63}, - [1041] = {.lex_state = 63}, - [1042] = {.lex_state = 63}, - [1043] = {.lex_state = 63}, - [1044] = {.lex_state = 63}, - [1045] = {.lex_state = 63}, - [1046] = {.lex_state = 63}, - [1047] = {.lex_state = 63}, - [1048] = {.lex_state = 63}, - [1049] = {.lex_state = 63}, - [1050] = {.lex_state = 63}, - [1051] = {.lex_state = 63}, - [1052] = {.lex_state = 63}, - [1053] = {.lex_state = 63}, - [1054] = {.lex_state = 63}, - [1055] = {.lex_state = 63}, - [1056] = {.lex_state = 63}, - [1057] = {.lex_state = 63}, - [1058] = {.lex_state = 63}, - [1059] = {.lex_state = 68}, - [1060] = {.lex_state = 63}, - [1061] = {.lex_state = 63}, - [1062] = {.lex_state = 63}, - [1063] = {.lex_state = 67}, - [1064] = {.lex_state = 69}, - [1065] = {.lex_state = 62}, - [1066] = {.lex_state = 67}, - [1067] = {.lex_state = 67}, - [1068] = {.lex_state = 67}, - [1069] = {.lex_state = 67}, - [1070] = {.lex_state = 67}, - [1071] = {.lex_state = 67}, - [1072] = {.lex_state = 67}, - [1073] = {.lex_state = 67}, - [1074] = {.lex_state = 67}, - [1075] = {.lex_state = 67}, - [1076] = {.lex_state = 67}, - [1077] = {.lex_state = 67}, - [1078] = {.lex_state = 67}, - [1079] = {.lex_state = 67}, - [1080] = {.lex_state = 67}, - [1081] = {.lex_state = 67}, - [1082] = {.lex_state = 58}, - [1083] = {.lex_state = 67}, - [1084] = {.lex_state = 67}, - [1085] = {.lex_state = 67}, - [1086] = {.lex_state = 67}, - [1087] = {.lex_state = 67}, - [1088] = {.lex_state = 67}, - [1089] = {.lex_state = 65}, - [1090] = {.lex_state = 67}, - [1091] = {.lex_state = 67}, - [1092] = {.lex_state = 58}, - [1093] = {.lex_state = 67}, - [1094] = {.lex_state = 67}, - [1095] = {.lex_state = 58}, - [1096] = {.lex_state = 67}, - [1097] = {.lex_state = 67}, - [1098] = {.lex_state = 42}, - [1099] = {.lex_state = 42}, - [1100] = {.lex_state = 47}, - [1101] = {.lex_state = 46}, - [1102] = {.lex_state = 46}, - [1103] = {.lex_state = 53}, - [1104] = {.lex_state = 49}, - [1105] = {.lex_state = 52}, - [1106] = {.lex_state = 57}, - [1107] = {.lex_state = 57}, - [1108] = {.lex_state = 57}, - [1109] = {.lex_state = 57}, - [1110] = {.lex_state = 57}, - [1111] = {.lex_state = 57}, - [1112] = {.lex_state = 57}, - [1113] = {.lex_state = 57}, - [1114] = {.lex_state = 57}, - [1115] = {.lex_state = 57}, - [1116] = {.lex_state = 57}, - [1117] = {.lex_state = 57}, - [1118] = {.lex_state = 57}, - [1119] = {.lex_state = 57}, - [1120] = {.lex_state = 57}, - [1121] = {.lex_state = 57}, - [1122] = {.lex_state = 57}, - [1123] = {.lex_state = 57}, - [1124] = {.lex_state = 57}, - [1125] = {.lex_state = 57}, - [1126] = {.lex_state = 57}, - [1127] = {.lex_state = 57}, - [1128] = {.lex_state = 57}, - [1129] = {.lex_state = 53}, - [1130] = {.lex_state = 57}, - [1131] = {.lex_state = 57}, - [1132] = {.lex_state = 57}, - [1133] = {.lex_state = 57}, - [1134] = {.lex_state = 57}, - [1135] = {.lex_state = 57}, - [1136] = {.lex_state = 57}, - [1137] = {.lex_state = 57}, - [1138] = {.lex_state = 57}, - [1139] = {.lex_state = 57}, - [1140] = {.lex_state = 57}, - [1141] = {.lex_state = 57}, - [1142] = {.lex_state = 57}, - [1143] = {.lex_state = 57}, - [1144] = {.lex_state = 54}, - [1145] = {.lex_state = 57}, - [1146] = {.lex_state = 50}, - [1147] = {.lex_state = 57}, - [1148] = {.lex_state = 57}, - [1149] = {.lex_state = 57}, - [1150] = {.lex_state = 57}, - [1151] = {.lex_state = 57}, - [1152] = {.lex_state = 57}, - [1153] = {.lex_state = 57}, - [1154] = {.lex_state = 57}, - [1155] = {.lex_state = 57}, - [1156] = {.lex_state = 57}, - [1157] = {.lex_state = 57}, - [1158] = {.lex_state = 57}, - [1159] = {.lex_state = 57}, - [1160] = {.lex_state = 57}, - [1161] = {.lex_state = 57}, - [1162] = {.lex_state = 51}, - [1163] = {.lex_state = 57}, - [1164] = {.lex_state = 53}, - [1165] = {.lex_state = 53}, - [1166] = {.lex_state = 53}, - [1167] = {.lex_state = 53}, - [1168] = {.lex_state = 53}, - [1169] = {.lex_state = 53}, - [1170] = {.lex_state = 53}, - [1171] = {.lex_state = 53}, - [1172] = {.lex_state = 53}, - [1173] = {.lex_state = 53}, - [1174] = {.lex_state = 53}, - [1175] = {.lex_state = 53}, - [1176] = {.lex_state = 53}, - [1177] = {.lex_state = 53}, - [1178] = {.lex_state = 53}, - [1179] = {.lex_state = 53}, - [1180] = {.lex_state = 53}, - [1181] = {.lex_state = 53}, - [1182] = {.lex_state = 53}, - [1183] = {.lex_state = 53}, - [1184] = {.lex_state = 53}, - [1185] = {.lex_state = 53}, - [1186] = {.lex_state = 53}, - [1187] = {.lex_state = 53}, - [1188] = {.lex_state = 53}, - [1189] = {.lex_state = 53}, - [1190] = {.lex_state = 57}, - [1191] = {.lex_state = 53}, - [1192] = {.lex_state = 53}, - [1193] = {.lex_state = 53}, - [1194] = {.lex_state = 53}, - [1195] = {.lex_state = 53}, - [1196] = {.lex_state = 53}, - [1197] = {.lex_state = 53}, - [1198] = {.lex_state = 53}, - [1199] = {.lex_state = 59}, - [1200] = {.lex_state = 53}, - [1201] = {.lex_state = 53}, - [1202] = {.lex_state = 55}, - [1203] = {.lex_state = 53}, - [1204] = {.lex_state = 53}, - [1205] = {.lex_state = 53}, - [1206] = {.lex_state = 53}, - [1207] = {.lex_state = 43}, - [1208] = {.lex_state = 53}, - [1209] = {.lex_state = 53}, - [1210] = {.lex_state = 53}, - [1211] = {.lex_state = 53}, - [1212] = {.lex_state = 53}, - [1213] = {.lex_state = 53}, - [1214] = {.lex_state = 53}, - [1215] = {.lex_state = 53}, - [1216] = {.lex_state = 53}, - [1217] = {.lex_state = 53}, - [1218] = {.lex_state = 53}, - [1219] = {.lex_state = 53}, - [1220] = {.lex_state = 48}, - [1221] = {.lex_state = 53}, - [1222] = {.lex_state = 59}, - [1223] = {.lex_state = 59}, - [1224] = {.lex_state = 59}, - [1225] = {.lex_state = 59}, - [1226] = {.lex_state = 59}, - [1227] = {.lex_state = 59}, - [1228] = {.lex_state = 52}, - [1229] = {.lex_state = 59}, - [1230] = {.lex_state = 59}, - [1231] = {.lex_state = 59}, - [1232] = {.lex_state = 59}, - [1233] = {.lex_state = 59}, - [1234] = {.lex_state = 59}, - [1235] = {.lex_state = 59}, - [1236] = {.lex_state = 59}, - [1237] = {.lex_state = 59}, - [1238] = {.lex_state = 59}, - [1239] = {.lex_state = 59}, - [1240] = {.lex_state = 59}, - [1241] = {.lex_state = 59}, - [1242] = {.lex_state = 59}, - [1243] = {.lex_state = 59}, - [1244] = {.lex_state = 59}, - [1245] = {.lex_state = 59}, - [1246] = {.lex_state = 59}, - [1247] = {.lex_state = 59}, - [1248] = {.lex_state = 59}, - [1249] = {.lex_state = 59}, - [1250] = {.lex_state = 59}, - [1251] = {.lex_state = 59}, - [1252] = {.lex_state = 59}, - [1253] = {.lex_state = 59}, - [1254] = {.lex_state = 59}, - [1255] = {.lex_state = 59}, - [1256] = {.lex_state = 59}, - [1257] = {.lex_state = 59}, - [1258] = {.lex_state = 59}, - [1259] = {.lex_state = 60}, - [1260] = {.lex_state = 59}, - [1261] = {.lex_state = 59}, - [1262] = {.lex_state = 59}, - [1263] = {.lex_state = 59}, - [1264] = {.lex_state = 59}, - [1265] = {.lex_state = 59}, - [1266] = {.lex_state = 59}, - [1267] = {.lex_state = 59}, - [1268] = {.lex_state = 59}, - [1269] = {.lex_state = 59}, - [1270] = {.lex_state = 59}, - [1271] = {.lex_state = 59}, - [1272] = {.lex_state = 56}, - [1273] = {.lex_state = 59}, - [1274] = {.lex_state = 59}, - [1275] = {.lex_state = 59}, - [1276] = {.lex_state = 59}, - [1277] = {.lex_state = 47}, - [1278] = {.lex_state = 59}, - [1279] = {.lex_state = 52}, - [1280] = {.lex_state = 52}, - [1281] = {.lex_state = 52}, - [1282] = {.lex_state = 52}, - [1283] = {.lex_state = 52}, - [1284] = {.lex_state = 52}, - [1285] = {.lex_state = 52}, - [1286] = {.lex_state = 52}, - [1287] = {.lex_state = 52}, - [1288] = {.lex_state = 52}, - [1289] = {.lex_state = 52}, - [1290] = {.lex_state = 52}, - [1291] = {.lex_state = 52}, - [1292] = {.lex_state = 52}, - [1293] = {.lex_state = 52}, - [1294] = {.lex_state = 52}, - [1295] = {.lex_state = 52}, - [1296] = {.lex_state = 52}, - [1297] = {.lex_state = 52}, - [1298] = {.lex_state = 52}, - [1299] = {.lex_state = 52}, - [1300] = {.lex_state = 52}, - [1301] = {.lex_state = 52}, - [1302] = {.lex_state = 52}, - [1303] = {.lex_state = 56}, - [1304] = {.lex_state = 52}, - [1305] = {.lex_state = 52}, - [1306] = {.lex_state = 52}, - [1307] = {.lex_state = 52}, - [1308] = {.lex_state = 52}, - [1309] = {.lex_state = 52}, - [1310] = {.lex_state = 52}, - [1311] = {.lex_state = 52}, - [1312] = {.lex_state = 52}, - [1313] = {.lex_state = 52}, - [1314] = {.lex_state = 52}, - [1315] = {.lex_state = 51}, - [1316] = {.lex_state = 52}, - [1317] = {.lex_state = 56}, - [1318] = {.lex_state = 52}, - [1319] = {.lex_state = 52}, - [1320] = {.lex_state = 52}, - [1321] = {.lex_state = 52}, - [1322] = {.lex_state = 52}, - [1323] = {.lex_state = 52}, - [1324] = {.lex_state = 52}, - [1325] = {.lex_state = 52}, - [1326] = {.lex_state = 52}, - [1327] = {.lex_state = 52}, - [1328] = {.lex_state = 52}, - [1329] = {.lex_state = 52}, - [1330] = {.lex_state = 52}, - [1331] = {.lex_state = 60}, - [1332] = {.lex_state = 52}, - [1333] = {.lex_state = 52}, - [1334] = {.lex_state = 52}, - [1335] = {.lex_state = 52}, - [1336] = {.lex_state = 51}, - [1337] = {.lex_state = 51}, - [1338] = {.lex_state = 51}, - [1339] = {.lex_state = 51}, - [1340] = {.lex_state = 51}, - [1341] = {.lex_state = 51}, - [1342] = {.lex_state = 51}, - [1343] = {.lex_state = 51}, - [1344] = {.lex_state = 51}, - [1345] = {.lex_state = 51}, - [1346] = {.lex_state = 51}, - [1347] = {.lex_state = 51}, - [1348] = {.lex_state = 51}, - [1349] = {.lex_state = 51}, - [1350] = {.lex_state = 51}, - [1351] = {.lex_state = 51}, - [1352] = {.lex_state = 51}, - [1353] = {.lex_state = 51}, - [1354] = {.lex_state = 51}, - [1355] = {.lex_state = 51}, - [1356] = {.lex_state = 48}, - [1357] = {.lex_state = 51}, - [1358] = {.lex_state = 51}, - [1359] = {.lex_state = 51}, - [1360] = {.lex_state = 51}, - [1361] = {.lex_state = 51}, - [1362] = {.lex_state = 60}, - [1363] = {.lex_state = 51}, - [1364] = {.lex_state = 51}, - [1365] = {.lex_state = 51}, - [1366] = {.lex_state = 51}, - [1367] = {.lex_state = 51}, - [1368] = {.lex_state = 51}, - [1369] = {.lex_state = 51}, - [1370] = {.lex_state = 51}, - [1371] = {.lex_state = 51}, - [1372] = {.lex_state = 51}, - [1373] = {.lex_state = 51}, - [1374] = {.lex_state = 57}, - [1375] = {.lex_state = 51}, - [1376] = {.lex_state = 51}, - [1377] = {.lex_state = 51}, - [1378] = {.lex_state = 51}, + [1027] = {.lex_state = 68}, + [1028] = {.lex_state = 70}, + [1029] = {.lex_state = 68}, + [1030] = {.lex_state = 68}, + [1031] = {.lex_state = 70}, + [1032] = {.lex_state = 68}, + [1033] = {.lex_state = 67}, + [1034] = {.lex_state = 68}, + [1035] = {.lex_state = 68}, + [1036] = {.lex_state = 68}, + [1037] = {.lex_state = 68}, + [1038] = {.lex_state = 68}, + [1039] = {.lex_state = 68}, + [1040] = {.lex_state = 68}, + [1041] = {.lex_state = 68}, + [1042] = {.lex_state = 67}, + [1043] = {.lex_state = 68}, + [1044] = {.lex_state = 68}, + [1045] = {.lex_state = 68}, + [1046] = {.lex_state = 68}, + [1047] = {.lex_state = 74}, + [1048] = {.lex_state = 68}, + [1049] = {.lex_state = 68}, + [1050] = {.lex_state = 68}, + [1051] = {.lex_state = 68}, + [1052] = {.lex_state = 68}, + [1053] = {.lex_state = 68}, + [1054] = {.lex_state = 68}, + [1055] = {.lex_state = 64}, + [1056] = {.lex_state = 70}, + [1057] = {.lex_state = 70}, + [1058] = {.lex_state = 68}, + [1059] = {.lex_state = 61}, + [1060] = {.lex_state = 61}, + [1061] = {.lex_state = 61}, + [1062] = {.lex_state = 61}, + [1063] = {.lex_state = 65}, + [1064] = {.lex_state = 61}, + [1065] = {.lex_state = 61}, + [1066] = {.lex_state = 69}, + [1067] = {.lex_state = 70}, + [1068] = {.lex_state = 70}, + [1069] = {.lex_state = 61}, + [1070] = {.lex_state = 69}, + [1071] = {.lex_state = 69}, + [1072] = {.lex_state = 69}, + [1073] = {.lex_state = 69}, + [1074] = {.lex_state = 69}, + [1075] = {.lex_state = 69}, + [1076] = {.lex_state = 69}, + [1077] = {.lex_state = 69}, + [1078] = {.lex_state = 69}, + [1079] = {.lex_state = 69}, + [1080] = {.lex_state = 69}, + [1081] = {.lex_state = 69}, + [1082] = {.lex_state = 69}, + [1083] = {.lex_state = 69}, + [1084] = {.lex_state = 69}, + [1085] = {.lex_state = 63}, + [1086] = {.lex_state = 69}, + [1087] = {.lex_state = 61}, + [1088] = {.lex_state = 69}, + [1089] = {.lex_state = 69}, + [1090] = {.lex_state = 69}, + [1091] = {.lex_state = 69}, + [1092] = {.lex_state = 61}, + [1093] = {.lex_state = 69}, + [1094] = {.lex_state = 69}, + [1095] = {.lex_state = 63}, + [1096] = {.lex_state = 69}, + [1097] = {.lex_state = 69}, + [1098] = {.lex_state = 69}, + [1099] = {.lex_state = 69}, + [1100] = {.lex_state = 69}, + [1101] = {.lex_state = 69}, + [1102] = {.lex_state = 69}, + [1103] = {.lex_state = 69}, + [1104] = {.lex_state = 69}, + [1105] = {.lex_state = 69}, + [1106] = {.lex_state = 69}, + [1107] = {.lex_state = 69}, + [1108] = {.lex_state = 69}, + [1109] = {.lex_state = 69}, + [1110] = {.lex_state = 69}, + [1111] = {.lex_state = 69}, + [1112] = {.lex_state = 69}, + [1113] = {.lex_state = 69}, + [1114] = {.lex_state = 69}, + [1115] = {.lex_state = 69}, + [1116] = {.lex_state = 69}, + [1117] = {.lex_state = 69}, + [1118] = {.lex_state = 69}, + [1119] = {.lex_state = 69}, + [1120] = {.lex_state = 69}, + [1121] = {.lex_state = 69}, + [1122] = {.lex_state = 69}, + [1123] = {.lex_state = 69}, + [1124] = {.lex_state = 69}, + [1125] = {.lex_state = 69}, + [1126] = {.lex_state = 69}, + [1127] = {.lex_state = 69}, + [1128] = {.lex_state = 61}, + [1129] = {.lex_state = 69}, + [1130] = {.lex_state = 69}, + [1131] = {.lex_state = 69}, + [1132] = {.lex_state = 64}, + [1133] = {.lex_state = 63}, + [1134] = {.lex_state = 7}, + [1135] = {.lex_state = 61}, + [1136] = {.lex_state = 64}, + [1137] = {.lex_state = 64}, + [1138] = {.lex_state = 64}, + [1139] = {.lex_state = 64}, + [1140] = {.lex_state = 64}, + [1141] = {.lex_state = 64}, + [1142] = {.lex_state = 64}, + [1143] = {.lex_state = 64}, + [1144] = {.lex_state = 64}, + [1145] = {.lex_state = 64}, + [1146] = {.lex_state = 64}, + [1147] = {.lex_state = 64}, + [1148] = {.lex_state = 64}, + [1149] = {.lex_state = 64}, + [1150] = {.lex_state = 64}, + [1151] = {.lex_state = 71}, + [1152] = {.lex_state = 64}, + [1153] = {.lex_state = 61}, + [1154] = {.lex_state = 64}, + [1155] = {.lex_state = 64}, + [1156] = {.lex_state = 64}, + [1157] = {.lex_state = 64}, + [1158] = {.lex_state = 68}, + [1159] = {.lex_state = 64}, + [1160] = {.lex_state = 64}, + [1161] = {.lex_state = 72}, + [1162] = {.lex_state = 64}, + [1163] = {.lex_state = 64}, + [1164] = {.lex_state = 72}, + [1165] = {.lex_state = 64}, + [1166] = {.lex_state = 64}, + [1167] = {.lex_state = 64}, + [1168] = {.lex_state = 64}, + [1169] = {.lex_state = 64}, + [1170] = {.lex_state = 64}, + [1171] = {.lex_state = 64}, + [1172] = {.lex_state = 64}, + [1173] = {.lex_state = 64}, + [1174] = {.lex_state = 64}, + [1175] = {.lex_state = 64}, + [1176] = {.lex_state = 64}, + [1177] = {.lex_state = 64}, + [1178] = {.lex_state = 64}, + [1179] = {.lex_state = 64}, + [1180] = {.lex_state = 64}, + [1181] = {.lex_state = 64}, + [1182] = {.lex_state = 64}, + [1183] = {.lex_state = 64}, + [1184] = {.lex_state = 64}, + [1185] = {.lex_state = 64}, + [1186] = {.lex_state = 64}, + [1187] = {.lex_state = 64}, + [1188] = {.lex_state = 64}, + [1189] = {.lex_state = 64}, + [1190] = {.lex_state = 64}, + [1191] = {.lex_state = 64}, + [1192] = {.lex_state = 64}, + [1193] = {.lex_state = 64}, + [1194] = {.lex_state = 68}, + [1195] = {.lex_state = 64}, + [1196] = {.lex_state = 64}, + [1197] = {.lex_state = 64}, + [1198] = {.lex_state = 71}, + [1199] = {.lex_state = 72}, + [1200] = {.lex_state = 8}, + [1201] = {.lex_state = 61}, + [1202] = {.lex_state = 71}, + [1203] = {.lex_state = 71}, + [1204] = {.lex_state = 71}, + [1205] = {.lex_state = 71}, + [1206] = {.lex_state = 71}, + [1207] = {.lex_state = 71}, + [1208] = {.lex_state = 71}, + [1209] = {.lex_state = 71}, + [1210] = {.lex_state = 71}, + [1211] = {.lex_state = 71}, + [1212] = {.lex_state = 71}, + [1213] = {.lex_state = 71}, + [1214] = {.lex_state = 71}, + [1215] = {.lex_state = 71}, + [1216] = {.lex_state = 71}, + [1217] = {.lex_state = 71}, + [1218] = {.lex_state = 61}, + [1219] = {.lex_state = 71}, + [1220] = {.lex_state = 71}, + [1221] = {.lex_state = 71}, + [1222] = {.lex_state = 71}, + [1223] = {.lex_state = 74}, + [1224] = {.lex_state = 71}, + [1225] = {.lex_state = 71}, + [1226] = {.lex_state = 71}, + [1227] = {.lex_state = 71}, + [1228] = {.lex_state = 63}, + [1229] = {.lex_state = 71}, + [1230] = {.lex_state = 71}, + [1231] = {.lex_state = 71}, + [1232] = {.lex_state = 71}, + [1233] = {.lex_state = 71}, + [1234] = {.lex_state = 71}, + [1235] = {.lex_state = 71}, + [1236] = {.lex_state = 71}, + [1237] = {.lex_state = 71}, + [1238] = {.lex_state = 71}, + [1239] = {.lex_state = 71}, + [1240] = {.lex_state = 71}, + [1241] = {.lex_state = 71}, + [1242] = {.lex_state = 71}, + [1243] = {.lex_state = 71}, + [1244] = {.lex_state = 71}, + [1245] = {.lex_state = 71}, + [1246] = {.lex_state = 71}, + [1247] = {.lex_state = 71}, + [1248] = {.lex_state = 71}, + [1249] = {.lex_state = 71}, + [1250] = {.lex_state = 71}, + [1251] = {.lex_state = 71}, + [1252] = {.lex_state = 71}, + [1253] = {.lex_state = 71}, + [1254] = {.lex_state = 71}, + [1255] = {.lex_state = 71}, + [1256] = {.lex_state = 71}, + [1257] = {.lex_state = 71}, + [1258] = {.lex_state = 74}, + [1259] = {.lex_state = 71}, + [1260] = {.lex_state = 71}, + [1261] = {.lex_state = 71}, + [1262] = {.lex_state = 66}, + [1263] = {.lex_state = 70}, + [1264] = {.lex_state = 63}, + [1265] = {.lex_state = 61}, + [1266] = {.lex_state = 66}, + [1267] = {.lex_state = 66}, + [1268] = {.lex_state = 66}, + [1269] = {.lex_state = 66}, + [1270] = {.lex_state = 66}, + [1271] = {.lex_state = 66}, + [1272] = {.lex_state = 66}, + [1273] = {.lex_state = 66}, + [1274] = {.lex_state = 66}, + [1275] = {.lex_state = 66}, + [1276] = {.lex_state = 66}, + [1277] = {.lex_state = 66}, + [1278] = {.lex_state = 66}, + [1279] = {.lex_state = 66}, + [1280] = {.lex_state = 66}, + [1281] = {.lex_state = 66}, + [1282] = {.lex_state = 61}, + [1283] = {.lex_state = 66}, + [1284] = {.lex_state = 66}, + [1285] = {.lex_state = 66}, + [1286] = {.lex_state = 66}, + [1287] = {.lex_state = 75}, + [1288] = {.lex_state = 66}, + [1289] = {.lex_state = 66}, + [1290] = {.lex_state = 66}, + [1291] = {.lex_state = 66}, + [1292] = {.lex_state = 70}, + [1293] = {.lex_state = 66}, + [1294] = {.lex_state = 66}, + [1295] = {.lex_state = 66}, + [1296] = {.lex_state = 66}, + [1297] = {.lex_state = 66}, + [1298] = {.lex_state = 66}, + [1299] = {.lex_state = 66}, + [1300] = {.lex_state = 66}, + [1301] = {.lex_state = 66}, + [1302] = {.lex_state = 66}, + [1303] = {.lex_state = 66}, + [1304] = {.lex_state = 66}, + [1305] = {.lex_state = 66}, + [1306] = {.lex_state = 66}, + [1307] = {.lex_state = 66}, + [1308] = {.lex_state = 66}, + [1309] = {.lex_state = 66}, + [1310] = {.lex_state = 66}, + [1311] = {.lex_state = 66}, + [1312] = {.lex_state = 66}, + [1313] = {.lex_state = 66}, + [1314] = {.lex_state = 66}, + [1315] = {.lex_state = 66}, + [1316] = {.lex_state = 66}, + [1317] = {.lex_state = 66}, + [1318] = {.lex_state = 66}, + [1319] = {.lex_state = 66}, + [1320] = {.lex_state = 66}, + [1321] = {.lex_state = 66}, + [1322] = {.lex_state = 75}, + [1323] = {.lex_state = 66}, + [1324] = {.lex_state = 66}, + [1325] = {.lex_state = 66}, + [1326] = {.lex_state = 61}, + [1327] = {.lex_state = 70}, + [1328] = {.lex_state = 99}, + [1329] = {.lex_state = 69}, + [1330] = {.lex_state = 61}, + [1331] = {.lex_state = 61}, + [1332] = {.lex_state = 61}, + [1333] = {.lex_state = 61}, + [1334] = {.lex_state = 61}, + [1335] = {.lex_state = 61}, + [1336] = {.lex_state = 61}, + [1337] = {.lex_state = 61}, + [1338] = {.lex_state = 61}, + [1339] = {.lex_state = 61}, + [1340] = {.lex_state = 61}, + [1341] = {.lex_state = 61}, + [1342] = {.lex_state = 61}, + [1343] = {.lex_state = 61}, + [1344] = {.lex_state = 61}, + [1345] = {.lex_state = 61}, + [1346] = {.lex_state = 61}, + [1347] = {.lex_state = 61}, + [1348] = {.lex_state = 61}, + [1349] = {.lex_state = 61}, + [1350] = {.lex_state = 65}, + [1351] = {.lex_state = 61}, + [1352] = {.lex_state = 61}, + [1353] = {.lex_state = 61}, + [1354] = {.lex_state = 61}, + [1355] = {.lex_state = 61}, + [1356] = {.lex_state = 61}, + [1357] = {.lex_state = 61}, + [1358] = {.lex_state = 61}, + [1359] = {.lex_state = 61}, + [1360] = {.lex_state = 61}, + [1361] = {.lex_state = 61}, + [1362] = {.lex_state = 61}, + [1363] = {.lex_state = 61}, + [1364] = {.lex_state = 61}, + [1365] = {.lex_state = 61}, + [1366] = {.lex_state = 61}, + [1367] = {.lex_state = 61}, + [1368] = {.lex_state = 61}, + [1369] = {.lex_state = 61}, + [1370] = {.lex_state = 61}, + [1371] = {.lex_state = 45}, + [1372] = {.lex_state = 45}, + [1373] = {.lex_state = 57}, + [1374] = {.lex_state = 50}, + [1375] = {.lex_state = 54}, + [1376] = {.lex_state = 60}, + [1377] = {.lex_state = 50}, + [1378] = {.lex_state = 60}, [1379] = {.lex_state = 51}, - [1380] = {.lex_state = 51}, - [1381] = {.lex_state = 51}, - [1382] = {.lex_state = 51}, - [1383] = {.lex_state = 51}, - [1384] = {.lex_state = 51}, - [1385] = {.lex_state = 51}, - [1386] = {.lex_state = 51}, - [1387] = {.lex_state = 51}, - [1388] = {.lex_state = 51}, - [1389] = {.lex_state = 51}, - [1390] = {.lex_state = 55}, - [1391] = {.lex_state = 51}, - [1392] = {.lex_state = 51}, - [1393] = {.lex_state = 48}, - [1394] = {.lex_state = 48}, - [1395] = {.lex_state = 48}, - [1396] = {.lex_state = 57}, - [1397] = {.lex_state = 48}, - [1398] = {.lex_state = 48}, - [1399] = {.lex_state = 48}, - [1400] = {.lex_state = 48}, - [1401] = {.lex_state = 48}, - [1402] = {.lex_state = 48}, - [1403] = {.lex_state = 48}, - [1404] = {.lex_state = 48}, - [1405] = {.lex_state = 48}, - [1406] = {.lex_state = 48}, - [1407] = {.lex_state = 48}, - [1408] = {.lex_state = 48}, - [1409] = {.lex_state = 48}, - [1410] = {.lex_state = 48}, - [1411] = {.lex_state = 48}, - [1412] = {.lex_state = 48}, - [1413] = {.lex_state = 48}, - [1414] = {.lex_state = 48}, - [1415] = {.lex_state = 48}, - [1416] = {.lex_state = 48}, - [1417] = {.lex_state = 48}, - [1418] = {.lex_state = 48}, - [1419] = {.lex_state = 48}, - [1420] = {.lex_state = 48}, - [1421] = {.lex_state = 55}, - [1422] = {.lex_state = 48}, - [1423] = {.lex_state = 48}, - [1424] = {.lex_state = 48}, - [1425] = {.lex_state = 56}, - [1426] = {.lex_state = 57}, - [1427] = {.lex_state = 48}, - [1428] = {.lex_state = 48}, - [1429] = {.lex_state = 56}, - [1430] = {.lex_state = 56}, - [1431] = {.lex_state = 56}, - [1432] = {.lex_state = 56}, - [1433] = {.lex_state = 56}, - [1434] = {.lex_state = 56}, - [1435] = {.lex_state = 56}, - [1436] = {.lex_state = 56}, - [1437] = {.lex_state = 56}, - [1438] = {.lex_state = 56}, - [1439] = {.lex_state = 56}, - [1440] = {.lex_state = 56}, - [1441] = {.lex_state = 56}, - [1442] = {.lex_state = 56}, - [1443] = {.lex_state = 56}, - [1444] = {.lex_state = 56}, - [1445] = {.lex_state = 56}, - [1446] = {.lex_state = 56}, - [1447] = {.lex_state = 56}, - [1448] = {.lex_state = 56}, + [1380] = {.lex_state = 62}, + [1381] = {.lex_state = 56}, + [1382] = {.lex_state = 53}, + [1383] = {.lex_state = 60}, + [1384] = {.lex_state = 60}, + [1385] = {.lex_state = 60}, + [1386] = {.lex_state = 60}, + [1387] = {.lex_state = 60}, + [1388] = {.lex_state = 60}, + [1389] = {.lex_state = 60}, + [1390] = {.lex_state = 60}, + [1391] = {.lex_state = 60}, + [1392] = {.lex_state = 60}, + [1393] = {.lex_state = 60}, + [1394] = {.lex_state = 60}, + [1395] = {.lex_state = 60}, + [1396] = {.lex_state = 60}, + [1397] = {.lex_state = 60}, + [1398] = {.lex_state = 60}, + [1399] = {.lex_state = 60}, + [1400] = {.lex_state = 60}, + [1401] = {.lex_state = 60}, + [1402] = {.lex_state = 60}, + [1403] = {.lex_state = 60}, + [1404] = {.lex_state = 60}, + [1405] = {.lex_state = 60}, + [1406] = {.lex_state = 60}, + [1407] = {.lex_state = 60}, + [1408] = {.lex_state = 60}, + [1409] = {.lex_state = 60}, + [1410] = {.lex_state = 60}, + [1411] = {.lex_state = 60}, + [1412] = {.lex_state = 60}, + [1413] = {.lex_state = 60}, + [1414] = {.lex_state = 60}, + [1415] = {.lex_state = 60}, + [1416] = {.lex_state = 60}, + [1417] = {.lex_state = 60}, + [1418] = {.lex_state = 54}, + [1419] = {.lex_state = 60}, + [1420] = {.lex_state = 60}, + [1421] = {.lex_state = 60}, + [1422] = {.lex_state = 60}, + [1423] = {.lex_state = 57}, + [1424] = {.lex_state = 60}, + [1425] = {.lex_state = 60}, + [1426] = {.lex_state = 60}, + [1427] = {.lex_state = 60}, + [1428] = {.lex_state = 60}, + [1429] = {.lex_state = 60}, + [1430] = {.lex_state = 60}, + [1431] = {.lex_state = 60}, + [1432] = {.lex_state = 60}, + [1433] = {.lex_state = 60}, + [1434] = {.lex_state = 60}, + [1435] = {.lex_state = 60}, + [1436] = {.lex_state = 60}, + [1437] = {.lex_state = 60}, + [1438] = {.lex_state = 60}, + [1439] = {.lex_state = 60}, + [1440] = {.lex_state = 55}, + [1441] = {.lex_state = 60}, + [1442] = {.lex_state = 54}, + [1443] = {.lex_state = 54}, + [1444] = {.lex_state = 54}, + [1445] = {.lex_state = 54}, + [1446] = {.lex_state = 54}, + [1447] = {.lex_state = 54}, + [1448] = {.lex_state = 54}, [1449] = {.lex_state = 54}, - [1450] = {.lex_state = 56}, - [1451] = {.lex_state = 56}, - [1452] = {.lex_state = 56}, - [1453] = {.lex_state = 56}, - [1454] = {.lex_state = 56}, - [1455] = {.lex_state = 56}, - [1456] = {.lex_state = 56}, - [1457] = {.lex_state = 56}, - [1458] = {.lex_state = 56}, - [1459] = {.lex_state = 56}, - [1460] = {.lex_state = 56}, - [1461] = {.lex_state = 56}, - [1462] = {.lex_state = 56}, - [1463] = {.lex_state = 56}, - [1464] = {.lex_state = 56}, - [1465] = {.lex_state = 56}, - [1466] = {.lex_state = 56}, - [1467] = {.lex_state = 56}, - [1468] = {.lex_state = 56}, - [1469] = {.lex_state = 56}, - [1470] = {.lex_state = 56}, - [1471] = {.lex_state = 56}, - [1472] = {.lex_state = 56}, - [1473] = {.lex_state = 56}, - [1474] = {.lex_state = 56}, - [1475] = {.lex_state = 56}, - [1476] = {.lex_state = 56}, - [1477] = {.lex_state = 56}, - [1478] = {.lex_state = 56}, - [1479] = {.lex_state = 56}, + [1450] = {.lex_state = 54}, + [1451] = {.lex_state = 54}, + [1452] = {.lex_state = 54}, + [1453] = {.lex_state = 54}, + [1454] = {.lex_state = 54}, + [1455] = {.lex_state = 54}, + [1456] = {.lex_state = 54}, + [1457] = {.lex_state = 54}, + [1458] = {.lex_state = 54}, + [1459] = {.lex_state = 54}, + [1460] = {.lex_state = 54}, + [1461] = {.lex_state = 54}, + [1462] = {.lex_state = 54}, + [1463] = {.lex_state = 54}, + [1464] = {.lex_state = 54}, + [1465] = {.lex_state = 54}, + [1466] = {.lex_state = 54}, + [1467] = {.lex_state = 54}, + [1468] = {.lex_state = 54}, + [1469] = {.lex_state = 54}, + [1470] = {.lex_state = 54}, + [1471] = {.lex_state = 54}, + [1472] = {.lex_state = 54}, + [1473] = {.lex_state = 54}, + [1474] = {.lex_state = 48}, + [1475] = {.lex_state = 54}, + [1476] = {.lex_state = 54}, + [1477] = {.lex_state = 54}, + [1478] = {.lex_state = 54}, + [1479] = {.lex_state = 54}, [1480] = {.lex_state = 54}, - [1481] = {.lex_state = 56}, - [1482] = {.lex_state = 56}, - [1483] = {.lex_state = 56}, - [1484] = {.lex_state = 60}, - [1485] = {.lex_state = 48}, - [1486] = {.lex_state = 48}, - [1487] = {.lex_state = 48}, - [1488] = {.lex_state = 60}, - [1489] = {.lex_state = 60}, - [1490] = {.lex_state = 60}, - [1491] = {.lex_state = 60}, - [1492] = {.lex_state = 60}, - [1493] = {.lex_state = 60}, - [1494] = {.lex_state = 60}, - [1495] = {.lex_state = 60}, - [1496] = {.lex_state = 60}, - [1497] = {.lex_state = 60}, - [1498] = {.lex_state = 60}, - [1499] = {.lex_state = 60}, - [1500] = {.lex_state = 60}, - [1501] = {.lex_state = 60}, - [1502] = {.lex_state = 60}, - [1503] = {.lex_state = 60}, - [1504] = {.lex_state = 60}, - [1505] = {.lex_state = 60}, - [1506] = {.lex_state = 60}, - [1507] = {.lex_state = 60}, - [1508] = {.lex_state = 49}, - [1509] = {.lex_state = 60}, - [1510] = {.lex_state = 60}, - [1511] = {.lex_state = 60}, - [1512] = {.lex_state = 60}, - [1513] = {.lex_state = 60}, - [1514] = {.lex_state = 60}, - [1515] = {.lex_state = 60}, - [1516] = {.lex_state = 60}, - [1517] = {.lex_state = 60}, - [1518] = {.lex_state = 60}, - [1519] = {.lex_state = 60}, - [1520] = {.lex_state = 60}, - [1521] = {.lex_state = 60}, - [1522] = {.lex_state = 60}, - [1523] = {.lex_state = 60}, - [1524] = {.lex_state = 60}, - [1525] = {.lex_state = 60}, - [1526] = {.lex_state = 60}, - [1527] = {.lex_state = 60}, - [1528] = {.lex_state = 60}, - [1529] = {.lex_state = 60}, - [1530] = {.lex_state = 60}, - [1531] = {.lex_state = 60}, - [1532] = {.lex_state = 60}, - [1533] = {.lex_state = 60}, - [1534] = {.lex_state = 60}, - [1535] = {.lex_state = 60}, - [1536] = {.lex_state = 60}, - [1537] = {.lex_state = 60}, - [1538] = {.lex_state = 60}, - [1539] = {.lex_state = 49}, - [1540] = {.lex_state = 60}, - [1541] = {.lex_state = 60}, - [1542] = {.lex_state = 60}, - [1543] = {.lex_state = 55}, - [1544] = {.lex_state = 48}, - [1545] = {.lex_state = 48}, - [1546] = {.lex_state = 53}, - [1547] = {.lex_state = 55}, - [1548] = {.lex_state = 55}, - [1549] = {.lex_state = 55}, - [1550] = {.lex_state = 55}, - [1551] = {.lex_state = 55}, - [1552] = {.lex_state = 55}, - [1553] = {.lex_state = 55}, - [1554] = {.lex_state = 55}, - [1555] = {.lex_state = 55}, - [1556] = {.lex_state = 55}, - [1557] = {.lex_state = 55}, - [1558] = {.lex_state = 55}, - [1559] = {.lex_state = 55}, - [1560] = {.lex_state = 55}, - [1561] = {.lex_state = 55}, - [1562] = {.lex_state = 55}, - [1563] = {.lex_state = 55}, - [1564] = {.lex_state = 55}, - [1565] = {.lex_state = 55}, - [1566] = {.lex_state = 55}, - [1567] = {.lex_state = 46}, - [1568] = {.lex_state = 55}, - [1569] = {.lex_state = 55}, - [1570] = {.lex_state = 55}, - [1571] = {.lex_state = 55}, - [1572] = {.lex_state = 55}, - [1573] = {.lex_state = 55}, - [1574] = {.lex_state = 55}, - [1575] = {.lex_state = 55}, - [1576] = {.lex_state = 55}, - [1577] = {.lex_state = 55}, - [1578] = {.lex_state = 55}, - [1579] = {.lex_state = 55}, - [1580] = {.lex_state = 55}, - [1581] = {.lex_state = 55}, - [1582] = {.lex_state = 55}, - [1583] = {.lex_state = 55}, - [1584] = {.lex_state = 55}, - [1585] = {.lex_state = 55}, - [1586] = {.lex_state = 55}, - [1587] = {.lex_state = 55}, - [1588] = {.lex_state = 55}, - [1589] = {.lex_state = 55}, - [1590] = {.lex_state = 55}, - [1591] = {.lex_state = 55}, - [1592] = {.lex_state = 55}, - [1593] = {.lex_state = 55}, - [1594] = {.lex_state = 55}, - [1595] = {.lex_state = 55}, - [1596] = {.lex_state = 55}, - [1597] = {.lex_state = 55}, - [1598] = {.lex_state = 46}, - [1599] = {.lex_state = 55}, - [1600] = {.lex_state = 55}, - [1601] = {.lex_state = 55}, - [1602] = {.lex_state = 54}, - [1603] = {.lex_state = 48}, - [1604] = {.lex_state = 48}, - [1605] = {.lex_state = 48}, - [1606] = {.lex_state = 54}, - [1607] = {.lex_state = 54}, - [1608] = {.lex_state = 54}, - [1609] = {.lex_state = 54}, - [1610] = {.lex_state = 54}, - [1611] = {.lex_state = 54}, - [1612] = {.lex_state = 54}, - [1613] = {.lex_state = 54}, - [1614] = {.lex_state = 54}, - [1615] = {.lex_state = 54}, - [1616] = {.lex_state = 54}, - [1617] = {.lex_state = 54}, - [1618] = {.lex_state = 54}, - [1619] = {.lex_state = 54}, - [1620] = {.lex_state = 54}, - [1621] = {.lex_state = 54}, - [1622] = {.lex_state = 54}, - [1623] = {.lex_state = 54}, - [1624] = {.lex_state = 54}, - [1625] = {.lex_state = 54}, - [1626] = {.lex_state = 50}, - [1627] = {.lex_state = 54}, - [1628] = {.lex_state = 54}, - [1629] = {.lex_state = 54}, - [1630] = {.lex_state = 54}, - [1631] = {.lex_state = 54}, - [1632] = {.lex_state = 54}, - [1633] = {.lex_state = 54}, - [1634] = {.lex_state = 54}, - [1635] = {.lex_state = 54}, - [1636] = {.lex_state = 54}, - [1637] = {.lex_state = 54}, - [1638] = {.lex_state = 54}, - [1639] = {.lex_state = 54}, - [1640] = {.lex_state = 54}, - [1641] = {.lex_state = 54}, - [1642] = {.lex_state = 54}, - [1643] = {.lex_state = 54}, - [1644] = {.lex_state = 54}, - [1645] = {.lex_state = 54}, - [1646] = {.lex_state = 54}, - [1647] = {.lex_state = 54}, - [1648] = {.lex_state = 54}, - [1649] = {.lex_state = 54}, - [1650] = {.lex_state = 54}, - [1651] = {.lex_state = 54}, - [1652] = {.lex_state = 54}, - [1653] = {.lex_state = 54}, - [1654] = {.lex_state = 54}, - [1655] = {.lex_state = 54}, - [1656] = {.lex_state = 54}, - [1657] = {.lex_state = 50}, - [1658] = {.lex_state = 54}, - [1659] = {.lex_state = 54}, - [1660] = {.lex_state = 54}, - [1661] = {.lex_state = 49}, - [1662] = {.lex_state = 48}, - [1663] = {.lex_state = 48}, - [1664] = {.lex_state = 56}, - [1665] = {.lex_state = 49}, - [1666] = {.lex_state = 49}, - [1667] = {.lex_state = 49}, - [1668] = {.lex_state = 49}, - [1669] = {.lex_state = 49}, - [1670] = {.lex_state = 49}, - [1671] = {.lex_state = 49}, - [1672] = {.lex_state = 49}, - [1673] = {.lex_state = 49}, - [1674] = {.lex_state = 49}, - [1675] = {.lex_state = 49}, - [1676] = {.lex_state = 49}, - [1677] = {.lex_state = 49}, - [1678] = {.lex_state = 49}, - [1679] = {.lex_state = 49}, - [1680] = {.lex_state = 49}, - [1681] = {.lex_state = 49}, - [1682] = {.lex_state = 49}, + [1481] = {.lex_state = 62}, + [1482] = {.lex_state = 54}, + [1483] = {.lex_state = 58}, + [1484] = {.lex_state = 54}, + [1485] = {.lex_state = 54}, + [1486] = {.lex_state = 54}, + [1487] = {.lex_state = 54}, + [1488] = {.lex_state = 54}, + [1489] = {.lex_state = 54}, + [1490] = {.lex_state = 54}, + [1491] = {.lex_state = 54}, + [1492] = {.lex_state = 54}, + [1493] = {.lex_state = 54}, + [1494] = {.lex_state = 54}, + [1495] = {.lex_state = 54}, + [1496] = {.lex_state = 54}, + [1497] = {.lex_state = 54}, + [1498] = {.lex_state = 54}, + [1499] = {.lex_state = 54}, + [1500] = {.lex_state = 49}, + [1501] = {.lex_state = 54}, + [1502] = {.lex_state = 62}, + [1503] = {.lex_state = 62}, + [1504] = {.lex_state = 62}, + [1505] = {.lex_state = 62}, + [1506] = {.lex_state = 62}, + [1507] = {.lex_state = 62}, + [1508] = {.lex_state = 47}, + [1509] = {.lex_state = 62}, + [1510] = {.lex_state = 62}, + [1511] = {.lex_state = 62}, + [1512] = {.lex_state = 62}, + [1513] = {.lex_state = 62}, + [1514] = {.lex_state = 62}, + [1515] = {.lex_state = 62}, + [1516] = {.lex_state = 62}, + [1517] = {.lex_state = 62}, + [1518] = {.lex_state = 62}, + [1519] = {.lex_state = 62}, + [1520] = {.lex_state = 62}, + [1521] = {.lex_state = 62}, + [1522] = {.lex_state = 62}, + [1523] = {.lex_state = 62}, + [1524] = {.lex_state = 62}, + [1525] = {.lex_state = 62}, + [1526] = {.lex_state = 62}, + [1527] = {.lex_state = 53}, + [1528] = {.lex_state = 62}, + [1529] = {.lex_state = 62}, + [1530] = {.lex_state = 62}, + [1531] = {.lex_state = 62}, + [1532] = {.lex_state = 62}, + [1533] = {.lex_state = 62}, + [1534] = {.lex_state = 62}, + [1535] = {.lex_state = 62}, + [1536] = {.lex_state = 59}, + [1537] = {.lex_state = 62}, + [1538] = {.lex_state = 62}, + [1539] = {.lex_state = 62}, + [1540] = {.lex_state = 62}, + [1541] = {.lex_state = 62}, + [1542] = {.lex_state = 62}, + [1543] = {.lex_state = 62}, + [1544] = {.lex_state = 73}, + [1545] = {.lex_state = 62}, + [1546] = {.lex_state = 62}, + [1547] = {.lex_state = 62}, + [1548] = {.lex_state = 62}, + [1549] = {.lex_state = 62}, + [1550] = {.lex_state = 62}, + [1551] = {.lex_state = 62}, + [1552] = {.lex_state = 62}, + [1553] = {.lex_state = 62}, + [1554] = {.lex_state = 62}, + [1555] = {.lex_state = 62}, + [1556] = {.lex_state = 62}, + [1557] = {.lex_state = 62}, + [1558] = {.lex_state = 62}, + [1559] = {.lex_state = 62}, + [1560] = {.lex_state = 62}, + [1561] = {.lex_state = 52}, + [1562] = {.lex_state = 62}, + [1563] = {.lex_state = 53}, + [1564] = {.lex_state = 53}, + [1565] = {.lex_state = 53}, + [1566] = {.lex_state = 53}, + [1567] = {.lex_state = 53}, + [1568] = {.lex_state = 53}, + [1569] = {.lex_state = 53}, + [1570] = {.lex_state = 59}, + [1571] = {.lex_state = 53}, + [1572] = {.lex_state = 53}, + [1573] = {.lex_state = 53}, + [1574] = {.lex_state = 53}, + [1575] = {.lex_state = 53}, + [1576] = {.lex_state = 53}, + [1577] = {.lex_state = 53}, + [1578] = {.lex_state = 53}, + [1579] = {.lex_state = 53}, + [1580] = {.lex_state = 53}, + [1581] = {.lex_state = 53}, + [1582] = {.lex_state = 53}, + [1583] = {.lex_state = 53}, + [1584] = {.lex_state = 53}, + [1585] = {.lex_state = 53}, + [1586] = {.lex_state = 53}, + [1587] = {.lex_state = 53}, + [1588] = {.lex_state = 53}, + [1589] = {.lex_state = 53}, + [1590] = {.lex_state = 53}, + [1591] = {.lex_state = 53}, + [1592] = {.lex_state = 53}, + [1593] = {.lex_state = 53}, + [1594] = {.lex_state = 53}, + [1595] = {.lex_state = 53}, + [1596] = {.lex_state = 53}, + [1597] = {.lex_state = 53}, + [1598] = {.lex_state = 73}, + [1599] = {.lex_state = 53}, + [1600] = {.lex_state = 53}, + [1601] = {.lex_state = 53}, + [1602] = {.lex_state = 53}, + [1603] = {.lex_state = 53}, + [1604] = {.lex_state = 53}, + [1605] = {.lex_state = 59}, + [1606] = {.lex_state = 53}, + [1607] = {.lex_state = 53}, + [1608] = {.lex_state = 53}, + [1609] = {.lex_state = 55}, + [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 = 55}, + [1624] = {.lex_state = 55}, + [1625] = {.lex_state = 55}, + [1626] = {.lex_state = 55}, + [1627] = {.lex_state = 55}, + [1628] = {.lex_state = 55}, + [1629] = {.lex_state = 55}, + [1630] = {.lex_state = 55}, + [1631] = {.lex_state = 55}, + [1632] = {.lex_state = 73}, + [1633] = {.lex_state = 55}, + [1634] = {.lex_state = 49}, + [1635] = {.lex_state = 55}, + [1636] = {.lex_state = 55}, + [1637] = {.lex_state = 55}, + [1638] = {.lex_state = 55}, + [1639] = {.lex_state = 55}, + [1640] = {.lex_state = 55}, + [1641] = {.lex_state = 55}, + [1642] = {.lex_state = 55}, + [1643] = {.lex_state = 55}, + [1644] = {.lex_state = 55}, + [1645] = {.lex_state = 55}, + [1646] = {.lex_state = 55}, + [1647] = {.lex_state = 55}, + [1648] = {.lex_state = 55}, + [1649] = {.lex_state = 55}, + [1650] = {.lex_state = 55}, + [1651] = {.lex_state = 55}, + [1652] = {.lex_state = 55}, + [1653] = {.lex_state = 55}, + [1654] = {.lex_state = 55}, + [1655] = {.lex_state = 55}, + [1656] = {.lex_state = 55}, + [1657] = {.lex_state = 55}, + [1658] = {.lex_state = 55}, + [1659] = {.lex_state = 55}, + [1660] = {.lex_state = 58}, + [1661] = {.lex_state = 55}, + [1662] = {.lex_state = 55}, + [1663] = {.lex_state = 55}, + [1664] = {.lex_state = 55}, + [1665] = {.lex_state = 60}, + [1666] = {.lex_state = 55}, + [1667] = {.lex_state = 55}, + [1668] = {.lex_state = 55}, + [1669] = {.lex_state = 55}, + [1670] = {.lex_state = 55}, + [1671] = {.lex_state = 55}, + [1672] = {.lex_state = 55}, + [1673] = {.lex_state = 55}, + [1674] = {.lex_state = 55}, + [1675] = {.lex_state = 55}, + [1676] = {.lex_state = 55}, + [1677] = {.lex_state = 55}, + [1678] = {.lex_state = 55}, + [1679] = {.lex_state = 55}, + [1680] = {.lex_state = 55}, + [1681] = {.lex_state = 55}, + [1682] = {.lex_state = 55}, [1683] = {.lex_state = 49}, [1684] = {.lex_state = 49}, - [1685] = {.lex_state = 45}, - [1686] = {.lex_state = 49}, + [1685] = {.lex_state = 49}, + [1686] = {.lex_state = 60}, [1687] = {.lex_state = 49}, [1688] = {.lex_state = 49}, [1689] = {.lex_state = 49}, @@ -14474,1189 +15723,1189 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1691] = {.lex_state = 49}, [1692] = {.lex_state = 49}, [1693] = {.lex_state = 49}, - [1694] = {.lex_state = 49}, + [1694] = {.lex_state = 58}, [1695] = {.lex_state = 49}, [1696] = {.lex_state = 49}, [1697] = {.lex_state = 49}, - [1698] = {.lex_state = 49}, + [1698] = {.lex_state = 59}, [1699] = {.lex_state = 49}, [1700] = {.lex_state = 49}, [1701] = {.lex_state = 49}, - [1702] = {.lex_state = 49}, - [1703] = {.lex_state = 49}, - [1704] = {.lex_state = 49}, - [1705] = {.lex_state = 49}, - [1706] = {.lex_state = 49}, - [1707] = {.lex_state = 49}, - [1708] = {.lex_state = 49}, - [1709] = {.lex_state = 49}, - [1710] = {.lex_state = 49}, - [1711] = {.lex_state = 49}, - [1712] = {.lex_state = 49}, - [1713] = {.lex_state = 49}, - [1714] = {.lex_state = 49}, - [1715] = {.lex_state = 49}, - [1716] = {.lex_state = 45}, - [1717] = {.lex_state = 49}, - [1718] = {.lex_state = 49}, - [1719] = {.lex_state = 49}, - [1720] = {.lex_state = 46}, - [1721] = {.lex_state = 48}, - [1722] = {.lex_state = 48}, - [1723] = {.lex_state = 60}, - [1724] = {.lex_state = 46}, - [1725] = {.lex_state = 46}, - [1726] = {.lex_state = 46}, - [1727] = {.lex_state = 46}, - [1728] = {.lex_state = 46}, - [1729] = {.lex_state = 46}, - [1730] = {.lex_state = 46}, - [1731] = {.lex_state = 46}, - [1732] = {.lex_state = 46}, - [1733] = {.lex_state = 46}, - [1734] = {.lex_state = 46}, - [1735] = {.lex_state = 46}, - [1736] = {.lex_state = 46}, - [1737] = {.lex_state = 46}, - [1738] = {.lex_state = 46}, - [1739] = {.lex_state = 46}, - [1740] = {.lex_state = 46}, + [1702] = {.lex_state = 59}, + [1703] = {.lex_state = 59}, + [1704] = {.lex_state = 59}, + [1705] = {.lex_state = 59}, + [1706] = {.lex_state = 59}, + [1707] = {.lex_state = 59}, + [1708] = {.lex_state = 59}, + [1709] = {.lex_state = 59}, + [1710] = {.lex_state = 59}, + [1711] = {.lex_state = 59}, + [1712] = {.lex_state = 59}, + [1713] = {.lex_state = 59}, + [1714] = {.lex_state = 59}, + [1715] = {.lex_state = 59}, + [1716] = {.lex_state = 59}, + [1717] = {.lex_state = 59}, + [1718] = {.lex_state = 59}, + [1719] = {.lex_state = 59}, + [1720] = {.lex_state = 59}, + [1721] = {.lex_state = 59}, + [1722] = {.lex_state = 57}, + [1723] = {.lex_state = 59}, + [1724] = {.lex_state = 59}, + [1725] = {.lex_state = 59}, + [1726] = {.lex_state = 59}, + [1727] = {.lex_state = 59}, + [1728] = {.lex_state = 59}, + [1729] = {.lex_state = 59}, + [1730] = {.lex_state = 59}, + [1731] = {.lex_state = 59}, + [1732] = {.lex_state = 59}, + [1733] = {.lex_state = 59}, + [1734] = {.lex_state = 59}, + [1735] = {.lex_state = 59}, + [1736] = {.lex_state = 59}, + [1737] = {.lex_state = 59}, + [1738] = {.lex_state = 59}, + [1739] = {.lex_state = 59}, + [1740] = {.lex_state = 59}, [1741] = {.lex_state = 59}, - [1742] = {.lex_state = 46}, - [1743] = {.lex_state = 46}, - [1744] = {.lex_state = 41}, - [1745] = {.lex_state = 46}, - [1746] = {.lex_state = 46}, - [1747] = {.lex_state = 46}, - [1748] = {.lex_state = 46}, - [1749] = {.lex_state = 46}, - [1750] = {.lex_state = 46}, - [1751] = {.lex_state = 46}, - [1752] = {.lex_state = 46}, - [1753] = {.lex_state = 46}, - [1754] = {.lex_state = 46}, - [1755] = {.lex_state = 46}, - [1756] = {.lex_state = 46}, - [1757] = {.lex_state = 46}, - [1758] = {.lex_state = 46}, - [1759] = {.lex_state = 46}, - [1760] = {.lex_state = 46}, - [1761] = {.lex_state = 46}, - [1762] = {.lex_state = 46}, - [1763] = {.lex_state = 46}, - [1764] = {.lex_state = 46}, - [1765] = {.lex_state = 46}, - [1766] = {.lex_state = 46}, - [1767] = {.lex_state = 46}, - [1768] = {.lex_state = 46}, - [1769] = {.lex_state = 46}, - [1770] = {.lex_state = 46}, - [1771] = {.lex_state = 46}, - [1772] = {.lex_state = 46}, - [1773] = {.lex_state = 46}, - [1774] = {.lex_state = 46}, - [1775] = {.lex_state = 41}, - [1776] = {.lex_state = 46}, - [1777] = {.lex_state = 46}, - [1778] = {.lex_state = 46}, - [1779] = {.lex_state = 50}, - [1780] = {.lex_state = 48}, - [1781] = {.lex_state = 48}, - [1782] = {.lex_state = 55}, - [1783] = {.lex_state = 50}, - [1784] = {.lex_state = 50}, - [1785] = {.lex_state = 50}, - [1786] = {.lex_state = 50}, - [1787] = {.lex_state = 50}, - [1788] = {.lex_state = 50}, - [1789] = {.lex_state = 50}, - [1790] = {.lex_state = 50}, - [1791] = {.lex_state = 50}, - [1792] = {.lex_state = 50}, - [1793] = {.lex_state = 50}, - [1794] = {.lex_state = 50}, - [1795] = {.lex_state = 50}, - [1796] = {.lex_state = 50}, - [1797] = {.lex_state = 50}, - [1798] = {.lex_state = 50}, - [1799] = {.lex_state = 50}, - [1800] = {.lex_state = 50}, - [1801] = {.lex_state = 50}, - [1802] = {.lex_state = 50}, - [1803] = {.lex_state = 48}, - [1804] = {.lex_state = 50}, - [1805] = {.lex_state = 50}, - [1806] = {.lex_state = 50}, - [1807] = {.lex_state = 50}, - [1808] = {.lex_state = 50}, - [1809] = {.lex_state = 50}, - [1810] = {.lex_state = 50}, - [1811] = {.lex_state = 50}, - [1812] = {.lex_state = 50}, - [1813] = {.lex_state = 50}, - [1814] = {.lex_state = 50}, - [1815] = {.lex_state = 50}, - [1816] = {.lex_state = 50}, - [1817] = {.lex_state = 50}, - [1818] = {.lex_state = 50}, - [1819] = {.lex_state = 50}, - [1820] = {.lex_state = 50}, - [1821] = {.lex_state = 50}, - [1822] = {.lex_state = 50}, - [1823] = {.lex_state = 50}, - [1824] = {.lex_state = 50}, - [1825] = {.lex_state = 50}, - [1826] = {.lex_state = 50}, - [1827] = {.lex_state = 50}, - [1828] = {.lex_state = 50}, - [1829] = {.lex_state = 50}, - [1830] = {.lex_state = 50}, - [1831] = {.lex_state = 50}, - [1832] = {.lex_state = 50}, - [1833] = {.lex_state = 50}, - [1834] = {.lex_state = 48}, - [1835] = {.lex_state = 50}, - [1836] = {.lex_state = 50}, - [1837] = {.lex_state = 50}, - [1838] = {.lex_state = 44}, - [1839] = {.lex_state = 48}, - [1840] = {.lex_state = 48}, - [1841] = {.lex_state = 54}, - [1842] = {.lex_state = 44}, - [1843] = {.lex_state = 44}, - [1844] = {.lex_state = 44}, - [1845] = {.lex_state = 44}, - [1846] = {.lex_state = 44}, - [1847] = {.lex_state = 44}, - [1848] = {.lex_state = 44}, - [1849] = {.lex_state = 44}, - [1850] = {.lex_state = 44}, - [1851] = {.lex_state = 44}, - [1852] = {.lex_state = 44}, - [1853] = {.lex_state = 44}, - [1854] = {.lex_state = 44}, - [1855] = {.lex_state = 44}, - [1856] = {.lex_state = 44}, - [1857] = {.lex_state = 44}, - [1858] = {.lex_state = 44}, - [1859] = {.lex_state = 44}, - [1860] = {.lex_state = 44}, - [1861] = {.lex_state = 44}, - [1862] = {.lex_state = 48}, - [1863] = {.lex_state = 44}, - [1864] = {.lex_state = 44}, - [1865] = {.lex_state = 44}, - [1866] = {.lex_state = 44}, - [1867] = {.lex_state = 44}, - [1868] = {.lex_state = 44}, - [1869] = {.lex_state = 44}, - [1870] = {.lex_state = 44}, - [1871] = {.lex_state = 44}, - [1872] = {.lex_state = 44}, - [1873] = {.lex_state = 44}, - [1874] = {.lex_state = 44}, - [1875] = {.lex_state = 44}, - [1876] = {.lex_state = 44}, - [1877] = {.lex_state = 44}, - [1878] = {.lex_state = 44}, - [1879] = {.lex_state = 44}, - [1880] = {.lex_state = 44}, - [1881] = {.lex_state = 44}, - [1882] = {.lex_state = 44}, - [1883] = {.lex_state = 44}, - [1884] = {.lex_state = 44}, - [1885] = {.lex_state = 44}, - [1886] = {.lex_state = 44}, - [1887] = {.lex_state = 44}, - [1888] = {.lex_state = 44}, - [1889] = {.lex_state = 44}, - [1890] = {.lex_state = 44}, - [1891] = {.lex_state = 44}, - [1892] = {.lex_state = 44}, - [1893] = {.lex_state = 47}, - [1894] = {.lex_state = 44}, - [1895] = {.lex_state = 44}, - [1896] = {.lex_state = 44}, - [1897] = {.lex_state = 43}, - [1898] = {.lex_state = 48}, - [1899] = {.lex_state = 48}, - [1900] = {.lex_state = 49}, - [1901] = {.lex_state = 43}, - [1902] = {.lex_state = 43}, - [1903] = {.lex_state = 43}, - [1904] = {.lex_state = 43}, - [1905] = {.lex_state = 43}, - [1906] = {.lex_state = 43}, - [1907] = {.lex_state = 43}, - [1908] = {.lex_state = 43}, - [1909] = {.lex_state = 43}, - [1910] = {.lex_state = 43}, - [1911] = {.lex_state = 43}, - [1912] = {.lex_state = 43}, - [1913] = {.lex_state = 43}, - [1914] = {.lex_state = 43}, - [1915] = {.lex_state = 43}, - [1916] = {.lex_state = 43}, - [1917] = {.lex_state = 43}, - [1918] = {.lex_state = 43}, - [1919] = {.lex_state = 43}, - [1920] = {.lex_state = 43}, - [1921] = {.lex_state = 47}, - [1922] = {.lex_state = 43}, - [1923] = {.lex_state = 43}, - [1924] = {.lex_state = 43}, - [1925] = {.lex_state = 43}, - [1926] = {.lex_state = 43}, - [1927] = {.lex_state = 43}, - [1928] = {.lex_state = 43}, - [1929] = {.lex_state = 43}, - [1930] = {.lex_state = 43}, - [1931] = {.lex_state = 43}, - [1932] = {.lex_state = 43}, - [1933] = {.lex_state = 43}, - [1934] = {.lex_state = 43}, - [1935] = {.lex_state = 43}, - [1936] = {.lex_state = 43}, - [1937] = {.lex_state = 43}, - [1938] = {.lex_state = 43}, - [1939] = {.lex_state = 43}, - [1940] = {.lex_state = 43}, - [1941] = {.lex_state = 43}, - [1942] = {.lex_state = 43}, - [1943] = {.lex_state = 43}, - [1944] = {.lex_state = 43}, - [1945] = {.lex_state = 43}, - [1946] = {.lex_state = 43}, - [1947] = {.lex_state = 43}, - [1948] = {.lex_state = 43}, - [1949] = {.lex_state = 43}, - [1950] = {.lex_state = 43}, - [1951] = {.lex_state = 43}, - [1952] = {.lex_state = 47}, - [1953] = {.lex_state = 43}, - [1954] = {.lex_state = 43}, - [1955] = {.lex_state = 43}, - [1956] = {.lex_state = 46}, - [1957] = {.lex_state = 43}, - [1958] = {.lex_state = 43}, - [1959] = {.lex_state = 50}, - [1960] = {.lex_state = 44}, - [1961] = {.lex_state = 44}, - [1962] = {.lex_state = 44}, - [1963] = {.lex_state = 43}, - [1964] = {.lex_state = 94}, - [1965] = {.lex_state = 94}, - [1966] = {.lex_state = 94}, - [1967] = {.lex_state = 47}, - [1968] = {.lex_state = 53}, - [1969] = {.lex_state = 47}, - [1970] = {.lex_state = 47}, - [1971] = {.lex_state = 94}, - [1972] = {.lex_state = 94}, - [1973] = {.lex_state = 47}, - [1974] = {.lex_state = 94}, - [1975] = {.lex_state = 47}, - [1976] = {.lex_state = 47}, - [1977] = {.lex_state = 47}, - [1978] = {.lex_state = 47}, - [1979] = {.lex_state = 94}, - [1980] = {.lex_state = 94}, - [1981] = {.lex_state = 94}, - [1982] = {.lex_state = 47}, - [1983] = {.lex_state = 47}, - [1984] = {.lex_state = 94}, - [1985] = {.lex_state = 94}, - [1986] = {.lex_state = 94}, - [1987] = {.lex_state = 94}, - [1988] = {.lex_state = 47}, - [1989] = {.lex_state = 47}, - [1990] = {.lex_state = 47}, - [1991] = {.lex_state = 47}, - [1992] = {.lex_state = 47}, - [1993] = {.lex_state = 47}, - [1994] = {.lex_state = 47}, - [1995] = {.lex_state = 94}, - [1996] = {.lex_state = 94}, - [1997] = {.lex_state = 94}, - [1998] = {.lex_state = 59}, - [1999] = {.lex_state = 47}, - [2000] = {.lex_state = 94}, - [2001] = {.lex_state = 94}, - [2002] = {.lex_state = 94}, - [2003] = {.lex_state = 47}, - [2004] = {.lex_state = 47}, - [2005] = {.lex_state = 47}, - [2006] = {.lex_state = 47}, - [2007] = {.lex_state = 47}, - [2008] = {.lex_state = 47}, - [2009] = {.lex_state = 47}, - [2010] = {.lex_state = 47}, - [2011] = {.lex_state = 47}, - [2012] = {.lex_state = 45}, - [2013] = {.lex_state = 94}, - [2014] = {.lex_state = 94}, - [2015] = {.lex_state = 47}, - [2016] = {.lex_state = 47}, - [2017] = {.lex_state = 53}, - [2018] = {.lex_state = 47}, - [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 = 47}, - [2026] = {.lex_state = 47}, - [2027] = {.lex_state = 47}, - [2028] = {.lex_state = 59}, - [2029] = {.lex_state = 94}, - [2030] = {.lex_state = 94}, - [2031] = {.lex_state = 94}, + [1742] = {.lex_state = 59}, + [1743] = {.lex_state = 59}, + [1744] = {.lex_state = 59}, + [1745] = {.lex_state = 59}, + [1746] = {.lex_state = 59}, + [1747] = {.lex_state = 59}, + [1748] = {.lex_state = 59}, + [1749] = {.lex_state = 59}, + [1750] = {.lex_state = 59}, + [1751] = {.lex_state = 59}, + [1752] = {.lex_state = 59}, + [1753] = {.lex_state = 59}, + [1754] = {.lex_state = 59}, + [1755] = {.lex_state = 59}, + [1756] = {.lex_state = 57}, + [1757] = {.lex_state = 59}, + [1758] = {.lex_state = 59}, + [1759] = {.lex_state = 59}, + [1760] = {.lex_state = 73}, + [1761] = {.lex_state = 49}, + [1762] = {.lex_state = 49}, + [1763] = {.lex_state = 49}, + [1764] = {.lex_state = 73}, + [1765] = {.lex_state = 73}, + [1766] = {.lex_state = 73}, + [1767] = {.lex_state = 73}, + [1768] = {.lex_state = 73}, + [1769] = {.lex_state = 73}, + [1770] = {.lex_state = 73}, + [1771] = {.lex_state = 73}, + [1772] = {.lex_state = 73}, + [1773] = {.lex_state = 73}, + [1774] = {.lex_state = 73}, + [1775] = {.lex_state = 73}, + [1776] = {.lex_state = 73}, + [1777] = {.lex_state = 73}, + [1778] = {.lex_state = 73}, + [1779] = {.lex_state = 73}, + [1780] = {.lex_state = 73}, + [1781] = {.lex_state = 73}, + [1782] = {.lex_state = 73}, + [1783] = {.lex_state = 73}, + [1784] = {.lex_state = 56}, + [1785] = {.lex_state = 73}, + [1786] = {.lex_state = 73}, + [1787] = {.lex_state = 73}, + [1788] = {.lex_state = 73}, + [1789] = {.lex_state = 73}, + [1790] = {.lex_state = 73}, + [1791] = {.lex_state = 73}, + [1792] = {.lex_state = 73}, + [1793] = {.lex_state = 73}, + [1794] = {.lex_state = 73}, + [1795] = {.lex_state = 73}, + [1796] = {.lex_state = 73}, + [1797] = {.lex_state = 73}, + [1798] = {.lex_state = 73}, + [1799] = {.lex_state = 73}, + [1800] = {.lex_state = 73}, + [1801] = {.lex_state = 73}, + [1802] = {.lex_state = 73}, + [1803] = {.lex_state = 73}, + [1804] = {.lex_state = 73}, + [1805] = {.lex_state = 73}, + [1806] = {.lex_state = 73}, + [1807] = {.lex_state = 73}, + [1808] = {.lex_state = 73}, + [1809] = {.lex_state = 73}, + [1810] = {.lex_state = 73}, + [1811] = {.lex_state = 73}, + [1812] = {.lex_state = 73}, + [1813] = {.lex_state = 73}, + [1814] = {.lex_state = 73}, + [1815] = {.lex_state = 73}, + [1816] = {.lex_state = 73}, + [1817] = {.lex_state = 73}, + [1818] = {.lex_state = 56}, + [1819] = {.lex_state = 73}, + [1820] = {.lex_state = 73}, + [1821] = {.lex_state = 73}, + [1822] = {.lex_state = 58}, + [1823] = {.lex_state = 49}, + [1824] = {.lex_state = 49}, + [1825] = {.lex_state = 49}, + [1826] = {.lex_state = 58}, + [1827] = {.lex_state = 58}, + [1828] = {.lex_state = 58}, + [1829] = {.lex_state = 58}, + [1830] = {.lex_state = 58}, + [1831] = {.lex_state = 58}, + [1832] = {.lex_state = 58}, + [1833] = {.lex_state = 58}, + [1834] = {.lex_state = 58}, + [1835] = {.lex_state = 58}, + [1836] = {.lex_state = 58}, + [1837] = {.lex_state = 58}, + [1838] = {.lex_state = 58}, + [1839] = {.lex_state = 58}, + [1840] = {.lex_state = 58}, + [1841] = {.lex_state = 58}, + [1842] = {.lex_state = 58}, + [1843] = {.lex_state = 58}, + [1844] = {.lex_state = 58}, + [1845] = {.lex_state = 58}, + [1846] = {.lex_state = 51}, + [1847] = {.lex_state = 58}, + [1848] = {.lex_state = 58}, + [1849] = {.lex_state = 58}, + [1850] = {.lex_state = 58}, + [1851] = {.lex_state = 58}, + [1852] = {.lex_state = 58}, + [1853] = {.lex_state = 58}, + [1854] = {.lex_state = 58}, + [1855] = {.lex_state = 58}, + [1856] = {.lex_state = 58}, + [1857] = {.lex_state = 58}, + [1858] = {.lex_state = 58}, + [1859] = {.lex_state = 58}, + [1860] = {.lex_state = 58}, + [1861] = {.lex_state = 58}, + [1862] = {.lex_state = 58}, + [1863] = {.lex_state = 58}, + [1864] = {.lex_state = 58}, + [1865] = {.lex_state = 58}, + [1866] = {.lex_state = 58}, + [1867] = {.lex_state = 58}, + [1868] = {.lex_state = 58}, + [1869] = {.lex_state = 58}, + [1870] = {.lex_state = 58}, + [1871] = {.lex_state = 58}, + [1872] = {.lex_state = 58}, + [1873] = {.lex_state = 58}, + [1874] = {.lex_state = 58}, + [1875] = {.lex_state = 58}, + [1876] = {.lex_state = 58}, + [1877] = {.lex_state = 58}, + [1878] = {.lex_state = 58}, + [1879] = {.lex_state = 58}, + [1880] = {.lex_state = 51}, + [1881] = {.lex_state = 58}, + [1882] = {.lex_state = 58}, + [1883] = {.lex_state = 58}, + [1884] = {.lex_state = 57}, + [1885] = {.lex_state = 49}, + [1886] = {.lex_state = 49}, + [1887] = {.lex_state = 49}, + [1888] = {.lex_state = 57}, + [1889] = {.lex_state = 57}, + [1890] = {.lex_state = 57}, + [1891] = {.lex_state = 57}, + [1892] = {.lex_state = 57}, + [1893] = {.lex_state = 57}, + [1894] = {.lex_state = 47}, + [1895] = {.lex_state = 57}, + [1896] = {.lex_state = 57}, + [1897] = {.lex_state = 57}, + [1898] = {.lex_state = 57}, + [1899] = {.lex_state = 57}, + [1900] = {.lex_state = 57}, + [1901] = {.lex_state = 57}, + [1902] = {.lex_state = 57}, + [1903] = {.lex_state = 57}, + [1904] = {.lex_state = 57}, + [1905] = {.lex_state = 57}, + [1906] = {.lex_state = 57}, + [1907] = {.lex_state = 57}, + [1908] = {.lex_state = 50}, + [1909] = {.lex_state = 57}, + [1910] = {.lex_state = 57}, + [1911] = {.lex_state = 57}, + [1912] = {.lex_state = 57}, + [1913] = {.lex_state = 57}, + [1914] = {.lex_state = 57}, + [1915] = {.lex_state = 57}, + [1916] = {.lex_state = 57}, + [1917] = {.lex_state = 57}, + [1918] = {.lex_state = 57}, + [1919] = {.lex_state = 57}, + [1920] = {.lex_state = 57}, + [1921] = {.lex_state = 57}, + [1922] = {.lex_state = 57}, + [1923] = {.lex_state = 57}, + [1924] = {.lex_state = 57}, + [1925] = {.lex_state = 57}, + [1926] = {.lex_state = 57}, + [1927] = {.lex_state = 57}, + [1928] = {.lex_state = 57}, + [1929] = {.lex_state = 57}, + [1930] = {.lex_state = 57}, + [1931] = {.lex_state = 57}, + [1932] = {.lex_state = 57}, + [1933] = {.lex_state = 57}, + [1934] = {.lex_state = 57}, + [1935] = {.lex_state = 57}, + [1936] = {.lex_state = 57}, + [1937] = {.lex_state = 57}, + [1938] = {.lex_state = 57}, + [1939] = {.lex_state = 57}, + [1940] = {.lex_state = 57}, + [1941] = {.lex_state = 57}, + [1942] = {.lex_state = 50}, + [1943] = {.lex_state = 57}, + [1944] = {.lex_state = 57}, + [1945] = {.lex_state = 57}, + [1946] = {.lex_state = 56}, + [1947] = {.lex_state = 49}, + [1948] = {.lex_state = 49}, + [1949] = {.lex_state = 59}, + [1950] = {.lex_state = 56}, + [1951] = {.lex_state = 56}, + [1952] = {.lex_state = 56}, + [1953] = {.lex_state = 56}, + [1954] = {.lex_state = 56}, + [1955] = {.lex_state = 56}, + [1956] = {.lex_state = 56}, + [1957] = {.lex_state = 56}, + [1958] = {.lex_state = 56}, + [1959] = {.lex_state = 56}, + [1960] = {.lex_state = 56}, + [1961] = {.lex_state = 56}, + [1962] = {.lex_state = 56}, + [1963] = {.lex_state = 56}, + [1964] = {.lex_state = 56}, + [1965] = {.lex_state = 56}, + [1966] = {.lex_state = 56}, + [1967] = {.lex_state = 56}, + [1968] = {.lex_state = 56}, + [1969] = {.lex_state = 56}, + [1970] = {.lex_state = 48}, + [1971] = {.lex_state = 56}, + [1972] = {.lex_state = 56}, + [1973] = {.lex_state = 56}, + [1974] = {.lex_state = 56}, + [1975] = {.lex_state = 56}, + [1976] = {.lex_state = 56}, + [1977] = {.lex_state = 56}, + [1978] = {.lex_state = 56}, + [1979] = {.lex_state = 56}, + [1980] = {.lex_state = 56}, + [1981] = {.lex_state = 56}, + [1982] = {.lex_state = 56}, + [1983] = {.lex_state = 56}, + [1984] = {.lex_state = 56}, + [1985] = {.lex_state = 56}, + [1986] = {.lex_state = 56}, + [1987] = {.lex_state = 56}, + [1988] = {.lex_state = 56}, + [1989] = {.lex_state = 56}, + [1990] = {.lex_state = 56}, + [1991] = {.lex_state = 56}, + [1992] = {.lex_state = 56}, + [1993] = {.lex_state = 56}, + [1994] = {.lex_state = 56}, + [1995] = {.lex_state = 56}, + [1996] = {.lex_state = 56}, + [1997] = {.lex_state = 56}, + [1998] = {.lex_state = 56}, + [1999] = {.lex_state = 56}, + [2000] = {.lex_state = 56}, + [2001] = {.lex_state = 56}, + [2002] = {.lex_state = 56}, + [2003] = {.lex_state = 56}, + [2004] = {.lex_state = 48}, + [2005] = {.lex_state = 56}, + [2006] = {.lex_state = 56}, + [2007] = {.lex_state = 56}, + [2008] = {.lex_state = 51}, + [2009] = {.lex_state = 49}, + [2010] = {.lex_state = 49}, + [2011] = {.lex_state = 73}, + [2012] = {.lex_state = 51}, + [2013] = {.lex_state = 51}, + [2014] = {.lex_state = 51}, + [2015] = {.lex_state = 51}, + [2016] = {.lex_state = 51}, + [2017] = {.lex_state = 51}, + [2018] = {.lex_state = 51}, + [2019] = {.lex_state = 51}, + [2020] = {.lex_state = 51}, + [2021] = {.lex_state = 51}, + [2022] = {.lex_state = 51}, + [2023] = {.lex_state = 51}, + [2024] = {.lex_state = 51}, + [2025] = {.lex_state = 51}, + [2026] = {.lex_state = 51}, + [2027] = {.lex_state = 51}, + [2028] = {.lex_state = 51}, + [2029] = {.lex_state = 51}, + [2030] = {.lex_state = 51}, + [2031] = {.lex_state = 51}, [2032] = {.lex_state = 47}, - [2033] = {.lex_state = 47}, - [2034] = {.lex_state = 47}, - [2035] = {.lex_state = 47}, - [2036] = {.lex_state = 47}, - [2037] = {.lex_state = 47}, - [2038] = {.lex_state = 47}, - [2039] = {.lex_state = 47}, - [2040] = {.lex_state = 94}, - [2041] = {.lex_state = 94}, - [2042] = {.lex_state = 94}, - [2043] = {.lex_state = 47}, - [2044] = {.lex_state = 47}, - [2045] = {.lex_state = 94}, - [2046] = {.lex_state = 94}, - [2047] = {.lex_state = 94}, - [2048] = {.lex_state = 47}, - [2049] = {.lex_state = 47}, - [2050] = {.lex_state = 47}, - [2051] = {.lex_state = 47}, - [2052] = {.lex_state = 47}, - [2053] = {.lex_state = 47}, - [2054] = {.lex_state = 41}, - [2055] = {.lex_state = 47}, + [2033] = {.lex_state = 51}, + [2034] = {.lex_state = 51}, + [2035] = {.lex_state = 51}, + [2036] = {.lex_state = 51}, + [2037] = {.lex_state = 51}, + [2038] = {.lex_state = 51}, + [2039] = {.lex_state = 51}, + [2040] = {.lex_state = 51}, + [2041] = {.lex_state = 51}, + [2042] = {.lex_state = 51}, + [2043] = {.lex_state = 51}, + [2044] = {.lex_state = 51}, + [2045] = {.lex_state = 51}, + [2046] = {.lex_state = 51}, + [2047] = {.lex_state = 51}, + [2048] = {.lex_state = 51}, + [2049] = {.lex_state = 51}, + [2050] = {.lex_state = 51}, + [2051] = {.lex_state = 51}, + [2052] = {.lex_state = 51}, + [2053] = {.lex_state = 51}, + [2054] = {.lex_state = 51}, + [2055] = {.lex_state = 51}, [2056] = {.lex_state = 51}, - [2057] = {.lex_state = 59}, - [2058] = {.lex_state = 94}, - [2059] = {.lex_state = 94}, - [2060] = {.lex_state = 94}, - [2061] = {.lex_state = 52}, - [2062] = {.lex_state = 94}, - [2063] = {.lex_state = 45}, - [2064] = {.lex_state = 52}, - [2065] = {.lex_state = 94}, - [2066] = {.lex_state = 94}, - [2067] = {.lex_state = 94}, - [2068] = {.lex_state = 94}, - [2069] = {.lex_state = 94}, - [2070] = {.lex_state = 52}, - [2071] = {.lex_state = 51}, - [2072] = {.lex_state = 41}, - [2073] = {.lex_state = 51}, - [2074] = {.lex_state = 94}, - [2075] = {.lex_state = 94}, - [2076] = {.lex_state = 94}, - [2077] = {.lex_state = 48}, - [2078] = {.lex_state = 41}, - [2079] = {.lex_state = 41}, - [2080] = {.lex_state = 41}, - [2081] = {.lex_state = 48}, - [2082] = {.lex_state = 41}, - [2083] = {.lex_state = 41}, - [2084] = {.lex_state = 41}, - [2085] = {.lex_state = 94}, - [2086] = {.lex_state = 41}, - [2087] = {.lex_state = 94}, - [2088] = {.lex_state = 94}, - [2089] = {.lex_state = 41}, - [2090] = {.lex_state = 41}, - [2091] = {.lex_state = 94}, - [2092] = {.lex_state = 94}, - [2093] = {.lex_state = 94}, - [2094] = {.lex_state = 41}, - [2095] = {.lex_state = 41}, - [2096] = {.lex_state = 41}, - [2097] = {.lex_state = 41}, - [2098] = {.lex_state = 41}, - [2099] = {.lex_state = 41}, - [2100] = {.lex_state = 41}, - [2101] = {.lex_state = 41}, - [2102] = {.lex_state = 41}, - [2103] = {.lex_state = 41}, - [2104] = {.lex_state = 94}, - [2105] = {.lex_state = 94}, - [2106] = {.lex_state = 94}, - [2107] = {.lex_state = 41}, - [2108] = {.lex_state = 45}, - [2109] = {.lex_state = 41}, - [2110] = {.lex_state = 41}, - [2111] = {.lex_state = 44}, - [2112] = {.lex_state = 45}, - [2113] = {.lex_state = 45}, - [2114] = {.lex_state = 45}, - [2115] = {.lex_state = 45}, - [2116] = {.lex_state = 41}, - [2117] = {.lex_state = 41}, - [2118] = {.lex_state = 41}, - [2119] = {.lex_state = 41}, - [2120] = {.lex_state = 45}, - [2121] = {.lex_state = 45}, - [2122] = {.lex_state = 45}, - [2123] = {.lex_state = 41}, - [2124] = {.lex_state = 41}, - [2125] = {.lex_state = 41}, - [2126] = {.lex_state = 41}, - [2127] = {.lex_state = 41}, - [2128] = {.lex_state = 41}, - [2129] = {.lex_state = 41}, - [2130] = {.lex_state = 48}, - [2131] = {.lex_state = 45}, - [2132] = {.lex_state = 94}, - [2133] = {.lex_state = 45}, - [2134] = {.lex_state = 41}, - [2135] = {.lex_state = 45}, - [2136] = {.lex_state = 45}, - [2137] = {.lex_state = 45}, - [2138] = {.lex_state = 45}, - [2139] = {.lex_state = 41}, - [2140] = {.lex_state = 41}, - [2141] = {.lex_state = 41}, - [2142] = {.lex_state = 47}, - [2143] = {.lex_state = 41}, - [2144] = {.lex_state = 41}, - [2145] = {.lex_state = 41}, - [2146] = {.lex_state = 41}, - [2147] = {.lex_state = 41}, - [2148] = {.lex_state = 41}, - [2149] = {.lex_state = 41}, - [2150] = {.lex_state = 45}, - [2151] = {.lex_state = 45}, - [2152] = {.lex_state = 41}, - [2153] = {.lex_state = 45}, - [2154] = {.lex_state = 45}, - [2155] = {.lex_state = 41}, - [2156] = {.lex_state = 41}, - [2157] = {.lex_state = 45}, - [2158] = {.lex_state = 45}, - [2159] = {.lex_state = 47}, - [2160] = {.lex_state = 45}, - [2161] = {.lex_state = 41}, - [2162] = {.lex_state = 41}, - [2163] = {.lex_state = 41}, - [2164] = {.lex_state = 41}, - [2165] = {.lex_state = 45}, - [2166] = {.lex_state = 45}, - [2167] = {.lex_state = 45}, - [2168] = {.lex_state = 41}, - [2169] = {.lex_state = 41}, - [2170] = {.lex_state = 45}, - [2171] = {.lex_state = 41}, - [2172] = {.lex_state = 45}, - [2173] = {.lex_state = 45}, - [2174] = {.lex_state = 45}, - [2175] = {.lex_state = 45}, - [2176] = {.lex_state = 47}, - [2177] = {.lex_state = 45}, - [2178] = {.lex_state = 45}, - [2179] = {.lex_state = 45}, - [2180] = {.lex_state = 45}, - [2181] = {.lex_state = 45}, - [2182] = {.lex_state = 45}, - [2183] = {.lex_state = 45}, - [2184] = {.lex_state = 45}, - [2185] = {.lex_state = 45}, - [2186] = {.lex_state = 45}, - [2187] = {.lex_state = 45}, - [2188] = {.lex_state = 45}, - [2189] = {.lex_state = 45}, - [2190] = {.lex_state = 45}, - [2191] = {.lex_state = 45}, - [2192] = {.lex_state = 45}, - [2193] = {.lex_state = 45}, - [2194] = {.lex_state = 45}, - [2195] = {.lex_state = 45}, - [2196] = {.lex_state = 45}, - [2197] = {.lex_state = 45}, - [2198] = {.lex_state = 45}, - [2199] = {.lex_state = 45}, - [2200] = {.lex_state = 45}, - [2201] = {.lex_state = 45}, - [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 = 40}, - [2233] = {.lex_state = 40}, - [2234] = {.lex_state = 40}, - [2235] = {.lex_state = 1}, - [2236] = {.lex_state = 1}, - [2237] = {.lex_state = 40}, - [2238] = {.lex_state = 39}, - [2239] = {.lex_state = 40}, - [2240] = {.lex_state = 1}, - [2241] = {.lex_state = 1}, - [2242] = {.lex_state = 40}, - [2243] = {.lex_state = 1}, - [2244] = {.lex_state = 39}, - [2245] = {.lex_state = 39}, - [2246] = {.lex_state = 1}, - [2247] = {.lex_state = 1}, - [2248] = {.lex_state = 40}, - [2249] = {.lex_state = 40}, - [2250] = {.lex_state = 40}, - [2251] = {.lex_state = 1}, - [2252] = {.lex_state = 40}, - [2253] = {.lex_state = 40}, - [2254] = {.lex_state = 39}, - [2255] = {.lex_state = 40}, - [2256] = {.lex_state = 1}, - [2257] = {.lex_state = 40}, - [2258] = {.lex_state = 39}, - [2259] = {.lex_state = 1}, - [2260] = {.lex_state = 1}, - [2261] = {.lex_state = 39}, - [2262] = {.lex_state = 40}, - [2263] = {.lex_state = 40}, - [2264] = {.lex_state = 1}, - [2265] = {.lex_state = 40}, - [2266] = {.lex_state = 39}, - [2267] = {.lex_state = 1}, - [2268] = {.lex_state = 1}, - [2269] = {.lex_state = 39}, - [2270] = {.lex_state = 1}, - [2271] = {.lex_state = 40}, - [2272] = {.lex_state = 40}, - [2273] = {.lex_state = 39}, - [2274] = {.lex_state = 1}, - [2275] = {.lex_state = 40}, - [2276] = {.lex_state = 1}, - [2277] = {.lex_state = 40}, - [2278] = {.lex_state = 40}, - [2279] = {.lex_state = 1}, - [2280] = {.lex_state = 40}, - [2281] = {.lex_state = 1}, - [2282] = {.lex_state = 39}, - [2283] = {.lex_state = 1}, - [2284] = {.lex_state = 39}, - [2285] = {.lex_state = 40}, - [2286] = {.lex_state = 40}, - [2287] = {.lex_state = 1}, - [2288] = {.lex_state = 40}, - [2289] = {.lex_state = 1}, - [2290] = {.lex_state = 40}, - [2291] = {.lex_state = 40}, - [2292] = {.lex_state = 39}, - [2293] = {.lex_state = 1}, - [2294] = {.lex_state = 1}, - [2295] = {.lex_state = 40}, - [2296] = {.lex_state = 1}, - [2297] = {.lex_state = 39}, - [2298] = {.lex_state = 39}, - [2299] = {.lex_state = 1}, - [2300] = {.lex_state = 40}, - [2301] = {.lex_state = 40}, - [2302] = {.lex_state = 39}, - [2303] = {.lex_state = 39}, - [2304] = {.lex_state = 1}, - [2305] = {.lex_state = 40}, - [2306] = {.lex_state = 1}, - [2307] = {.lex_state = 1}, - [2308] = {.lex_state = 35}, - [2309] = {.lex_state = 1}, - [2310] = {.lex_state = 39}, - [2311] = {.lex_state = 1}, - [2312] = {.lex_state = 40}, - [2313] = {.lex_state = 40}, - [2314] = {.lex_state = 1}, - [2315] = {.lex_state = 39}, - [2316] = {.lex_state = 40}, - [2317] = {.lex_state = 1}, - [2318] = {.lex_state = 40}, - [2319] = {.lex_state = 40}, - [2320] = {.lex_state = 1}, - [2321] = {.lex_state = 1}, - [2322] = {.lex_state = 40}, - [2323] = {.lex_state = 1}, - [2324] = {.lex_state = 39}, - [2325] = {.lex_state = 39}, - [2326] = {.lex_state = 39}, - [2327] = {.lex_state = 1}, - [2328] = {.lex_state = 40}, - [2329] = {.lex_state = 1}, - [2330] = {.lex_state = 40}, - [2331] = {.lex_state = 40}, - [2332] = {.lex_state = 35}, - [2333] = {.lex_state = 40}, - [2334] = {.lex_state = 40}, - [2335] = {.lex_state = 1}, - [2336] = {.lex_state = 39}, - [2337] = {.lex_state = 1}, - [2338] = {.lex_state = 40}, - [2339] = {.lex_state = 40}, - [2340] = {.lex_state = 40}, - [2341] = {.lex_state = 40}, - [2342] = {.lex_state = 1}, - [2343] = {.lex_state = 1}, - [2344] = {.lex_state = 39}, - [2345] = {.lex_state = 40}, - [2346] = {.lex_state = 1}, - [2347] = {.lex_state = 1}, - [2348] = {.lex_state = 39}, - [2349] = {.lex_state = 40}, - [2350] = {.lex_state = 1}, - [2351] = {.lex_state = 1}, - [2352] = {.lex_state = 39}, - [2353] = {.lex_state = 40}, - [2354] = {.lex_state = 40}, - [2355] = {.lex_state = 1}, - [2356] = {.lex_state = 1}, - [2357] = {.lex_state = 35}, - [2358] = {.lex_state = 40}, - [2359] = {.lex_state = 40}, - [2360] = {.lex_state = 1}, - [2361] = {.lex_state = 1}, - [2362] = {.lex_state = 39}, - [2363] = {.lex_state = 39}, - [2364] = {.lex_state = 39}, - [2365] = {.lex_state = 40}, - [2366] = {.lex_state = 1}, - [2367] = {.lex_state = 39}, - [2368] = {.lex_state = 39}, - [2369] = {.lex_state = 1}, - [2370] = {.lex_state = 40}, - [2371] = {.lex_state = 40}, - [2372] = {.lex_state = 1}, - [2373] = {.lex_state = 1}, - [2374] = {.lex_state = 40}, - [2375] = {.lex_state = 1}, - [2376] = {.lex_state = 1}, - [2377] = {.lex_state = 1}, - [2378] = {.lex_state = 40}, - [2379] = {.lex_state = 40}, - [2380] = {.lex_state = 40}, - [2381] = {.lex_state = 1}, - [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 = 70}, - [2389] = {.lex_state = 33}, - [2390] = {.lex_state = 70}, - [2391] = {.lex_state = 33}, - [2392] = {.lex_state = 70}, - [2393] = {.lex_state = 33}, - [2394] = {.lex_state = 70}, - [2395] = {.lex_state = 33}, - [2396] = {.lex_state = 70}, - [2397] = {.lex_state = 33}, - [2398] = {.lex_state = 70}, - [2399] = {.lex_state = 33}, - [2400] = {.lex_state = 70}, - [2401] = {.lex_state = 34}, - [2402] = {.lex_state = 70}, - [2403] = {.lex_state = 33}, - [2404] = {.lex_state = 33}, - [2405] = {.lex_state = 33}, - [2406] = {.lex_state = 70}, - [2407] = {.lex_state = 34}, - [2408] = {.lex_state = 70}, - [2409] = {.lex_state = 34}, - [2410] = {.lex_state = 33}, - [2411] = {.lex_state = 70}, - [2412] = {.lex_state = 70}, - [2413] = {.lex_state = 70}, - [2414] = {.lex_state = 33}, - [2415] = {.lex_state = 33}, - [2416] = {.lex_state = 33}, - [2417] = {.lex_state = 70}, - [2418] = {.lex_state = 33}, - [2419] = {.lex_state = 70}, - [2420] = {.lex_state = 70}, - [2421] = {.lex_state = 33}, - [2422] = {.lex_state = 34}, - [2423] = {.lex_state = 70}, - [2424] = {.lex_state = 70}, - [2425] = {.lex_state = 70}, - [2426] = {.lex_state = 70}, - [2427] = {.lex_state = 33}, - [2428] = {.lex_state = 33}, - [2429] = {.lex_state = 70}, - [2430] = {.lex_state = 70}, - [2431] = {.lex_state = 33}, - [2432] = {.lex_state = 33}, - [2433] = {.lex_state = 70}, - [2434] = {.lex_state = 34}, - [2435] = {.lex_state = 33}, - [2436] = {.lex_state = 33}, - [2437] = {.lex_state = 33}, - [2438] = {.lex_state = 70}, - [2439] = {.lex_state = 33}, - [2440] = {.lex_state = 70}, - [2441] = {.lex_state = 70}, - [2442] = {.lex_state = 33}, - [2443] = {.lex_state = 70}, - [2444] = {.lex_state = 70}, - [2445] = {.lex_state = 33}, - [2446] = {.lex_state = 33}, - [2447] = {.lex_state = 70}, - [2448] = {.lex_state = 33}, - [2449] = {.lex_state = 33}, - [2450] = {.lex_state = 70}, - [2451] = {.lex_state = 33}, - [2452] = {.lex_state = 70}, - [2453] = {.lex_state = 33}, - [2454] = {.lex_state = 70}, - [2455] = {.lex_state = 70}, - [2456] = {.lex_state = 33}, - [2457] = {.lex_state = 70}, - [2458] = {.lex_state = 70}, - [2459] = {.lex_state = 33}, - [2460] = {.lex_state = 70}, - [2461] = {.lex_state = 70}, - [2462] = {.lex_state = 33}, - [2463] = {.lex_state = 33}, - [2464] = {.lex_state = 70}, - [2465] = {.lex_state = 70}, - [2466] = {.lex_state = 33}, - [2467] = {.lex_state = 33}, - [2468] = {.lex_state = 70}, - [2469] = {.lex_state = 70}, - [2470] = {.lex_state = 33}, - [2471] = {.lex_state = 70}, - [2472] = {.lex_state = 70}, - [2473] = {.lex_state = 33}, - [2474] = {.lex_state = 33}, - [2475] = {.lex_state = 70}, - [2476] = {.lex_state = 33}, - [2477] = {.lex_state = 70}, - [2478] = {.lex_state = 33}, - [2479] = {.lex_state = 70}, - [2480] = {.lex_state = 33}, - [2481] = {.lex_state = 33}, - [2482] = {.lex_state = 33}, - [2483] = {.lex_state = 70}, - [2484] = {.lex_state = 33}, - [2485] = {.lex_state = 70}, - [2486] = {.lex_state = 33}, - [2487] = {.lex_state = 70}, - [2488] = {.lex_state = 70}, - [2489] = {.lex_state = 33}, - [2490] = {.lex_state = 33}, - [2491] = {.lex_state = 33}, - [2492] = {.lex_state = 70}, - [2493] = {.lex_state = 33}, - [2494] = {.lex_state = 70}, - [2495] = {.lex_state = 33}, - [2496] = {.lex_state = 33}, - [2497] = {.lex_state = 70}, - [2498] = {.lex_state = 70}, - [2499] = {.lex_state = 33}, - [2500] = {.lex_state = 70}, - [2501] = {.lex_state = 33}, - [2502] = {.lex_state = 70}, - [2503] = {.lex_state = 70}, - [2504] = {.lex_state = 70}, - [2505] = {.lex_state = 33}, - [2506] = {.lex_state = 70}, - [2507] = {.lex_state = 33}, - [2508] = {.lex_state = 33}, - [2509] = {.lex_state = 35}, - [2510] = {.lex_state = 40}, - [2511] = {.lex_state = 35}, - [2512] = {.lex_state = 1}, - [2513] = {.lex_state = 40}, - [2514] = {.lex_state = 39}, - [2515] = {.lex_state = 39}, - [2516] = {.lex_state = 1}, - [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 = 70}, - [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 = 70}, - [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}, + [2057] = {.lex_state = 51}, + [2058] = {.lex_state = 51}, + [2059] = {.lex_state = 51}, + [2060] = {.lex_state = 51}, + [2061] = {.lex_state = 51}, + [2062] = {.lex_state = 51}, + [2063] = {.lex_state = 51}, + [2064] = {.lex_state = 51}, + [2065] = {.lex_state = 51}, + [2066] = {.lex_state = 47}, + [2067] = {.lex_state = 51}, + [2068] = {.lex_state = 51}, + [2069] = {.lex_state = 51}, + [2070] = {.lex_state = 50}, + [2071] = {.lex_state = 49}, + [2072] = {.lex_state = 49}, + [2073] = {.lex_state = 58}, + [2074] = {.lex_state = 50}, + [2075] = {.lex_state = 50}, + [2076] = {.lex_state = 50}, + [2077] = {.lex_state = 50}, + [2078] = {.lex_state = 50}, + [2079] = {.lex_state = 50}, + [2080] = {.lex_state = 50}, + [2081] = {.lex_state = 50}, + [2082] = {.lex_state = 50}, + [2083] = {.lex_state = 50}, + [2084] = {.lex_state = 50}, + [2085] = {.lex_state = 50}, + [2086] = {.lex_state = 50}, + [2087] = {.lex_state = 50}, + [2088] = {.lex_state = 50}, + [2089] = {.lex_state = 50}, + [2090] = {.lex_state = 50}, + [2091] = {.lex_state = 50}, + [2092] = {.lex_state = 50}, + [2093] = {.lex_state = 50}, + [2094] = {.lex_state = 49}, + [2095] = {.lex_state = 50}, + [2096] = {.lex_state = 50}, + [2097] = {.lex_state = 50}, + [2098] = {.lex_state = 50}, + [2099] = {.lex_state = 50}, + [2100] = {.lex_state = 50}, + [2101] = {.lex_state = 50}, + [2102] = {.lex_state = 50}, + [2103] = {.lex_state = 50}, + [2104] = {.lex_state = 50}, + [2105] = {.lex_state = 50}, + [2106] = {.lex_state = 50}, + [2107] = {.lex_state = 50}, + [2108] = {.lex_state = 50}, + [2109] = {.lex_state = 50}, + [2110] = {.lex_state = 50}, + [2111] = {.lex_state = 50}, + [2112] = {.lex_state = 50}, + [2113] = {.lex_state = 50}, + [2114] = {.lex_state = 50}, + [2115] = {.lex_state = 50}, + [2116] = {.lex_state = 50}, + [2117] = {.lex_state = 50}, + [2118] = {.lex_state = 50}, + [2119] = {.lex_state = 50}, + [2120] = {.lex_state = 50}, + [2121] = {.lex_state = 50}, + [2122] = {.lex_state = 50}, + [2123] = {.lex_state = 50}, + [2124] = {.lex_state = 47}, + [2125] = {.lex_state = 50}, + [2126] = {.lex_state = 50}, + [2127] = {.lex_state = 50}, + [2128] = {.lex_state = 49}, + [2129] = {.lex_state = 50}, + [2130] = {.lex_state = 50}, + [2131] = {.lex_state = 50}, + [2132] = {.lex_state = 44}, + [2133] = {.lex_state = 49}, + [2134] = {.lex_state = 49}, + [2135] = {.lex_state = 57}, + [2136] = {.lex_state = 44}, + [2137] = {.lex_state = 44}, + [2138] = {.lex_state = 44}, + [2139] = {.lex_state = 44}, + [2140] = {.lex_state = 44}, + [2141] = {.lex_state = 44}, + [2142] = {.lex_state = 44}, + [2143] = {.lex_state = 44}, + [2144] = {.lex_state = 44}, + [2145] = {.lex_state = 44}, + [2146] = {.lex_state = 44}, + [2147] = {.lex_state = 44}, + [2148] = {.lex_state = 44}, + [2149] = {.lex_state = 44}, + [2150] = {.lex_state = 44}, + [2151] = {.lex_state = 44}, + [2152] = {.lex_state = 44}, + [2153] = {.lex_state = 44}, + [2154] = {.lex_state = 44}, + [2155] = {.lex_state = 44}, + [2156] = {.lex_state = 49}, + [2157] = {.lex_state = 44}, + [2158] = {.lex_state = 44}, + [2159] = {.lex_state = 44}, + [2160] = {.lex_state = 44}, + [2161] = {.lex_state = 44}, + [2162] = {.lex_state = 44}, + [2163] = {.lex_state = 44}, + [2164] = {.lex_state = 44}, + [2165] = {.lex_state = 44}, + [2166] = {.lex_state = 44}, + [2167] = {.lex_state = 44}, + [2168] = {.lex_state = 44}, + [2169] = {.lex_state = 44}, + [2170] = {.lex_state = 44}, + [2171] = {.lex_state = 44}, + [2172] = {.lex_state = 44}, + [2173] = {.lex_state = 44}, + [2174] = {.lex_state = 44}, + [2175] = {.lex_state = 44}, + [2176] = {.lex_state = 44}, + [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 = 60}, + [2191] = {.lex_state = 44}, + [2192] = {.lex_state = 44}, + [2193] = {.lex_state = 44}, + [2194] = {.lex_state = 46}, + [2195] = {.lex_state = 49}, + [2196] = {.lex_state = 49}, + [2197] = {.lex_state = 56}, + [2198] = {.lex_state = 46}, + [2199] = {.lex_state = 46}, + [2200] = {.lex_state = 46}, + [2201] = {.lex_state = 46}, + [2202] = {.lex_state = 46}, + [2203] = {.lex_state = 46}, + [2204] = {.lex_state = 46}, + [2205] = {.lex_state = 46}, + [2206] = {.lex_state = 46}, + [2207] = {.lex_state = 46}, + [2208] = {.lex_state = 46}, + [2209] = {.lex_state = 46}, + [2210] = {.lex_state = 46}, + [2211] = {.lex_state = 46}, + [2212] = {.lex_state = 46}, + [2213] = {.lex_state = 46}, + [2214] = {.lex_state = 46}, + [2215] = {.lex_state = 46}, + [2216] = {.lex_state = 46}, + [2217] = {.lex_state = 46}, + [2218] = {.lex_state = 49}, + [2219] = {.lex_state = 46}, + [2220] = {.lex_state = 46}, + [2221] = {.lex_state = 46}, + [2222] = {.lex_state = 46}, + [2223] = {.lex_state = 46}, + [2224] = {.lex_state = 46}, + [2225] = {.lex_state = 46}, + [2226] = {.lex_state = 46}, + [2227] = {.lex_state = 46}, + [2228] = {.lex_state = 46}, + [2229] = {.lex_state = 46}, + [2230] = {.lex_state = 46}, + [2231] = {.lex_state = 46}, + [2232] = {.lex_state = 46}, + [2233] = {.lex_state = 46}, + [2234] = {.lex_state = 46}, + [2235] = {.lex_state = 46}, + [2236] = {.lex_state = 46}, + [2237] = {.lex_state = 46}, + [2238] = {.lex_state = 46}, + [2239] = {.lex_state = 46}, + [2240] = {.lex_state = 46}, + [2241] = {.lex_state = 46}, + [2242] = {.lex_state = 46}, + [2243] = {.lex_state = 46}, + [2244] = {.lex_state = 46}, + [2245] = {.lex_state = 46}, + [2246] = {.lex_state = 46}, + [2247] = {.lex_state = 46}, + [2248] = {.lex_state = 46}, + [2249] = {.lex_state = 46}, + [2250] = {.lex_state = 46}, + [2251] = {.lex_state = 46}, + [2252] = {.lex_state = 49}, + [2253] = {.lex_state = 46}, + [2254] = {.lex_state = 46}, + [2255] = {.lex_state = 46}, + [2256] = {.lex_state = 51}, + [2257] = {.lex_state = 46}, + [2258] = {.lex_state = 46}, + [2259] = {.lex_state = 50}, + [2260] = {.lex_state = 44}, + [2261] = {.lex_state = 44}, + [2262] = {.lex_state = 44}, + [2263] = {.lex_state = 46}, + [2264] = {.lex_state = 48}, + [2265] = {.lex_state = 47}, + [2266] = {.lex_state = 47}, + [2267] = {.lex_state = 47}, + [2268] = {.lex_state = 100}, + [2269] = {.lex_state = 54}, + [2270] = {.lex_state = 49}, + [2271] = {.lex_state = 47}, + [2272] = {.lex_state = 48}, + [2273] = {.lex_state = 47}, + [2274] = {.lex_state = 47}, + [2275] = {.lex_state = 47}, + [2276] = {.lex_state = 47}, + [2277] = {.lex_state = 49}, + [2278] = {.lex_state = 49}, + [2279] = {.lex_state = 47}, + [2280] = {.lex_state = 47}, + [2281] = {.lex_state = 48}, + [2282] = {.lex_state = 52}, + [2283] = {.lex_state = 48}, + [2284] = {.lex_state = 48}, + [2285] = {.lex_state = 48}, + [2286] = {.lex_state = 47}, + [2287] = {.lex_state = 48}, + [2288] = {.lex_state = 48}, + [2289] = {.lex_state = 48}, + [2290] = {.lex_state = 49}, + [2291] = {.lex_state = 49}, + [2292] = {.lex_state = 49}, + [2293] = {.lex_state = 49}, + [2294] = {.lex_state = 48}, + [2295] = {.lex_state = 48}, + [2296] = {.lex_state = 47}, + [2297] = {.lex_state = 47}, + [2298] = {.lex_state = 52}, + [2299] = {.lex_state = 47}, + [2300] = {.lex_state = 48}, + [2301] = {.lex_state = 48}, + [2302] = {.lex_state = 47}, + [2303] = {.lex_state = 47}, + [2304] = {.lex_state = 47}, + [2305] = {.lex_state = 48}, + [2306] = {.lex_state = 49}, + [2307] = {.lex_state = 47}, + [2308] = {.lex_state = 49}, + [2309] = {.lex_state = 47}, + [2310] = {.lex_state = 48}, + [2311] = {.lex_state = 49}, + [2312] = {.lex_state = 49}, + [2313] = {.lex_state = 48}, + [2314] = {.lex_state = 49}, + [2315] = {.lex_state = 48}, + [2316] = {.lex_state = 48}, + [2317] = {.lex_state = 48}, + [2318] = {.lex_state = 48}, + [2319] = {.lex_state = 47}, + [2320] = {.lex_state = 49}, + [2321] = {.lex_state = 49}, + [2322] = {.lex_state = 48}, + [2323] = {.lex_state = 48}, + [2324] = {.lex_state = 48}, + [2325] = {.lex_state = 48}, + [2326] = {.lex_state = 100}, + [2327] = {.lex_state = 48}, + [2328] = {.lex_state = 52}, + [2329] = {.lex_state = 49}, + [2330] = {.lex_state = 48}, + [2331] = {.lex_state = 47}, + [2332] = {.lex_state = 47}, + [2333] = {.lex_state = 100}, + [2334] = {.lex_state = 100}, + [2335] = {.lex_state = 48}, + [2336] = {.lex_state = 48}, + [2337] = {.lex_state = 47}, + [2338] = {.lex_state = 100}, + [2339] = {.lex_state = 100}, + [2340] = {.lex_state = 100}, + [2341] = {.lex_state = 49}, + [2342] = {.lex_state = 47}, + [2343] = {.lex_state = 49}, + [2344] = {.lex_state = 52}, + [2345] = {.lex_state = 52}, + [2346] = {.lex_state = 52}, + [2347] = {.lex_state = 100}, + [2348] = {.lex_state = 47}, + [2349] = {.lex_state = 47}, + [2350] = {.lex_state = 47}, + [2351] = {.lex_state = 100}, + [2352] = {.lex_state = 100}, + [2353] = {.lex_state = 100}, + [2354] = {.lex_state = 100}, + [2355] = {.lex_state = 47}, + [2356] = {.lex_state = 48}, + [2357] = {.lex_state = 47}, + [2358] = {.lex_state = 47}, + [2359] = {.lex_state = 54}, + [2360] = {.lex_state = 47}, + [2361] = {.lex_state = 52}, + [2362] = {.lex_state = 52}, + [2363] = {.lex_state = 52}, + [2364] = {.lex_state = 48}, + [2365] = {.lex_state = 48}, + [2366] = {.lex_state = 48}, + [2367] = {.lex_state = 48}, + [2368] = {.lex_state = 48}, + [2369] = {.lex_state = 52}, + [2370] = {.lex_state = 52}, + [2371] = {.lex_state = 47}, + [2372] = {.lex_state = 48}, + [2373] = {.lex_state = 48}, + [2374] = {.lex_state = 52}, + [2375] = {.lex_state = 48}, + [2376] = {.lex_state = 100}, + [2377] = {.lex_state = 52}, + [2378] = {.lex_state = 52}, + [2379] = {.lex_state = 48}, + [2380] = {.lex_state = 47}, + [2381] = {.lex_state = 47}, + [2382] = {.lex_state = 48}, + [2383] = {.lex_state = 47}, + [2384] = {.lex_state = 100}, + [2385] = {.lex_state = 47}, + [2386] = {.lex_state = 47}, + [2387] = {.lex_state = 47}, + [2388] = {.lex_state = 47}, + [2389] = {.lex_state = 100}, + [2390] = {.lex_state = 52}, + [2391] = {.lex_state = 47}, + [2392] = {.lex_state = 100}, + [2393] = {.lex_state = 48}, + [2394] = {.lex_state = 52}, + [2395] = {.lex_state = 52}, + [2396] = {.lex_state = 52}, + [2397] = {.lex_state = 100}, + [2398] = {.lex_state = 100}, + [2399] = {.lex_state = 47}, + [2400] = {.lex_state = 47}, + [2401] = {.lex_state = 47}, + [2402] = {.lex_state = 47}, + [2403] = {.lex_state = 48}, + [2404] = {.lex_state = 48}, + [2405] = {.lex_state = 48}, + [2406] = {.lex_state = 48}, + [2407] = {.lex_state = 48}, + [2408] = {.lex_state = 52}, + [2409] = {.lex_state = 48}, + [2410] = {.lex_state = 52}, + [2411] = {.lex_state = 52}, + [2412] = {.lex_state = 52}, + [2413] = {.lex_state = 47}, + [2414] = {.lex_state = 100}, + [2415] = {.lex_state = 48}, + [2416] = {.lex_state = 100}, + [2417] = {.lex_state = 48}, + [2418] = {.lex_state = 52}, + [2419] = {.lex_state = 52}, + [2420] = {.lex_state = 48}, + [2421] = {.lex_state = 48}, + [2422] = {.lex_state = 47}, + [2423] = {.lex_state = 47}, + [2424] = {.lex_state = 100}, + [2425] = {.lex_state = 48}, + [2426] = {.lex_state = 52}, + [2427] = {.lex_state = 52}, + [2428] = {.lex_state = 47}, + [2429] = {.lex_state = 47}, + [2430] = {.lex_state = 47}, + [2431] = {.lex_state = 47}, + [2432] = {.lex_state = 49}, + [2433] = {.lex_state = 47}, + [2434] = {.lex_state = 48}, + [2435] = {.lex_state = 48}, + [2436] = {.lex_state = 48}, + [2437] = {.lex_state = 47}, + [2438] = {.lex_state = 47}, + [2439] = {.lex_state = 52}, + [2440] = {.lex_state = 48}, + [2441] = {.lex_state = 48}, + [2442] = {.lex_state = 100}, + [2443] = {.lex_state = 44}, + [2444] = {.lex_state = 52}, + [2445] = {.lex_state = 52}, + [2446] = {.lex_state = 52}, + [2447] = {.lex_state = 48}, + [2448] = {.lex_state = 47}, + [2449] = {.lex_state = 100}, + [2450] = {.lex_state = 100}, + [2451] = {.lex_state = 55}, + [2452] = {.lex_state = 49}, + [2453] = {.lex_state = 100}, + [2454] = {.lex_state = 55}, + [2455] = {.lex_state = 53}, + [2456] = {.lex_state = 53}, + [2457] = {.lex_state = 52}, + [2458] = {.lex_state = 48}, + [2459] = {.lex_state = 52}, + [2460] = {.lex_state = 52}, + [2461] = {.lex_state = 52}, + [2462] = {.lex_state = 53}, + [2463] = {.lex_state = 100}, + [2464] = {.lex_state = 100}, + [2465] = {.lex_state = 100}, + [2466] = {.lex_state = 55}, + [2467] = {.lex_state = 52}, + [2468] = {.lex_state = 52}, + [2469] = {.lex_state = 62}, + [2470] = {.lex_state = 52}, + [2471] = {.lex_state = 100}, + [2472] = {.lex_state = 100}, + [2473] = {.lex_state = 100}, + [2474] = {.lex_state = 47}, + [2475] = {.lex_state = 52}, + [2476] = {.lex_state = 52}, + [2477] = {.lex_state = 100}, + [2478] = {.lex_state = 100}, + [2479] = {.lex_state = 100}, + [2480] = {.lex_state = 100}, + [2481] = {.lex_state = 46}, + [2482] = {.lex_state = 100}, + [2483] = {.lex_state = 52}, + [2484] = {.lex_state = 52}, + [2485] = {.lex_state = 100}, + [2486] = {.lex_state = 100}, + [2487] = {.lex_state = 100}, + [2488] = {.lex_state = 52}, + [2489] = {.lex_state = 100}, + [2490] = {.lex_state = 52}, + [2491] = {.lex_state = 52}, + [2492] = {.lex_state = 100}, + [2493] = {.lex_state = 100}, + [2494] = {.lex_state = 52}, + [2495] = {.lex_state = 54}, + [2496] = {.lex_state = 52}, + [2497] = {.lex_state = 100}, + [2498] = {.lex_state = 100}, + [2499] = {.lex_state = 100}, + [2500] = {.lex_state = 100}, + [2501] = {.lex_state = 100}, + [2502] = {.lex_state = 52}, + [2503] = {.lex_state = 52}, + [2504] = {.lex_state = 52}, + [2505] = {.lex_state = 52}, + [2506] = {.lex_state = 62}, + [2507] = {.lex_state = 100}, + [2508] = {.lex_state = 52}, + [2509] = {.lex_state = 52}, + [2510] = {.lex_state = 62}, + [2511] = {.lex_state = 100}, + [2512] = {.lex_state = 52}, + [2513] = {.lex_state = 52}, + [2514] = {.lex_state = 52}, + [2515] = {.lex_state = 100}, + [2516] = {.lex_state = 52}, + [2517] = {.lex_state = 52}, + [2518] = {.lex_state = 100}, + [2519] = {.lex_state = 100}, + [2520] = {.lex_state = 100}, + [2521] = {.lex_state = 100}, + [2522] = {.lex_state = 100}, + [2523] = {.lex_state = 52}, + [2524] = {.lex_state = 52}, + [2525] = {.lex_state = 52}, + [2526] = {.lex_state = 100}, + [2527] = {.lex_state = 100}, + [2528] = {.lex_state = 100}, + [2529] = {.lex_state = 100}, + [2530] = {.lex_state = 100}, + [2531] = {.lex_state = 100}, + [2532] = {.lex_state = 3}, + [2533] = {.lex_state = 3}, + [2534] = {.lex_state = 3}, + [2535] = {.lex_state = 3}, + [2536] = {.lex_state = 3}, + [2537] = {.lex_state = 3}, + [2538] = {.lex_state = 3}, + [2539] = {.lex_state = 3}, + [2540] = {.lex_state = 3}, + [2541] = {.lex_state = 3}, + [2542] = {.lex_state = 3}, + [2543] = {.lex_state = 3}, + [2544] = {.lex_state = 3}, + [2545] = {.lex_state = 3}, + [2546] = {.lex_state = 3}, + [2547] = {.lex_state = 3}, + [2548] = {.lex_state = 3}, + [2549] = {.lex_state = 3}, + [2550] = {.lex_state = 3}, + [2551] = {.lex_state = 3}, + [2552] = {.lex_state = 3}, + [2553] = {.lex_state = 3}, + [2554] = {.lex_state = 3}, + [2555] = {.lex_state = 3}, + [2556] = {.lex_state = 3}, + [2557] = {.lex_state = 3}, + [2558] = {.lex_state = 3}, + [2559] = {.lex_state = 3}, + [2560] = {.lex_state = 3}, + [2561] = {.lex_state = 3}, + [2562] = {.lex_state = 3}, + [2563] = {.lex_state = 3}, + [2564] = {.lex_state = 1}, + [2565] = {.lex_state = 43}, + [2566] = {.lex_state = 1}, + [2567] = {.lex_state = 43}, + [2568] = {.lex_state = 43}, + [2569] = {.lex_state = 1}, + [2570] = {.lex_state = 42}, + [2571] = {.lex_state = 43}, + [2572] = {.lex_state = 1}, + [2573] = {.lex_state = 43}, + [2574] = {.lex_state = 1}, + [2575] = {.lex_state = 1}, + [2576] = {.lex_state = 43}, + [2577] = {.lex_state = 1}, + [2578] = {.lex_state = 43}, + [2579] = {.lex_state = 42}, + [2580] = {.lex_state = 42}, + [2581] = {.lex_state = 43}, + [2582] = {.lex_state = 43}, + [2583] = {.lex_state = 1}, + [2584] = {.lex_state = 1}, + [2585] = {.lex_state = 43}, + [2586] = {.lex_state = 1}, + [2587] = {.lex_state = 43}, + [2588] = {.lex_state = 1}, + [2589] = {.lex_state = 42}, + [2590] = {.lex_state = 42}, + [2591] = {.lex_state = 42}, + [2592] = {.lex_state = 42}, + [2593] = {.lex_state = 43}, + [2594] = {.lex_state = 1}, + [2595] = {.lex_state = 43}, + [2596] = {.lex_state = 42}, + [2597] = {.lex_state = 1}, + [2598] = {.lex_state = 1}, + [2599] = {.lex_state = 43}, + [2600] = {.lex_state = 1}, + [2601] = {.lex_state = 43}, + [2602] = {.lex_state = 43}, + [2603] = {.lex_state = 38}, + [2604] = {.lex_state = 1}, + [2605] = {.lex_state = 43}, + [2606] = {.lex_state = 1}, + [2607] = {.lex_state = 43}, + [2608] = {.lex_state = 43}, + [2609] = {.lex_state = 1}, + [2610] = {.lex_state = 43}, + [2611] = {.lex_state = 1}, + [2612] = {.lex_state = 43}, + [2613] = {.lex_state = 1}, + [2614] = {.lex_state = 42}, + [2615] = {.lex_state = 42}, + [2616] = {.lex_state = 42}, + [2617] = {.lex_state = 1}, + [2618] = {.lex_state = 43}, + [2619] = {.lex_state = 1}, + [2620] = {.lex_state = 43}, + [2621] = {.lex_state = 42}, + [2622] = {.lex_state = 1}, + [2623] = {.lex_state = 43}, + [2624] = {.lex_state = 1}, + [2625] = {.lex_state = 43}, + [2626] = {.lex_state = 42}, + [2627] = {.lex_state = 1}, + [2628] = {.lex_state = 1}, + [2629] = {.lex_state = 43}, + [2630] = {.lex_state = 43}, + [2631] = {.lex_state = 43}, + [2632] = {.lex_state = 1}, + [2633] = {.lex_state = 43}, + [2634] = {.lex_state = 1}, + [2635] = {.lex_state = 43}, + [2636] = {.lex_state = 42}, + [2637] = {.lex_state = 1}, + [2638] = {.lex_state = 42}, + [2639] = {.lex_state = 43}, + [2640] = {.lex_state = 43}, + [2641] = {.lex_state = 42}, + [2642] = {.lex_state = 1}, + [2643] = {.lex_state = 43}, + [2644] = {.lex_state = 43}, + [2645] = {.lex_state = 1}, + [2646] = {.lex_state = 38}, + [2647] = {.lex_state = 1}, + [2648] = {.lex_state = 43}, + [2649] = {.lex_state = 1}, + [2650] = {.lex_state = 1}, + [2651] = {.lex_state = 42}, + [2652] = {.lex_state = 43}, + [2653] = {.lex_state = 43}, + [2654] = {.lex_state = 1}, + [2655] = {.lex_state = 1}, + [2656] = {.lex_state = 43}, + [2657] = {.lex_state = 42}, + [2658] = {.lex_state = 43}, + [2659] = {.lex_state = 1}, + [2660] = {.lex_state = 1}, + [2661] = {.lex_state = 1}, + [2662] = {.lex_state = 1}, + [2663] = {.lex_state = 42}, + [2664] = {.lex_state = 42}, + [2665] = {.lex_state = 43}, + [2666] = {.lex_state = 1}, + [2667] = {.lex_state = 42}, + [2668] = {.lex_state = 42}, + [2669] = {.lex_state = 43}, + [2670] = {.lex_state = 1}, + [2671] = {.lex_state = 42}, + [2672] = {.lex_state = 43}, + [2673] = {.lex_state = 1}, + [2674] = {.lex_state = 1}, + [2675] = {.lex_state = 1}, + [2676] = {.lex_state = 43}, + [2677] = {.lex_state = 43}, + [2678] = {.lex_state = 43}, + [2679] = {.lex_state = 1}, + [2680] = {.lex_state = 43}, + [2681] = {.lex_state = 1}, + [2682] = {.lex_state = 42}, + [2683] = {.lex_state = 1}, + [2684] = {.lex_state = 43}, + [2685] = {.lex_state = 43}, + [2686] = {.lex_state = 43}, + [2687] = {.lex_state = 43}, + [2688] = {.lex_state = 1}, + [2689] = {.lex_state = 42}, + [2690] = {.lex_state = 43}, + [2691] = {.lex_state = 42}, + [2692] = {.lex_state = 43}, + [2693] = {.lex_state = 1}, + [2694] = {.lex_state = 1}, + [2695] = {.lex_state = 1}, + [2696] = {.lex_state = 43}, + [2697] = {.lex_state = 42}, + [2698] = {.lex_state = 43}, + [2699] = {.lex_state = 42}, + [2700] = {.lex_state = 42}, + [2701] = {.lex_state = 43}, + [2702] = {.lex_state = 1}, + [2703] = {.lex_state = 42}, + [2704] = {.lex_state = 1}, + [2705] = {.lex_state = 43}, + [2706] = {.lex_state = 1}, + [2707] = {.lex_state = 43}, + [2708] = {.lex_state = 1}, + [2709] = {.lex_state = 42}, + [2710] = {.lex_state = 1}, + [2711] = {.lex_state = 1}, + [2712] = {.lex_state = 1}, + [2713] = {.lex_state = 43}, + [2714] = {.lex_state = 43}, + [2715] = {.lex_state = 1}, + [2716] = {.lex_state = 43}, + [2717] = {.lex_state = 42}, + [2718] = {.lex_state = 43}, + [2719] = {.lex_state = 43}, + [2720] = {.lex_state = 43}, + [2721] = {.lex_state = 1}, + [2722] = {.lex_state = 43}, + [2723] = {.lex_state = 1}, + [2724] = {.lex_state = 1}, + [2725] = {.lex_state = 38}, + [2726] = {.lex_state = 1}, + [2727] = {.lex_state = 1}, + [2728] = {.lex_state = 42}, + [2729] = {.lex_state = 43}, + [2730] = {.lex_state = 76}, + [2731] = {.lex_state = 76}, + [2732] = {.lex_state = 76}, + [2733] = {.lex_state = 36}, + [2734] = {.lex_state = 76}, + [2735] = {.lex_state = 36}, + [2736] = {.lex_state = 76}, + [2737] = {.lex_state = 76}, + [2738] = {.lex_state = 36}, + [2739] = {.lex_state = 76}, + [2740] = {.lex_state = 36}, + [2741] = {.lex_state = 36}, + [2742] = {.lex_state = 76}, + [2743] = {.lex_state = 36}, + [2744] = {.lex_state = 36}, + [2745] = {.lex_state = 76}, + [2746] = {.lex_state = 36}, + [2747] = {.lex_state = 36}, + [2748] = {.lex_state = 76}, + [2749] = {.lex_state = 36}, + [2750] = {.lex_state = 36}, + [2751] = {.lex_state = 36}, + [2752] = {.lex_state = 76}, + [2753] = {.lex_state = 76}, + [2754] = {.lex_state = 76}, + [2755] = {.lex_state = 36}, + [2756] = {.lex_state = 76}, + [2757] = {.lex_state = 36}, + [2758] = {.lex_state = 76}, + [2759] = {.lex_state = 36}, + [2760] = {.lex_state = 76}, + [2761] = {.lex_state = 76}, + [2762] = {.lex_state = 36}, + [2763] = {.lex_state = 36}, + [2764] = {.lex_state = 76}, + [2765] = {.lex_state = 36}, + [2766] = {.lex_state = 76}, + [2767] = {.lex_state = 36}, + [2768] = {.lex_state = 36}, + [2769] = {.lex_state = 76}, + [2770] = {.lex_state = 36}, + [2771] = {.lex_state = 36}, + [2772] = {.lex_state = 76}, + [2773] = {.lex_state = 36}, + [2774] = {.lex_state = 36}, + [2775] = {.lex_state = 36}, + [2776] = {.lex_state = 36}, + [2777] = {.lex_state = 76}, + [2778] = {.lex_state = 36}, + [2779] = {.lex_state = 36}, + [2780] = {.lex_state = 76}, + [2781] = {.lex_state = 36}, + [2782] = {.lex_state = 76}, + [2783] = {.lex_state = 36}, + [2784] = {.lex_state = 36}, + [2785] = {.lex_state = 76}, + [2786] = {.lex_state = 76}, + [2787] = {.lex_state = 76}, + [2788] = {.lex_state = 76}, + [2789] = {.lex_state = 76}, + [2790] = {.lex_state = 36}, + [2791] = {.lex_state = 76}, + [2792] = {.lex_state = 76}, + [2793] = {.lex_state = 37}, + [2794] = {.lex_state = 37}, + [2795] = {.lex_state = 76}, + [2796] = {.lex_state = 36}, + [2797] = {.lex_state = 36}, + [2798] = {.lex_state = 76}, + [2799] = {.lex_state = 36}, + [2800] = {.lex_state = 76}, + [2801] = {.lex_state = 76}, + [2802] = {.lex_state = 36}, + [2803] = {.lex_state = 76}, + [2804] = {.lex_state = 76}, + [2805] = {.lex_state = 36}, + [2806] = {.lex_state = 76}, + [2807] = {.lex_state = 36}, + [2808] = {.lex_state = 37}, + [2809] = {.lex_state = 76}, + [2810] = {.lex_state = 76}, + [2811] = {.lex_state = 36}, + [2812] = {.lex_state = 36}, + [2813] = {.lex_state = 36}, + [2814] = {.lex_state = 36}, + [2815] = {.lex_state = 36}, + [2816] = {.lex_state = 76}, + [2817] = {.lex_state = 36}, + [2818] = {.lex_state = 76}, + [2819] = {.lex_state = 76}, + [2820] = {.lex_state = 36}, + [2821] = {.lex_state = 36}, + [2822] = {.lex_state = 36}, + [2823] = {.lex_state = 76}, + [2824] = {.lex_state = 36}, + [2825] = {.lex_state = 76}, + [2826] = {.lex_state = 76}, + [2827] = {.lex_state = 36}, + [2828] = {.lex_state = 76}, + [2829] = {.lex_state = 37}, + [2830] = {.lex_state = 76}, + [2831] = {.lex_state = 76}, + [2832] = {.lex_state = 76}, + [2833] = {.lex_state = 36}, + [2834] = {.lex_state = 36}, + [2835] = {.lex_state = 76}, + [2836] = {.lex_state = 36}, + [2837] = {.lex_state = 76}, + [2838] = {.lex_state = 37}, + [2839] = {.lex_state = 36}, + [2840] = {.lex_state = 76}, + [2841] = {.lex_state = 36}, + [2842] = {.lex_state = 36}, + [2843] = {.lex_state = 36}, + [2844] = {.lex_state = 76}, + [2845] = {.lex_state = 76}, + [2846] = {.lex_state = 76}, + [2847] = {.lex_state = 36}, + [2848] = {.lex_state = 36}, + [2849] = {.lex_state = 76}, + [2850] = {.lex_state = 76}, + [2851] = {.lex_state = 76}, + [2852] = {.lex_state = 36}, + [2853] = {.lex_state = 36}, + [2854] = {.lex_state = 76}, + [2855] = {.lex_state = 36}, + [2856] = {.lex_state = 36}, + [2857] = {.lex_state = 76}, + [2858] = {.lex_state = 76}, + [2859] = {.lex_state = 36}, + [2860] = {.lex_state = 36}, + [2861] = {.lex_state = 76}, + [2862] = {.lex_state = 36}, + [2863] = {.lex_state = 36}, + [2864] = {.lex_state = 36}, + [2865] = {.lex_state = 76}, + [2866] = {.lex_state = 76}, + [2867] = {.lex_state = 36}, + [2868] = {.lex_state = 36}, + [2869] = {.lex_state = 42}, + [2870] = {.lex_state = 42}, + [2871] = {.lex_state = 38}, + [2872] = {.lex_state = 43}, + [2873] = {.lex_state = 1}, + [2874] = {.lex_state = 1}, + [2875] = {.lex_state = 38}, + [2876] = {.lex_state = 43}, [2877] = {.lex_state = 5}, [2878] = {.lex_state = 5}, [2879] = {.lex_state = 5}, @@ -15665,7 +16914,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2882] = {.lex_state = 5}, [2883] = {.lex_state = 5}, [2884] = {.lex_state = 5}, - [2885] = {.lex_state = 5}, + [2885] = {.lex_state = 76}, [2886] = {.lex_state = 5}, [2887] = {.lex_state = 5}, [2888] = {.lex_state = 5}, @@ -15682,7 +16931,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2899] = {.lex_state = 5}, [2900] = {.lex_state = 5}, [2901] = {.lex_state = 5}, - [2902] = {.lex_state = 5}, + [2902] = {.lex_state = 76}, [2903] = {.lex_state = 5}, [2904] = {.lex_state = 5}, [2905] = {.lex_state = 5}, @@ -15732,7 +16981,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2949] = {.lex_state = 5}, [2950] = {.lex_state = 5}, [2951] = {.lex_state = 5}, - [2952] = {.lex_state = 33}, + [2952] = {.lex_state = 5}, [2953] = {.lex_state = 5}, [2954] = {.lex_state = 5}, [2955] = {.lex_state = 5}, @@ -15791,7 +17040,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3008] = {.lex_state = 5}, [3009] = {.lex_state = 5}, [3010] = {.lex_state = 5}, - [3011] = {.lex_state = 70}, + [3011] = {.lex_state = 5}, [3012] = {.lex_state = 5}, [3013] = {.lex_state = 5}, [3014] = {.lex_state = 5}, @@ -15846,7 +17095,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3063] = {.lex_state = 5}, [3064] = {.lex_state = 5}, [3065] = {.lex_state = 5}, - [3066] = {.lex_state = 5}, + [3066] = {.lex_state = 37}, [3067] = {.lex_state = 5}, [3068] = {.lex_state = 5}, [3069] = {.lex_state = 5}, @@ -15884,7 +17133,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3101] = {.lex_state = 5}, [3102] = {.lex_state = 5}, [3103] = {.lex_state = 5}, - [3104] = {.lex_state = 70}, + [3104] = {.lex_state = 5}, [3105] = {.lex_state = 5}, [3106] = {.lex_state = 5}, [3107] = {.lex_state = 5}, @@ -15918,7 +17167,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3135] = {.lex_state = 5}, [3136] = {.lex_state = 5}, [3137] = {.lex_state = 5}, - [3138] = {.lex_state = 34}, + [3138] = {.lex_state = 5}, [3139] = {.lex_state = 5}, [3140] = {.lex_state = 5}, [3141] = {.lex_state = 5}, @@ -15950,14 +17199,14 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3167] = {.lex_state = 5}, [3168] = {.lex_state = 5}, [3169] = {.lex_state = 5}, - [3170] = {.lex_state = 33}, + [3170] = {.lex_state = 5}, [3171] = {.lex_state = 5}, [3172] = {.lex_state = 5}, - [3173] = {.lex_state = 33}, + [3173] = {.lex_state = 5}, [3174] = {.lex_state = 5}, - [3175] = {.lex_state = 34}, + [3175] = {.lex_state = 5}, [3176] = {.lex_state = 5}, - [3177] = {.lex_state = 34}, + [3177] = {.lex_state = 5}, [3178] = {.lex_state = 5}, [3179] = {.lex_state = 5}, [3180] = {.lex_state = 5}, @@ -15967,8 +17216,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3184] = {.lex_state = 5}, [3185] = {.lex_state = 5}, [3186] = {.lex_state = 5}, - [3187] = {.lex_state = 33}, - [3188] = {.lex_state = 33}, + [3187] = {.lex_state = 5}, + [3188] = {.lex_state = 5}, [3189] = {.lex_state = 5}, [3190] = {.lex_state = 5}, [3191] = {.lex_state = 5}, @@ -15982,12 +17231,12 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3199] = {.lex_state = 5}, [3200] = {.lex_state = 5}, [3201] = {.lex_state = 5}, - [3202] = {.lex_state = 5}, - [3203] = {.lex_state = 34}, + [3202] = {.lex_state = 76}, + [3203] = {.lex_state = 5}, [3204] = {.lex_state = 5}, [3205] = {.lex_state = 5}, [3206] = {.lex_state = 5}, - [3207] = {.lex_state = 34}, + [3207] = {.lex_state = 5}, [3208] = {.lex_state = 5}, [3209] = {.lex_state = 5}, [3210] = {.lex_state = 5}, @@ -16037,735 +17286,1437 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3254] = {.lex_state = 5}, [3255] = {.lex_state = 5}, [3256] = {.lex_state = 5}, - [3257] = {.lex_state = 55}, - [3258] = {.lex_state = 67}, - [3259] = {.lex_state = 64}, - [3260] = {.lex_state = 61}, - [3261] = {.lex_state = 69}, - [3262] = {.lex_state = 58}, - [3263] = {.lex_state = 47}, - [3264] = {.lex_state = 68}, - [3265] = {.lex_state = 63}, - [3266] = {.lex_state = 63}, - [3267] = {.lex_state = 65}, - [3268] = {.lex_state = 66}, - [3269] = {.lex_state = 52}, - [3270] = {.lex_state = 56}, - [3271] = {.lex_state = 60}, - [3272] = {.lex_state = 55}, - [3273] = {.lex_state = 54}, - [3274] = {.lex_state = 49}, - [3275] = {.lex_state = 46}, - [3276] = {.lex_state = 50}, - [3277] = {.lex_state = 47}, - [3278] = {.lex_state = 48}, - [3279] = {.lex_state = 51}, - [3280] = {.lex_state = 48}, - [3281] = {.lex_state = 51}, - [3282] = {.lex_state = 52}, - [3283] = {.lex_state = 59}, - [3284] = {.lex_state = 53}, - [3285] = {.lex_state = 57}, - [3286] = {.lex_state = 63}, - [3287] = {.lex_state = 54}, - [3288] = {.lex_state = 59}, - [3289] = {.lex_state = 53}, - [3290] = {.lex_state = 57}, - [3291] = {.lex_state = 63}, - [3292] = {.lex_state = 67}, - [3293] = {.lex_state = 64}, - [3294] = {.lex_state = 61}, - [3295] = {.lex_state = 69}, - [3296] = {.lex_state = 58}, - [3297] = {.lex_state = 63}, - [3298] = {.lex_state = 50}, - [3299] = {.lex_state = 46}, - [3300] = {.lex_state = 49}, - [3301] = {.lex_state = 54}, - [3302] = {.lex_state = 55}, - [3303] = {.lex_state = 60}, - [3304] = {.lex_state = 56}, - [3305] = {.lex_state = 66}, - [3306] = {.lex_state = 65}, - [3307] = {.lex_state = 63}, - [3308] = {.lex_state = 63}, - [3309] = {.lex_state = 68}, - [3310] = {.lex_state = 63}, - [3311] = {.lex_state = 58}, - [3312] = {.lex_state = 69}, - [3313] = {.lex_state = 61}, - [3314] = {.lex_state = 64}, - [3315] = {.lex_state = 67}, - [3316] = {.lex_state = 63}, - [3317] = {.lex_state = 57}, - [3318] = {.lex_state = 53}, - [3319] = {.lex_state = 59}, - [3320] = {.lex_state = 52}, - [3321] = {.lex_state = 51}, - [3322] = {.lex_state = 65}, - [3323] = {.lex_state = 66}, - [3324] = {.lex_state = 48}, - [3325] = {.lex_state = 47}, - [3326] = {.lex_state = 56}, - [3327] = {.lex_state = 60}, - [3328] = {.lex_state = 55}, - [3329] = {.lex_state = 54}, - [3330] = {.lex_state = 49}, - [3331] = {.lex_state = 46}, - [3332] = {.lex_state = 50}, - [3333] = {.lex_state = 50}, - [3334] = {.lex_state = 46}, - [3335] = {.lex_state = 49}, - [3336] = {.lex_state = 69}, - [3337] = {.lex_state = 55}, - [3338] = {.lex_state = 60}, - [3339] = {.lex_state = 56}, - [3340] = {.lex_state = 66}, - [3341] = {.lex_state = 65}, - [3342] = {.lex_state = 63}, - [3343] = {.lex_state = 63}, - [3344] = {.lex_state = 68}, - [3345] = {.lex_state = 58}, - [3346] = {.lex_state = 57}, - [3347] = {.lex_state = 61}, - [3348] = {.lex_state = 64}, - [3349] = {.lex_state = 67}, - [3350] = {.lex_state = 63}, - [3351] = {.lex_state = 57}, - [3352] = {.lex_state = 53}, - [3353] = {.lex_state = 59}, - [3354] = {.lex_state = 52}, - [3355] = {.lex_state = 51}, - [3356] = {.lex_state = 48}, - [3357] = {.lex_state = 47}, - [3358] = {.lex_state = 47}, - [3359] = {.lex_state = 48}, - [3360] = {.lex_state = 51}, - [3361] = {.lex_state = 52}, - [3362] = {.lex_state = 59}, - [3363] = {.lex_state = 53}, - [3364] = {.lex_state = 57}, - [3365] = {.lex_state = 63}, - [3366] = {.lex_state = 67}, - [3367] = {.lex_state = 64}, - [3368] = {.lex_state = 61}, - [3369] = {.lex_state = 69}, - [3370] = {.lex_state = 50}, - [3371] = {.lex_state = 46}, - [3372] = {.lex_state = 49}, - [3373] = {.lex_state = 54}, - [3374] = {.lex_state = 55}, - [3375] = {.lex_state = 60}, - [3376] = {.lex_state = 56}, - [3377] = {.lex_state = 66}, - [3378] = {.lex_state = 65}, - [3379] = {.lex_state = 63}, - [3380] = {.lex_state = 63}, - [3381] = {.lex_state = 68}, - [3382] = {.lex_state = 58}, - [3383] = {.lex_state = 58}, - [3384] = {.lex_state = 69}, - [3385] = {.lex_state = 61}, - [3386] = {.lex_state = 64}, - [3387] = {.lex_state = 67}, - [3388] = {.lex_state = 63}, - [3389] = {.lex_state = 57}, - [3390] = {.lex_state = 53}, - [3391] = {.lex_state = 59}, - [3392] = {.lex_state = 52}, - [3393] = {.lex_state = 51}, - [3394] = {.lex_state = 68}, - [3395] = {.lex_state = 63}, - [3396] = {.lex_state = 48}, - [3397] = {.lex_state = 47}, - [3398] = {.lex_state = 63}, - [3399] = {.lex_state = 65}, - [3400] = {.lex_state = 68}, - [3401] = {.lex_state = 56}, - [3402] = {.lex_state = 60}, - [3403] = {.lex_state = 55}, - [3404] = {.lex_state = 54}, - [3405] = {.lex_state = 49}, - [3406] = {.lex_state = 46}, - [3407] = {.lex_state = 50}, - [3408] = {.lex_state = 50}, - [3409] = {.lex_state = 46}, - [3410] = {.lex_state = 49}, - [3411] = {.lex_state = 54}, - [3412] = {.lex_state = 55}, - [3413] = {.lex_state = 60}, - [3414] = {.lex_state = 56}, - [3415] = {.lex_state = 66}, - [3416] = {.lex_state = 65}, - [3417] = {.lex_state = 63}, - [3418] = {.lex_state = 63}, - [3419] = {.lex_state = 68}, - [3420] = {.lex_state = 58}, - [3421] = {.lex_state = 69}, - [3422] = {.lex_state = 61}, - [3423] = {.lex_state = 64}, - [3424] = {.lex_state = 0}, - [3425] = {.lex_state = 67}, - [3426] = {.lex_state = 63}, - [3427] = {.lex_state = 57}, - [3428] = {.lex_state = 53}, - [3429] = {.lex_state = 59}, - [3430] = {.lex_state = 52}, - [3431] = {.lex_state = 51}, - [3432] = {.lex_state = 66}, - [3433] = {.lex_state = 48}, - [3434] = {.lex_state = 47}, - [3435] = {.lex_state = 47}, - [3436] = {.lex_state = 48}, - [3437] = {.lex_state = 51}, - [3438] = {.lex_state = 52}, - [3439] = {.lex_state = 59}, - [3440] = {.lex_state = 53}, - [3441] = {.lex_state = 63}, - [3442] = {.lex_state = 63}, - [3443] = {.lex_state = 67}, - [3444] = {.lex_state = 64}, - [3445] = {.lex_state = 61}, - [3446] = {.lex_state = 50}, - [3447] = {.lex_state = 46}, - [3448] = {.lex_state = 49}, - [3449] = {.lex_state = 54}, - [3450] = {.lex_state = 55}, - [3451] = {.lex_state = 60}, - [3452] = {.lex_state = 56}, - [3453] = {.lex_state = 66}, - [3454] = {.lex_state = 65}, - [3455] = {.lex_state = 63}, - [3456] = {.lex_state = 63}, - [3457] = {.lex_state = 68}, - [3458] = {.lex_state = 69}, - [3459] = {.lex_state = 58}, - [3460] = {.lex_state = 69}, - [3461] = {.lex_state = 61}, - [3462] = {.lex_state = 64}, - [3463] = {.lex_state = 67}, - [3464] = {.lex_state = 63}, - [3465] = {.lex_state = 57}, - [3466] = {.lex_state = 53}, - [3467] = {.lex_state = 59}, - [3468] = {.lex_state = 52}, - [3469] = {.lex_state = 51}, - [3470] = {.lex_state = 58}, - [3471] = {.lex_state = 68}, - [3472] = {.lex_state = 48}, - [3473] = {.lex_state = 47}, - [3474] = {.lex_state = 63}, - [3475] = {.lex_state = 63}, - [3476] = {.lex_state = 63}, - [3477] = {.lex_state = 65}, - [3478] = {.lex_state = 66}, - [3479] = {.lex_state = 56}, - [3480] = {.lex_state = 60}, - [3481] = {.lex_state = 55}, - [3482] = {.lex_state = 54}, - [3483] = {.lex_state = 49}, - [3484] = {.lex_state = 46}, - [3485] = {.lex_state = 50}, - [3486] = {.lex_state = 50}, - [3487] = {.lex_state = 46}, - [3488] = {.lex_state = 49}, - [3489] = {.lex_state = 54}, - [3490] = {.lex_state = 55}, - [3491] = {.lex_state = 60}, - [3492] = {.lex_state = 56}, - [3493] = {.lex_state = 66}, - [3494] = {.lex_state = 65}, - [3495] = {.lex_state = 63}, - [3496] = {.lex_state = 63}, - [3497] = {.lex_state = 68}, - [3498] = {.lex_state = 58}, - [3499] = {.lex_state = 69}, - [3500] = {.lex_state = 61}, - [3501] = {.lex_state = 64}, - [3502] = {.lex_state = 67}, - [3503] = {.lex_state = 50}, - [3504] = {.lex_state = 63}, - [3505] = {.lex_state = 57}, - [3506] = {.lex_state = 53}, - [3507] = {.lex_state = 59}, - [3508] = {.lex_state = 52}, - [3509] = {.lex_state = 51}, - [3510] = {.lex_state = 48}, - [3511] = {.lex_state = 47}, - [3512] = {.lex_state = 47}, - [3513] = {.lex_state = 48}, - [3514] = {.lex_state = 51}, - [3515] = {.lex_state = 52}, - [3516] = {.lex_state = 59}, - [3517] = {.lex_state = 53}, - [3518] = {.lex_state = 57}, - [3519] = {.lex_state = 63}, - [3520] = {.lex_state = 67}, - [3521] = {.lex_state = 64}, - [3522] = {.lex_state = 61}, - [3523] = {.lex_state = 50}, - [3524] = {.lex_state = 46}, - [3525] = {.lex_state = 49}, - [3526] = {.lex_state = 54}, - [3527] = {.lex_state = 46}, - [3528] = {.lex_state = 49}, - [3529] = {.lex_state = 54}, - [3530] = {.lex_state = 55}, - [3531] = {.lex_state = 60}, - [3532] = {.lex_state = 56}, - [3533] = {.lex_state = 66}, - [3534] = {.lex_state = 65}, - [3535] = {.lex_state = 63}, - [3536] = {.lex_state = 63}, - [3537] = {.lex_state = 68}, - [3538] = {.lex_state = 69}, - [3539] = {.lex_state = 58}, - [3540] = {.lex_state = 69}, - [3541] = {.lex_state = 61}, - [3542] = {.lex_state = 64}, - [3543] = {.lex_state = 67}, - [3544] = {.lex_state = 63}, - [3545] = {.lex_state = 57}, - [3546] = {.lex_state = 53}, - [3547] = {.lex_state = 59}, - [3548] = {.lex_state = 52}, - [3549] = {.lex_state = 51}, - [3550] = {.lex_state = 58}, - [3551] = {.lex_state = 68}, - [3552] = {.lex_state = 48}, - [3553] = {.lex_state = 55}, - [3554] = {.lex_state = 60}, - [3555] = {.lex_state = 56}, - [3556] = {.lex_state = 47}, - [3557] = {.lex_state = 57}, - [3558] = {.lex_state = 63}, - [3559] = {.lex_state = 65}, - [3560] = {.lex_state = 66}, - [3561] = {.lex_state = 56}, - [3562] = {.lex_state = 60}, - [3563] = {.lex_state = 55}, - [3564] = {.lex_state = 54}, - [3565] = {.lex_state = 49}, - [3566] = {.lex_state = 46}, - [3567] = {.lex_state = 50}, - [3568] = {.lex_state = 50}, - [3569] = {.lex_state = 46}, - [3570] = {.lex_state = 49}, - [3571] = {.lex_state = 54}, - [3572] = {.lex_state = 55}, - [3573] = {.lex_state = 60}, - [3574] = {.lex_state = 56}, - [3575] = {.lex_state = 66}, - [3576] = {.lex_state = 65}, - [3577] = {.lex_state = 63}, - [3578] = {.lex_state = 63}, - [3579] = {.lex_state = 68}, - [3580] = {.lex_state = 66}, - [3581] = {.lex_state = 65}, - [3582] = {.lex_state = 58}, - [3583] = {.lex_state = 69}, - [3584] = {.lex_state = 61}, - [3585] = {.lex_state = 64}, - [3586] = {.lex_state = 67}, - [3587] = {.lex_state = 63}, - [3588] = {.lex_state = 57}, - [3589] = {.lex_state = 53}, - [3590] = {.lex_state = 59}, - [3591] = {.lex_state = 52}, - [3592] = {.lex_state = 51}, - [3593] = {.lex_state = 48}, - [3594] = {.lex_state = 47}, - [3595] = {.lex_state = 47}, - [3596] = {.lex_state = 48}, - [3597] = {.lex_state = 51}, - [3598] = {.lex_state = 52}, - [3599] = {.lex_state = 59}, - [3600] = {.lex_state = 53}, - [3601] = {.lex_state = 63}, - [3602] = {.lex_state = 63}, - [3603] = {.lex_state = 67}, - [3604] = {.lex_state = 50}, - [3605] = {.lex_state = 47}, - [3606] = {.lex_state = 63}, - [3607] = {.lex_state = 68}, - [3608] = {.lex_state = 46}, - [3609] = {.lex_state = 49}, - [3610] = {.lex_state = 54}, - [3611] = {.lex_state = 55}, - [3612] = {.lex_state = 60}, - [3613] = {.lex_state = 56}, - [3614] = {.lex_state = 66}, - [3615] = {.lex_state = 65}, - [3616] = {.lex_state = 63}, - [3617] = {.lex_state = 63}, - [3618] = {.lex_state = 68}, - [3619] = {.lex_state = 61}, - [3620] = {.lex_state = 58}, - [3621] = {.lex_state = 69}, - [3622] = {.lex_state = 61}, - [3623] = {.lex_state = 64}, - [3624] = {.lex_state = 67}, - [3625] = {.lex_state = 63}, - [3626] = {.lex_state = 57}, - [3627] = {.lex_state = 53}, - [3628] = {.lex_state = 59}, - [3629] = {.lex_state = 52}, - [3630] = {.lex_state = 51}, - [3631] = {.lex_state = 58}, - [3632] = {.lex_state = 69}, - [3633] = {.lex_state = 61}, - [3634] = {.lex_state = 69}, - [3635] = {.lex_state = 58}, - [3636] = {.lex_state = 48}, - [3637] = {.lex_state = 47}, - [3638] = {.lex_state = 68}, - [3639] = {.lex_state = 63}, - [3640] = {.lex_state = 63}, - [3641] = {.lex_state = 65}, - [3642] = {.lex_state = 66}, - [3643] = {.lex_state = 64}, - [3644] = {.lex_state = 60}, - [3645] = {.lex_state = 55}, - [3646] = {.lex_state = 54}, - [3647] = {.lex_state = 49}, - [3648] = {.lex_state = 46}, - [3649] = {.lex_state = 50}, - [3650] = {.lex_state = 46}, - [3651] = {.lex_state = 49}, - [3652] = {.lex_state = 54}, - [3653] = {.lex_state = 67}, - [3654] = {.lex_state = 60}, - [3655] = {.lex_state = 56}, - [3656] = {.lex_state = 66}, - [3657] = {.lex_state = 64}, - [3658] = {.lex_state = 67}, - [3659] = {.lex_state = 63}, - [3660] = {.lex_state = 65}, - [3661] = {.lex_state = 63}, - [3662] = {.lex_state = 63}, - [3663] = {.lex_state = 68}, - [3664] = {.lex_state = 50}, - [3665] = {.lex_state = 58}, - [3666] = {.lex_state = 69}, - [3667] = {.lex_state = 61}, - [3668] = {.lex_state = 64}, - [3669] = {.lex_state = 67}, - [3670] = {.lex_state = 55}, - [3671] = {.lex_state = 57}, - [3672] = {.lex_state = 53}, - [3673] = {.lex_state = 59}, - [3674] = {.lex_state = 52}, - [3675] = {.lex_state = 51}, - [3676] = {.lex_state = 48}, - [3677] = {.lex_state = 47}, - [3678] = {.lex_state = 47}, - [3679] = {.lex_state = 48}, - [3680] = {.lex_state = 51}, - [3681] = {.lex_state = 52}, - [3682] = {.lex_state = 59}, - [3683] = {.lex_state = 57}, - [3684] = {.lex_state = 53}, - [3685] = {.lex_state = 59}, - [3686] = {.lex_state = 53}, - [3687] = {.lex_state = 57}, - [3688] = {.lex_state = 63}, - [3689] = {.lex_state = 67}, - [3690] = {.lex_state = 50}, - [3691] = {.lex_state = 46}, - [3692] = {.lex_state = 49}, - [3693] = {.lex_state = 54}, - [3694] = {.lex_state = 55}, - [3695] = {.lex_state = 60}, - [3696] = {.lex_state = 56}, - [3697] = {.lex_state = 66}, - [3698] = {.lex_state = 65}, - [3699] = {.lex_state = 63}, - [3700] = {.lex_state = 63}, - [3701] = {.lex_state = 68}, - [3702] = {.lex_state = 64}, - [3703] = {.lex_state = 58}, - [3704] = {.lex_state = 69}, - [3705] = {.lex_state = 61}, - [3706] = {.lex_state = 64}, - [3707] = {.lex_state = 67}, - [3708] = {.lex_state = 63}, - [3709] = {.lex_state = 52}, - [3710] = {.lex_state = 51}, - [3711] = {.lex_state = 48}, - [3712] = {.lex_state = 57}, - [3713] = {.lex_state = 53}, - [3714] = {.lex_state = 59}, - [3715] = {.lex_state = 52}, - [3716] = {.lex_state = 51}, - [3717] = {.lex_state = 61}, - [3718] = {.lex_state = 69}, - [3719] = {.lex_state = 48}, - [3720] = {.lex_state = 47}, - [3721] = {.lex_state = 58}, - [3722] = {.lex_state = 68}, - [3723] = {.lex_state = 63}, - [3724] = {.lex_state = 63}, - [3725] = {.lex_state = 65}, - [3726] = {.lex_state = 66}, - [3727] = {.lex_state = 56}, - [3728] = {.lex_state = 60}, - [3729] = {.lex_state = 65}, - [3730] = {.lex_state = 54}, - [3731] = {.lex_state = 56}, - [3732] = {.lex_state = 50}, - [3733] = {.lex_state = 46}, - [3734] = {.lex_state = 49}, - [3735] = {.lex_state = 54}, - [3736] = {.lex_state = 55}, - [3737] = {.lex_state = 60}, - [3738] = {.lex_state = 56}, - [3739] = {.lex_state = 66}, - [3740] = {.lex_state = 65}, - [3741] = {.lex_state = 63}, - [3742] = {.lex_state = 63}, - [3743] = {.lex_state = 68}, - [3744] = {.lex_state = 46}, - [3745] = {.lex_state = 58}, - [3746] = {.lex_state = 69}, - [3747] = {.lex_state = 61}, - [3748] = {.lex_state = 64}, - [3749] = {.lex_state = 67}, - [3750] = {.lex_state = 63}, - [3751] = {.lex_state = 57}, - [3752] = {.lex_state = 53}, - [3753] = {.lex_state = 59}, - [3754] = {.lex_state = 52}, - [3755] = {.lex_state = 51}, - [3756] = {.lex_state = 50}, - [3757] = {.lex_state = 48}, - [3758] = {.lex_state = 47}, - [3759] = {.lex_state = 47}, - [3760] = {.lex_state = 48}, - [3761] = {.lex_state = 51}, - [3762] = {.lex_state = 0}, - [3763] = {.lex_state = 52}, - [3764] = {.lex_state = 59}, - [3765] = {.lex_state = 53}, - [3766] = {.lex_state = 57}, - [3767] = {.lex_state = 63}, - [3768] = {.lex_state = 50}, - [3769] = {.lex_state = 46}, - [3770] = {.lex_state = 49}, - [3771] = {.lex_state = 54}, - [3772] = {.lex_state = 55}, - [3773] = {.lex_state = 60}, - [3774] = {.lex_state = 56}, - [3775] = {.lex_state = 66}, - [3776] = {.lex_state = 69}, - [3777] = {.lex_state = 63}, - [3778] = {.lex_state = 63}, - [3779] = {.lex_state = 68}, - [3780] = {.lex_state = 67}, - [3781] = {.lex_state = 58}, - [3782] = {.lex_state = 69}, - [3783] = {.lex_state = 61}, - [3784] = {.lex_state = 64}, - [3785] = {.lex_state = 67}, - [3786] = {.lex_state = 63}, - [3787] = {.lex_state = 57}, - [3788] = {.lex_state = 53}, - [3789] = {.lex_state = 59}, - [3790] = {.lex_state = 52}, - [3791] = {.lex_state = 51}, - [3792] = {.lex_state = 64}, - [3793] = {.lex_state = 61}, - [3794] = {.lex_state = 48}, - [3795] = {.lex_state = 47}, - [3796] = {.lex_state = 69}, - [3797] = {.lex_state = 58}, - [3798] = {.lex_state = 68}, - [3799] = {.lex_state = 63}, - [3800] = {.lex_state = 63}, - [3801] = {.lex_state = 65}, - [3802] = {.lex_state = 66}, - [3803] = {.lex_state = 56}, - [3804] = {.lex_state = 60}, - [3805] = {.lex_state = 55}, - [3806] = {.lex_state = 54}, - [3807] = {.lex_state = 50}, - [3808] = {.lex_state = 46}, - [3809] = {.lex_state = 49}, - [3810] = {.lex_state = 54}, - [3811] = {.lex_state = 55}, - [3812] = {.lex_state = 60}, - [3813] = {.lex_state = 56}, - [3814] = {.lex_state = 66}, - [3815] = {.lex_state = 65}, - [3816] = {.lex_state = 63}, - [3817] = {.lex_state = 63}, - [3818] = {.lex_state = 68}, - [3819] = {.lex_state = 49}, - [3820] = {.lex_state = 58}, - [3821] = {.lex_state = 69}, - [3822] = {.lex_state = 61}, - [3823] = {.lex_state = 64}, - [3824] = {.lex_state = 67}, - [3825] = {.lex_state = 63}, - [3826] = {.lex_state = 57}, - [3827] = {.lex_state = 53}, - [3828] = {.lex_state = 59}, - [3829] = {.lex_state = 52}, - [3830] = {.lex_state = 51}, - [3831] = {.lex_state = 46}, - [3832] = {.lex_state = 50}, - [3833] = {.lex_state = 48}, - [3834] = {.lex_state = 47}, - [3835] = {.lex_state = 47}, - [3836] = {.lex_state = 49}, - [3837] = {.lex_state = 51}, - [3838] = {.lex_state = 52}, - [3839] = {.lex_state = 59}, - [3840] = {.lex_state = 53}, - [3841] = {.lex_state = 57}, - [3842] = {.lex_state = 50}, - [3843] = {.lex_state = 46}, + [3257] = {.lex_state = 5}, + [3258] = {.lex_state = 5}, + [3259] = {.lex_state = 5}, + [3260] = {.lex_state = 5}, + [3261] = {.lex_state = 5}, + [3262] = {.lex_state = 5}, + [3263] = {.lex_state = 5}, + [3264] = {.lex_state = 5}, + [3265] = {.lex_state = 5}, + [3266] = {.lex_state = 76}, + [3267] = {.lex_state = 5}, + [3268] = {.lex_state = 5}, + [3269] = {.lex_state = 5}, + [3270] = {.lex_state = 5}, + [3271] = {.lex_state = 5}, + [3272] = {.lex_state = 5}, + [3273] = {.lex_state = 5}, + [3274] = {.lex_state = 5}, + [3275] = {.lex_state = 5}, + [3276] = {.lex_state = 5}, + [3277] = {.lex_state = 5}, + [3278] = {.lex_state = 5}, + [3279] = {.lex_state = 5}, + [3280] = {.lex_state = 5}, + [3281] = {.lex_state = 5}, + [3282] = {.lex_state = 5}, + [3283] = {.lex_state = 5}, + [3284] = {.lex_state = 5}, + [3285] = {.lex_state = 5}, + [3286] = {.lex_state = 5}, + [3287] = {.lex_state = 5}, + [3288] = {.lex_state = 5}, + [3289] = {.lex_state = 5}, + [3290] = {.lex_state = 5}, + [3291] = {.lex_state = 5}, + [3292] = {.lex_state = 5}, + [3293] = {.lex_state = 5}, + [3294] = {.lex_state = 5}, + [3295] = {.lex_state = 5}, + [3296] = {.lex_state = 5}, + [3297] = {.lex_state = 5}, + [3298] = {.lex_state = 5}, + [3299] = {.lex_state = 5}, + [3300] = {.lex_state = 5}, + [3301] = {.lex_state = 5}, + [3302] = {.lex_state = 5}, + [3303] = {.lex_state = 5}, + [3304] = {.lex_state = 5}, + [3305] = {.lex_state = 5}, + [3306] = {.lex_state = 5}, + [3307] = {.lex_state = 5}, + [3308] = {.lex_state = 5}, + [3309] = {.lex_state = 5}, + [3310] = {.lex_state = 5}, + [3311] = {.lex_state = 5}, + [3312] = {.lex_state = 5}, + [3313] = {.lex_state = 5}, + [3314] = {.lex_state = 5}, + [3315] = {.lex_state = 5}, + [3316] = {.lex_state = 5}, + [3317] = {.lex_state = 5}, + [3318] = {.lex_state = 5}, + [3319] = {.lex_state = 5}, + [3320] = {.lex_state = 5}, + [3321] = {.lex_state = 5}, + [3322] = {.lex_state = 5}, + [3323] = {.lex_state = 5}, + [3324] = {.lex_state = 5}, + [3325] = {.lex_state = 5}, + [3326] = {.lex_state = 5}, + [3327] = {.lex_state = 5}, + [3328] = {.lex_state = 5}, + [3329] = {.lex_state = 5}, + [3330] = {.lex_state = 5}, + [3331] = {.lex_state = 5}, + [3332] = {.lex_state = 5}, + [3333] = {.lex_state = 5}, + [3334] = {.lex_state = 5}, + [3335] = {.lex_state = 5}, + [3336] = {.lex_state = 5}, + [3337] = {.lex_state = 5}, + [3338] = {.lex_state = 5}, + [3339] = {.lex_state = 5}, + [3340] = {.lex_state = 5}, + [3341] = {.lex_state = 5}, + [3342] = {.lex_state = 5}, + [3343] = {.lex_state = 5}, + [3344] = {.lex_state = 5}, + [3345] = {.lex_state = 5}, + [3346] = {.lex_state = 5}, + [3347] = {.lex_state = 5}, + [3348] = {.lex_state = 5}, + [3349] = {.lex_state = 5}, + [3350] = {.lex_state = 5}, + [3351] = {.lex_state = 5}, + [3352] = {.lex_state = 5}, + [3353] = {.lex_state = 5}, + [3354] = {.lex_state = 5}, + [3355] = {.lex_state = 5}, + [3356] = {.lex_state = 5}, + [3357] = {.lex_state = 5}, + [3358] = {.lex_state = 5}, + [3359] = {.lex_state = 5}, + [3360] = {.lex_state = 5}, + [3361] = {.lex_state = 5}, + [3362] = {.lex_state = 5}, + [3363] = {.lex_state = 5}, + [3364] = {.lex_state = 5}, + [3365] = {.lex_state = 5}, + [3366] = {.lex_state = 5}, + [3367] = {.lex_state = 5}, + [3368] = {.lex_state = 5}, + [3369] = {.lex_state = 5}, + [3370] = {.lex_state = 5}, + [3371] = {.lex_state = 5}, + [3372] = {.lex_state = 5}, + [3373] = {.lex_state = 5}, + [3374] = {.lex_state = 5}, + [3375] = {.lex_state = 5}, + [3376] = {.lex_state = 5}, + [3377] = {.lex_state = 5}, + [3378] = {.lex_state = 5}, + [3379] = {.lex_state = 5}, + [3380] = {.lex_state = 5}, + [3381] = {.lex_state = 5}, + [3382] = {.lex_state = 5}, + [3383] = {.lex_state = 5}, + [3384] = {.lex_state = 5}, + [3385] = {.lex_state = 5}, + [3386] = {.lex_state = 5}, + [3387] = {.lex_state = 5}, + [3388] = {.lex_state = 5}, + [3389] = {.lex_state = 5}, + [3390] = {.lex_state = 5}, + [3391] = {.lex_state = 5}, + [3392] = {.lex_state = 5}, + [3393] = {.lex_state = 5}, + [3394] = {.lex_state = 5}, + [3395] = {.lex_state = 5}, + [3396] = {.lex_state = 5}, + [3397] = {.lex_state = 5}, + [3398] = {.lex_state = 5}, + [3399] = {.lex_state = 36}, + [3400] = {.lex_state = 5}, + [3401] = {.lex_state = 5}, + [3402] = {.lex_state = 5}, + [3403] = {.lex_state = 5}, + [3404] = {.lex_state = 5}, + [3405] = {.lex_state = 5}, + [3406] = {.lex_state = 5}, + [3407] = {.lex_state = 5}, + [3408] = {.lex_state = 5}, + [3409] = {.lex_state = 5}, + [3410] = {.lex_state = 5}, + [3411] = {.lex_state = 5}, + [3412] = {.lex_state = 5}, + [3413] = {.lex_state = 5}, + [3414] = {.lex_state = 5}, + [3415] = {.lex_state = 5}, + [3416] = {.lex_state = 5}, + [3417] = {.lex_state = 5}, + [3418] = {.lex_state = 5}, + [3419] = {.lex_state = 5}, + [3420] = {.lex_state = 5}, + [3421] = {.lex_state = 5}, + [3422] = {.lex_state = 5}, + [3423] = {.lex_state = 5}, + [3424] = {.lex_state = 5}, + [3425] = {.lex_state = 5}, + [3426] = {.lex_state = 5}, + [3427] = {.lex_state = 5}, + [3428] = {.lex_state = 5}, + [3429] = {.lex_state = 5}, + [3430] = {.lex_state = 5}, + [3431] = {.lex_state = 5}, + [3432] = {.lex_state = 5}, + [3433] = {.lex_state = 5}, + [3434] = {.lex_state = 5}, + [3435] = {.lex_state = 5}, + [3436] = {.lex_state = 5}, + [3437] = {.lex_state = 5}, + [3438] = {.lex_state = 5}, + [3439] = {.lex_state = 5}, + [3440] = {.lex_state = 5}, + [3441] = {.lex_state = 5}, + [3442] = {.lex_state = 5}, + [3443] = {.lex_state = 5}, + [3444] = {.lex_state = 5}, + [3445] = {.lex_state = 5}, + [3446] = {.lex_state = 5}, + [3447] = {.lex_state = 5}, + [3448] = {.lex_state = 5}, + [3449] = {.lex_state = 5}, + [3450] = {.lex_state = 5}, + [3451] = {.lex_state = 5}, + [3452] = {.lex_state = 5}, + [3453] = {.lex_state = 5}, + [3454] = {.lex_state = 5}, + [3455] = {.lex_state = 5}, + [3456] = {.lex_state = 5}, + [3457] = {.lex_state = 5}, + [3458] = {.lex_state = 5}, + [3459] = {.lex_state = 5}, + [3460] = {.lex_state = 5}, + [3461] = {.lex_state = 5}, + [3462] = {.lex_state = 5}, + [3463] = {.lex_state = 5}, + [3464] = {.lex_state = 5}, + [3465] = {.lex_state = 5}, + [3466] = {.lex_state = 5}, + [3467] = {.lex_state = 5}, + [3468] = {.lex_state = 5}, + [3469] = {.lex_state = 5}, + [3470] = {.lex_state = 5}, + [3471] = {.lex_state = 5}, + [3472] = {.lex_state = 5}, + [3473] = {.lex_state = 5}, + [3474] = {.lex_state = 5}, + [3475] = {.lex_state = 5}, + [3476] = {.lex_state = 5}, + [3477] = {.lex_state = 5}, + [3478] = {.lex_state = 5}, + [3479] = {.lex_state = 5}, + [3480] = {.lex_state = 5}, + [3481] = {.lex_state = 5}, + [3482] = {.lex_state = 5}, + [3483] = {.lex_state = 5}, + [3484] = {.lex_state = 5}, + [3485] = {.lex_state = 5}, + [3486] = {.lex_state = 5}, + [3487] = {.lex_state = 5}, + [3488] = {.lex_state = 5}, + [3489] = {.lex_state = 5}, + [3490] = {.lex_state = 5}, + [3491] = {.lex_state = 5}, + [3492] = {.lex_state = 5}, + [3493] = {.lex_state = 5}, + [3494] = {.lex_state = 5}, + [3495] = {.lex_state = 5}, + [3496] = {.lex_state = 5}, + [3497] = {.lex_state = 5}, + [3498] = {.lex_state = 5}, + [3499] = {.lex_state = 5}, + [3500] = {.lex_state = 5}, + [3501] = {.lex_state = 5}, + [3502] = {.lex_state = 5}, + [3503] = {.lex_state = 5}, + [3504] = {.lex_state = 5}, + [3505] = {.lex_state = 5}, + [3506] = {.lex_state = 5}, + [3507] = {.lex_state = 5}, + [3508] = {.lex_state = 5}, + [3509] = {.lex_state = 5}, + [3510] = {.lex_state = 5}, + [3511] = {.lex_state = 5}, + [3512] = {.lex_state = 5}, + [3513] = {.lex_state = 5}, + [3514] = {.lex_state = 5}, + [3515] = {.lex_state = 5}, + [3516] = {.lex_state = 5}, + [3517] = {.lex_state = 5}, + [3518] = {.lex_state = 5}, + [3519] = {.lex_state = 5}, + [3520] = {.lex_state = 5}, + [3521] = {.lex_state = 5}, + [3522] = {.lex_state = 5}, + [3523] = {.lex_state = 5}, + [3524] = {.lex_state = 5}, + [3525] = {.lex_state = 5}, + [3526] = {.lex_state = 5}, + [3527] = {.lex_state = 5}, + [3528] = {.lex_state = 5}, + [3529] = {.lex_state = 5}, + [3530] = {.lex_state = 5}, + [3531] = {.lex_state = 5}, + [3532] = {.lex_state = 5}, + [3533] = {.lex_state = 5}, + [3534] = {.lex_state = 5}, + [3535] = {.lex_state = 5}, + [3536] = {.lex_state = 5}, + [3537] = {.lex_state = 5}, + [3538] = {.lex_state = 5}, + [3539] = {.lex_state = 5}, + [3540] = {.lex_state = 5}, + [3541] = {.lex_state = 5}, + [3542] = {.lex_state = 5}, + [3543] = {.lex_state = 5}, + [3544] = {.lex_state = 5}, + [3545] = {.lex_state = 5}, + [3546] = {.lex_state = 5}, + [3547] = {.lex_state = 5}, + [3548] = {.lex_state = 5}, + [3549] = {.lex_state = 5}, + [3550] = {.lex_state = 5}, + [3551] = {.lex_state = 5}, + [3552] = {.lex_state = 5}, + [3553] = {.lex_state = 5}, + [3554] = {.lex_state = 5}, + [3555] = {.lex_state = 5}, + [3556] = {.lex_state = 5}, + [3557] = {.lex_state = 5}, + [3558] = {.lex_state = 5}, + [3559] = {.lex_state = 5}, + [3560] = {.lex_state = 5}, + [3561] = {.lex_state = 5}, + [3562] = {.lex_state = 5}, + [3563] = {.lex_state = 5}, + [3564] = {.lex_state = 5}, + [3565] = {.lex_state = 5}, + [3566] = {.lex_state = 5}, + [3567] = {.lex_state = 5}, + [3568] = {.lex_state = 5}, + [3569] = {.lex_state = 5}, + [3570] = {.lex_state = 5}, + [3571] = {.lex_state = 5}, + [3572] = {.lex_state = 5}, + [3573] = {.lex_state = 5}, + [3574] = {.lex_state = 5}, + [3575] = {.lex_state = 5}, + [3576] = {.lex_state = 5}, + [3577] = {.lex_state = 5}, + [3578] = {.lex_state = 5}, + [3579] = {.lex_state = 5}, + [3580] = {.lex_state = 5}, + [3581] = {.lex_state = 5}, + [3582] = {.lex_state = 5}, + [3583] = {.lex_state = 5}, + [3584] = {.lex_state = 5}, + [3585] = {.lex_state = 5}, + [3586] = {.lex_state = 5}, + [3587] = {.lex_state = 5}, + [3588] = {.lex_state = 5}, + [3589] = {.lex_state = 5}, + [3590] = {.lex_state = 5}, + [3591] = {.lex_state = 5}, + [3592] = {.lex_state = 5}, + [3593] = {.lex_state = 5}, + [3594] = {.lex_state = 5}, + [3595] = {.lex_state = 5}, + [3596] = {.lex_state = 5}, + [3597] = {.lex_state = 5}, + [3598] = {.lex_state = 5}, + [3599] = {.lex_state = 5}, + [3600] = {.lex_state = 5}, + [3601] = {.lex_state = 5}, + [3602] = {.lex_state = 5}, + [3603] = {.lex_state = 5}, + [3604] = {.lex_state = 5}, + [3605] = {.lex_state = 5}, + [3606] = {.lex_state = 5}, + [3607] = {.lex_state = 5}, + [3608] = {.lex_state = 5}, + [3609] = {.lex_state = 5}, + [3610] = {.lex_state = 5}, + [3611] = {.lex_state = 5}, + [3612] = {.lex_state = 5}, + [3613] = {.lex_state = 5}, + [3614] = {.lex_state = 5}, + [3615] = {.lex_state = 5}, + [3616] = {.lex_state = 5}, + [3617] = {.lex_state = 5}, + [3618] = {.lex_state = 5}, + [3619] = {.lex_state = 5}, + [3620] = {.lex_state = 5}, + [3621] = {.lex_state = 5}, + [3622] = {.lex_state = 5}, + [3623] = {.lex_state = 5}, + [3624] = {.lex_state = 5}, + [3625] = {.lex_state = 5}, + [3626] = {.lex_state = 5}, + [3627] = {.lex_state = 5}, + [3628] = {.lex_state = 5}, + [3629] = {.lex_state = 5}, + [3630] = {.lex_state = 5}, + [3631] = {.lex_state = 5}, + [3632] = {.lex_state = 5}, + [3633] = {.lex_state = 5}, + [3634] = {.lex_state = 5}, + [3635] = {.lex_state = 5}, + [3636] = {.lex_state = 5}, + [3637] = {.lex_state = 5}, + [3638] = {.lex_state = 5}, + [3639] = {.lex_state = 5}, + [3640] = {.lex_state = 5}, + [3641] = {.lex_state = 5}, + [3642] = {.lex_state = 5}, + [3643] = {.lex_state = 5}, + [3644] = {.lex_state = 5}, + [3645] = {.lex_state = 5}, + [3646] = {.lex_state = 5}, + [3647] = {.lex_state = 5}, + [3648] = {.lex_state = 5}, + [3649] = {.lex_state = 5}, + [3650] = {.lex_state = 5}, + [3651] = {.lex_state = 5}, + [3652] = {.lex_state = 5}, + [3653] = {.lex_state = 5}, + [3654] = {.lex_state = 5}, + [3655] = {.lex_state = 5}, + [3656] = {.lex_state = 5}, + [3657] = {.lex_state = 5}, + [3658] = {.lex_state = 5}, + [3659] = {.lex_state = 5}, + [3660] = {.lex_state = 5}, + [3661] = {.lex_state = 5}, + [3662] = {.lex_state = 5}, + [3663] = {.lex_state = 5}, + [3664] = {.lex_state = 5}, + [3665] = {.lex_state = 5}, + [3666] = {.lex_state = 5}, + [3667] = {.lex_state = 5}, + [3668] = {.lex_state = 5}, + [3669] = {.lex_state = 5}, + [3670] = {.lex_state = 5}, + [3671] = {.lex_state = 5}, + [3672] = {.lex_state = 5}, + [3673] = {.lex_state = 5}, + [3674] = {.lex_state = 5}, + [3675] = {.lex_state = 5}, + [3676] = {.lex_state = 5}, + [3677] = {.lex_state = 5}, + [3678] = {.lex_state = 5}, + [3679] = {.lex_state = 5}, + [3680] = {.lex_state = 5}, + [3681] = {.lex_state = 5}, + [3682] = {.lex_state = 5}, + [3683] = {.lex_state = 5}, + [3684] = {.lex_state = 5}, + [3685] = {.lex_state = 5}, + [3686] = {.lex_state = 5}, + [3687] = {.lex_state = 5}, + [3688] = {.lex_state = 5}, + [3689] = {.lex_state = 5}, + [3690] = {.lex_state = 5}, + [3691] = {.lex_state = 5}, + [3692] = {.lex_state = 5}, + [3693] = {.lex_state = 5}, + [3694] = {.lex_state = 5}, + [3695] = {.lex_state = 5}, + [3696] = {.lex_state = 5}, + [3697] = {.lex_state = 5}, + [3698] = {.lex_state = 5}, + [3699] = {.lex_state = 5}, + [3700] = {.lex_state = 5}, + [3701] = {.lex_state = 5}, + [3702] = {.lex_state = 5}, + [3703] = {.lex_state = 5}, + [3704] = {.lex_state = 5}, + [3705] = {.lex_state = 5}, + [3706] = {.lex_state = 5}, + [3707] = {.lex_state = 5}, + [3708] = {.lex_state = 5}, + [3709] = {.lex_state = 5}, + [3710] = {.lex_state = 5}, + [3711] = {.lex_state = 5}, + [3712] = {.lex_state = 5}, + [3713] = {.lex_state = 5}, + [3714] = {.lex_state = 5}, + [3715] = {.lex_state = 5}, + [3716] = {.lex_state = 36}, + [3717] = {.lex_state = 5}, + [3718] = {.lex_state = 5}, + [3719] = {.lex_state = 5}, + [3720] = {.lex_state = 36}, + [3721] = {.lex_state = 5}, + [3722] = {.lex_state = 5}, + [3723] = {.lex_state = 5}, + [3724] = {.lex_state = 5}, + [3725] = {.lex_state = 5}, + [3726] = {.lex_state = 5}, + [3727] = {.lex_state = 5}, + [3728] = {.lex_state = 5}, + [3729] = {.lex_state = 5}, + [3730] = {.lex_state = 5}, + [3731] = {.lex_state = 5}, + [3732] = {.lex_state = 5}, + [3733] = {.lex_state = 5}, + [3734] = {.lex_state = 5}, + [3735] = {.lex_state = 5}, + [3736] = {.lex_state = 5}, + [3737] = {.lex_state = 5}, + [3738] = {.lex_state = 5}, + [3739] = {.lex_state = 5}, + [3740] = {.lex_state = 5}, + [3741] = {.lex_state = 36}, + [3742] = {.lex_state = 5}, + [3743] = {.lex_state = 5}, + [3744] = {.lex_state = 5}, + [3745] = {.lex_state = 36}, + [3746] = {.lex_state = 5}, + [3747] = {.lex_state = 5}, + [3748] = {.lex_state = 5}, + [3749] = {.lex_state = 5}, + [3750] = {.lex_state = 5}, + [3751] = {.lex_state = 5}, + [3752] = {.lex_state = 5}, + [3753] = {.lex_state = 5}, + [3754] = {.lex_state = 5}, + [3755] = {.lex_state = 5}, + [3756] = {.lex_state = 5}, + [3757] = {.lex_state = 5}, + [3758] = {.lex_state = 5}, + [3759] = {.lex_state = 37}, + [3760] = {.lex_state = 37}, + [3761] = {.lex_state = 5}, + [3762] = {.lex_state = 5}, + [3763] = {.lex_state = 5}, + [3764] = {.lex_state = 5}, + [3765] = {.lex_state = 5}, + [3766] = {.lex_state = 5}, + [3767] = {.lex_state = 5}, + [3768] = {.lex_state = 5}, + [3769] = {.lex_state = 5}, + [3770] = {.lex_state = 5}, + [3771] = {.lex_state = 5}, + [3772] = {.lex_state = 5}, + [3773] = {.lex_state = 5}, + [3774] = {.lex_state = 5}, + [3775] = {.lex_state = 5}, + [3776] = {.lex_state = 5}, + [3777] = {.lex_state = 5}, + [3778] = {.lex_state = 5}, + [3779] = {.lex_state = 5}, + [3780] = {.lex_state = 5}, + [3781] = {.lex_state = 37}, + [3782] = {.lex_state = 5}, + [3783] = {.lex_state = 5}, + [3784] = {.lex_state = 5}, + [3785] = {.lex_state = 5}, + [3786] = {.lex_state = 37}, + [3787] = {.lex_state = 5}, + [3788] = {.lex_state = 69}, + [3789] = {.lex_state = 56}, + [3790] = {.lex_state = 51}, + [3791] = {.lex_state = 50}, + [3792] = {.lex_state = 60}, + [3793] = {.lex_state = 57}, + [3794] = {.lex_state = 58}, + [3795] = {.lex_state = 73}, + [3796] = {.lex_state = 59}, + [3797] = {.lex_state = 67}, + [3798] = {.lex_state = 65}, + [3799] = {.lex_state = 75}, + [3800] = {.lex_state = 74}, + [3801] = {.lex_state = 68}, + [3802] = {.lex_state = 69}, + [3803] = {.lex_state = 69}, + [3804] = {.lex_state = 61}, + [3805] = {.lex_state = 72}, + [3806] = {.lex_state = 70}, + [3807] = {.lex_state = 66}, + [3808] = {.lex_state = 71}, + [3809] = {.lex_state = 64}, + [3810] = {.lex_state = 69}, + [3811] = {.lex_state = 58}, + [3812] = {.lex_state = 54}, + [3813] = {.lex_state = 62}, + [3814] = {.lex_state = 53}, + [3815] = {.lex_state = 55}, + [3816] = {.lex_state = 49}, + [3817] = {.lex_state = 52}, + [3818] = {.lex_state = 50}, + [3819] = {.lex_state = 51}, + [3820] = {.lex_state = 56}, + [3821] = {.lex_state = 57}, + [3822] = {.lex_state = 58}, + [3823] = {.lex_state = 73}, + [3824] = {.lex_state = 59}, + [3825] = {.lex_state = 67}, + [3826] = {.lex_state = 65}, + [3827] = {.lex_state = 75}, + [3828] = {.lex_state = 74}, + [3829] = {.lex_state = 68}, + [3830] = {.lex_state = 69}, + [3831] = {.lex_state = 69}, + [3832] = {.lex_state = 61}, + [3833] = {.lex_state = 72}, + [3834] = {.lex_state = 70}, + [3835] = {.lex_state = 66}, + [3836] = {.lex_state = 71}, + [3837] = {.lex_state = 64}, + [3838] = {.lex_state = 69}, + [3839] = {.lex_state = 60}, + [3840] = {.lex_state = 54}, + [3841] = {.lex_state = 62}, + [3842] = {.lex_state = 53}, + [3843] = {.lex_state = 55}, [3844] = {.lex_state = 49}, - [3845] = {.lex_state = 54}, - [3846] = {.lex_state = 55}, - [3847] = {.lex_state = 60}, + [3845] = {.lex_state = 52}, + [3846] = {.lex_state = 50}, + [3847] = {.lex_state = 51}, [3848] = {.lex_state = 56}, - [3849] = {.lex_state = 66}, - [3850] = {.lex_state = 65}, - [3851] = {.lex_state = 63}, - [3852] = {.lex_state = 63}, - [3853] = {.lex_state = 68}, - [3854] = {.lex_state = 63}, - [3855] = {.lex_state = 58}, - [3856] = {.lex_state = 55}, - [3857] = {.lex_state = 61}, - [3858] = {.lex_state = 64}, - [3859] = {.lex_state = 67}, - [3860] = {.lex_state = 63}, - [3861] = {.lex_state = 57}, - [3862] = {.lex_state = 53}, - [3863] = {.lex_state = 59}, - [3864] = {.lex_state = 52}, - [3865] = {.lex_state = 51}, - [3866] = {.lex_state = 67}, - [3867] = {.lex_state = 64}, - [3868] = {.lex_state = 48}, - [3869] = {.lex_state = 47}, - [3870] = {.lex_state = 48}, - [3871] = {.lex_state = 69}, - [3872] = {.lex_state = 58}, - [3873] = {.lex_state = 68}, - [3874] = {.lex_state = 63}, - [3875] = {.lex_state = 63}, - [3876] = {.lex_state = 65}, - [3877] = {.lex_state = 66}, - [3878] = {.lex_state = 56}, - [3879] = {.lex_state = 60}, - [3880] = {.lex_state = 64}, - [3881] = {.lex_state = 50}, - [3882] = {.lex_state = 46}, - [3883] = {.lex_state = 49}, - [3884] = {.lex_state = 54}, - [3885] = {.lex_state = 55}, - [3886] = {.lex_state = 60}, - [3887] = {.lex_state = 56}, - [3888] = {.lex_state = 66}, - [3889] = {.lex_state = 65}, - [3890] = {.lex_state = 63}, - [3891] = {.lex_state = 63}, - [3892] = {.lex_state = 68}, - [3893] = {.lex_state = 54}, - [3894] = {.lex_state = 58}, - [3895] = {.lex_state = 69}, - [3896] = {.lex_state = 61}, - [3897] = {.lex_state = 64}, - [3898] = {.lex_state = 67}, - [3899] = {.lex_state = 63}, - [3900] = {.lex_state = 57}, - [3901] = {.lex_state = 53}, - [3902] = {.lex_state = 59}, - [3903] = {.lex_state = 52}, - [3904] = {.lex_state = 51}, - [3905] = {.lex_state = 49}, - [3906] = {.lex_state = 46}, - [3907] = {.lex_state = 48}, - [3908] = {.lex_state = 47}, - [3909] = {.lex_state = 50}, - [3910] = {.lex_state = 47}, - [3911] = {.lex_state = 48}, - [3912] = {.lex_state = 51}, - [3913] = {.lex_state = 52}, - [3914] = {.lex_state = 59}, - [3915] = {.lex_state = 53}, - [3916] = {.lex_state = 50}, - [3917] = {.lex_state = 46}, - [3918] = {.lex_state = 49}, - [3919] = {.lex_state = 54}, - [3920] = {.lex_state = 55}, - [3921] = {.lex_state = 60}, - [3922] = {.lex_state = 56}, - [3923] = {.lex_state = 66}, - [3924] = {.lex_state = 65}, - [3925] = {.lex_state = 63}, - [3926] = {.lex_state = 63}, - [3927] = {.lex_state = 68}, - [3928] = {.lex_state = 57}, - [3929] = {.lex_state = 58}, - [3930] = {.lex_state = 69}, - [3931] = {.lex_state = 61}, - [3932] = {.lex_state = 64}, - [3933] = {.lex_state = 67}, - [3934] = {.lex_state = 63}, - [3935] = {.lex_state = 57}, - [3936] = {.lex_state = 53}, - [3937] = {.lex_state = 59}, - [3938] = {.lex_state = 52}, - [3939] = {.lex_state = 51}, - [3940] = {.lex_state = 63}, - [3941] = {.lex_state = 61}, - [3942] = {.lex_state = 48}, - [3943] = {.lex_state = 47}, - [3944] = {.lex_state = 50}, - [3945] = {.lex_state = 46}, - [3946] = {.lex_state = 49}, - [3947] = {.lex_state = 54}, - [3948] = {.lex_state = 55}, - [3949] = {.lex_state = 60}, - [3950] = {.lex_state = 56}, - [3951] = {.lex_state = 66}, - [3952] = {.lex_state = 65}, - [3953] = {.lex_state = 63}, - [3954] = {.lex_state = 63}, - [3955] = {.lex_state = 68}, - [3956] = {.lex_state = 58}, - [3957] = {.lex_state = 69}, - [3958] = {.lex_state = 61}, - [3959] = {.lex_state = 64}, - [3960] = {.lex_state = 67}, - [3961] = {.lex_state = 63}, - [3962] = {.lex_state = 57}, - [3963] = {.lex_state = 53}, + [3849] = {.lex_state = 57}, + [3850] = {.lex_state = 58}, + [3851] = {.lex_state = 73}, + [3852] = {.lex_state = 59}, + [3853] = {.lex_state = 67}, + [3854] = {.lex_state = 65}, + [3855] = {.lex_state = 75}, + [3856] = {.lex_state = 74}, + [3857] = {.lex_state = 68}, + [3858] = {.lex_state = 69}, + [3859] = {.lex_state = 69}, + [3860] = {.lex_state = 61}, + [3861] = {.lex_state = 72}, + [3862] = {.lex_state = 70}, + [3863] = {.lex_state = 66}, + [3864] = {.lex_state = 71}, + [3865] = {.lex_state = 64}, + [3866] = {.lex_state = 69}, + [3867] = {.lex_state = 60}, + [3868] = {.lex_state = 54}, + [3869] = {.lex_state = 62}, + [3870] = {.lex_state = 53}, + [3871] = {.lex_state = 55}, + [3872] = {.lex_state = 49}, + [3873] = {.lex_state = 52}, + [3874] = {.lex_state = 50}, + [3875] = {.lex_state = 51}, + [3876] = {.lex_state = 56}, + [3877] = {.lex_state = 57}, + [3878] = {.lex_state = 71}, + [3879] = {.lex_state = 73}, + [3880] = {.lex_state = 59}, + [3881] = {.lex_state = 67}, + [3882] = {.lex_state = 65}, + [3883] = {.lex_state = 75}, + [3884] = {.lex_state = 74}, + [3885] = {.lex_state = 68}, + [3886] = {.lex_state = 69}, + [3887] = {.lex_state = 69}, + [3888] = {.lex_state = 61}, + [3889] = {.lex_state = 72}, + [3890] = {.lex_state = 70}, + [3891] = {.lex_state = 66}, + [3892] = {.lex_state = 71}, + [3893] = {.lex_state = 64}, + [3894] = {.lex_state = 69}, + [3895] = {.lex_state = 60}, + [3896] = {.lex_state = 54}, + [3897] = {.lex_state = 62}, + [3898] = {.lex_state = 53}, + [3899] = {.lex_state = 55}, + [3900] = {.lex_state = 49}, + [3901] = {.lex_state = 52}, + [3902] = {.lex_state = 50}, + [3903] = {.lex_state = 51}, + [3904] = {.lex_state = 56}, + [3905] = {.lex_state = 57}, + [3906] = {.lex_state = 58}, + [3907] = {.lex_state = 73}, + [3908] = {.lex_state = 59}, + [3909] = {.lex_state = 67}, + [3910] = {.lex_state = 65}, + [3911] = {.lex_state = 75}, + [3912] = {.lex_state = 74}, + [3913] = {.lex_state = 68}, + [3914] = {.lex_state = 69}, + [3915] = {.lex_state = 69}, + [3916] = {.lex_state = 61}, + [3917] = {.lex_state = 72}, + [3918] = {.lex_state = 70}, + [3919] = {.lex_state = 66}, + [3920] = {.lex_state = 52}, + [3921] = {.lex_state = 64}, + [3922] = {.lex_state = 69}, + [3923] = {.lex_state = 60}, + [3924] = {.lex_state = 54}, + [3925] = {.lex_state = 62}, + [3926] = {.lex_state = 53}, + [3927] = {.lex_state = 55}, + [3928] = {.lex_state = 49}, + [3929] = {.lex_state = 52}, + [3930] = {.lex_state = 50}, + [3931] = {.lex_state = 51}, + [3932] = {.lex_state = 56}, + [3933] = {.lex_state = 57}, + [3934] = {.lex_state = 58}, + [3935] = {.lex_state = 73}, + [3936] = {.lex_state = 59}, + [3937] = {.lex_state = 67}, + [3938] = {.lex_state = 65}, + [3939] = {.lex_state = 75}, + [3940] = {.lex_state = 74}, + [3941] = {.lex_state = 68}, + [3942] = {.lex_state = 69}, + [3943] = {.lex_state = 69}, + [3944] = {.lex_state = 61}, + [3945] = {.lex_state = 72}, + [3946] = {.lex_state = 70}, + [3947] = {.lex_state = 66}, + [3948] = {.lex_state = 71}, + [3949] = {.lex_state = 64}, + [3950] = {.lex_state = 69}, + [3951] = {.lex_state = 60}, + [3952] = {.lex_state = 54}, + [3953] = {.lex_state = 62}, + [3954] = {.lex_state = 53}, + [3955] = {.lex_state = 55}, + [3956] = {.lex_state = 49}, + [3957] = {.lex_state = 61}, + [3958] = {.lex_state = 50}, + [3959] = {.lex_state = 51}, + [3960] = {.lex_state = 56}, + [3961] = {.lex_state = 57}, + [3962] = {.lex_state = 58}, + [3963] = {.lex_state = 73}, [3964] = {.lex_state = 59}, - [3965] = {.lex_state = 52}, - [3966] = {.lex_state = 51}, - [3967] = {.lex_state = 48}, - [3968] = {.lex_state = 47}, - [3969] = {.lex_state = 50}, - [3970] = {.lex_state = 46}, - [3971] = {.lex_state = 49}, - [3972] = {.lex_state = 54}, - [3973] = {.lex_state = 55}, - [3974] = {.lex_state = 60}, - [3975] = {.lex_state = 56}, - [3976] = {.lex_state = 66}, - [3977] = {.lex_state = 65}, - [3978] = {.lex_state = 63}, - [3979] = {.lex_state = 63}, - [3980] = {.lex_state = 68}, - [3981] = {.lex_state = 58}, - [3982] = {.lex_state = 69}, - [3983] = {.lex_state = 61}, - [3984] = {(TSStateId)(-1)}, - [3985] = {(TSStateId)(-1)}, + [3965] = {.lex_state = 67}, + [3966] = {.lex_state = 65}, + [3967] = {.lex_state = 75}, + [3968] = {.lex_state = 74}, + [3969] = {.lex_state = 68}, + [3970] = {.lex_state = 69}, + [3971] = {.lex_state = 69}, + [3972] = {.lex_state = 61}, + [3973] = {.lex_state = 72}, + [3974] = {.lex_state = 70}, + [3975] = {.lex_state = 66}, + [3976] = {.lex_state = 71}, + [3977] = {.lex_state = 64}, + [3978] = {.lex_state = 69}, + [3979] = {.lex_state = 60}, + [3980] = {.lex_state = 54}, + [3981] = {.lex_state = 62}, + [3982] = {.lex_state = 53}, + [3983] = {.lex_state = 55}, + [3984] = {.lex_state = 49}, + [3985] = {.lex_state = 52}, + [3986] = {.lex_state = 50}, + [3987] = {.lex_state = 51}, + [3988] = {.lex_state = 56}, + [3989] = {.lex_state = 57}, + [3990] = {.lex_state = 58}, + [3991] = {.lex_state = 73}, + [3992] = {.lex_state = 59}, + [3993] = {.lex_state = 67}, + [3994] = {.lex_state = 65}, + [3995] = {.lex_state = 75}, + [3996] = {.lex_state = 74}, + [3997] = {.lex_state = 68}, + [3998] = {.lex_state = 69}, + [3999] = {.lex_state = 69}, + [4000] = {.lex_state = 61}, + [4001] = {.lex_state = 72}, + [4002] = {.lex_state = 70}, + [4003] = {.lex_state = 66}, + [4004] = {.lex_state = 71}, + [4005] = {.lex_state = 64}, + [4006] = {.lex_state = 69}, + [4007] = {.lex_state = 60}, + [4008] = {.lex_state = 54}, + [4009] = {.lex_state = 62}, + [4010] = {.lex_state = 53}, + [4011] = {.lex_state = 55}, + [4012] = {.lex_state = 49}, + [4013] = {.lex_state = 52}, + [4014] = {.lex_state = 50}, + [4015] = {.lex_state = 51}, + [4016] = {.lex_state = 56}, + [4017] = {.lex_state = 57}, + [4018] = {.lex_state = 58}, + [4019] = {.lex_state = 73}, + [4020] = {.lex_state = 59}, + [4021] = {.lex_state = 67}, + [4022] = {.lex_state = 65}, + [4023] = {.lex_state = 75}, + [4024] = {.lex_state = 74}, + [4025] = {.lex_state = 68}, + [4026] = {.lex_state = 69}, + [4027] = {.lex_state = 69}, + [4028] = {.lex_state = 59}, + [4029] = {.lex_state = 72}, + [4030] = {.lex_state = 70}, + [4031] = {.lex_state = 66}, + [4032] = {.lex_state = 71}, + [4033] = {.lex_state = 64}, + [4034] = {.lex_state = 69}, + [4035] = {.lex_state = 60}, + [4036] = {.lex_state = 54}, + [4037] = {.lex_state = 62}, + [4038] = {.lex_state = 53}, + [4039] = {.lex_state = 55}, + [4040] = {.lex_state = 49}, + [4041] = {.lex_state = 52}, + [4042] = {.lex_state = 50}, + [4043] = {.lex_state = 51}, + [4044] = {.lex_state = 56}, + [4045] = {.lex_state = 57}, + [4046] = {.lex_state = 58}, + [4047] = {.lex_state = 73}, + [4048] = {.lex_state = 52}, + [4049] = {.lex_state = 67}, + [4050] = {.lex_state = 65}, + [4051] = {.lex_state = 75}, + [4052] = {.lex_state = 74}, + [4053] = {.lex_state = 68}, + [4054] = {.lex_state = 69}, + [4055] = {.lex_state = 69}, + [4056] = {.lex_state = 61}, + [4057] = {.lex_state = 72}, + [4058] = {.lex_state = 70}, + [4059] = {.lex_state = 66}, + [4060] = {.lex_state = 71}, + [4061] = {.lex_state = 64}, + [4062] = {.lex_state = 69}, + [4063] = {.lex_state = 60}, + [4064] = {.lex_state = 54}, + [4065] = {.lex_state = 62}, + [4066] = {.lex_state = 53}, + [4067] = {.lex_state = 55}, + [4068] = {.lex_state = 49}, + [4069] = {.lex_state = 52}, + [4070] = {.lex_state = 50}, + [4071] = {.lex_state = 51}, + [4072] = {.lex_state = 56}, + [4073] = {.lex_state = 57}, + [4074] = {.lex_state = 58}, + [4075] = {.lex_state = 73}, + [4076] = {.lex_state = 59}, + [4077] = {.lex_state = 67}, + [4078] = {.lex_state = 65}, + [4079] = {.lex_state = 75}, + [4080] = {.lex_state = 74}, + [4081] = {.lex_state = 68}, + [4082] = {.lex_state = 69}, + [4083] = {.lex_state = 69}, + [4084] = {.lex_state = 61}, + [4085] = {.lex_state = 72}, + [4086] = {.lex_state = 70}, + [4087] = {.lex_state = 66}, + [4088] = {.lex_state = 71}, + [4089] = {.lex_state = 64}, + [4090] = {.lex_state = 69}, + [4091] = {.lex_state = 60}, + [4092] = {.lex_state = 54}, + [4093] = {.lex_state = 62}, + [4094] = {.lex_state = 53}, + [4095] = {.lex_state = 55}, + [4096] = {.lex_state = 49}, + [4097] = {.lex_state = 54}, + [4098] = {.lex_state = 50}, + [4099] = {.lex_state = 51}, + [4100] = {.lex_state = 56}, + [4101] = {.lex_state = 57}, + [4102] = {.lex_state = 58}, + [4103] = {.lex_state = 73}, + [4104] = {.lex_state = 59}, + [4105] = {.lex_state = 67}, + [4106] = {.lex_state = 65}, + [4107] = {.lex_state = 75}, + [4108] = {.lex_state = 74}, + [4109] = {.lex_state = 68}, + [4110] = {.lex_state = 69}, + [4111] = {.lex_state = 69}, + [4112] = {.lex_state = 61}, + [4113] = {.lex_state = 72}, + [4114] = {.lex_state = 70}, + [4115] = {.lex_state = 66}, + [4116] = {.lex_state = 71}, + [4117] = {.lex_state = 64}, + [4118] = {.lex_state = 69}, + [4119] = {.lex_state = 60}, + [4120] = {.lex_state = 54}, + [4121] = {.lex_state = 62}, + [4122] = {.lex_state = 53}, + [4123] = {.lex_state = 55}, + [4124] = {.lex_state = 49}, + [4125] = {.lex_state = 52}, + [4126] = {.lex_state = 50}, + [4127] = {.lex_state = 51}, + [4128] = {.lex_state = 56}, + [4129] = {.lex_state = 57}, + [4130] = {.lex_state = 58}, + [4131] = {.lex_state = 73}, + [4132] = {.lex_state = 59}, + [4133] = {.lex_state = 67}, + [4134] = {.lex_state = 65}, + [4135] = {.lex_state = 75}, + [4136] = {.lex_state = 74}, + [4137] = {.lex_state = 68}, + [4138] = {.lex_state = 69}, + [4139] = {.lex_state = 69}, + [4140] = {.lex_state = 61}, + [4141] = {.lex_state = 72}, + [4142] = {.lex_state = 70}, + [4143] = {.lex_state = 66}, + [4144] = {.lex_state = 71}, + [4145] = {.lex_state = 64}, + [4146] = {.lex_state = 69}, + [4147] = {.lex_state = 60}, + [4148] = {.lex_state = 54}, + [4149] = {.lex_state = 62}, + [4150] = {.lex_state = 53}, + [4151] = {.lex_state = 55}, + [4152] = {.lex_state = 49}, + [4153] = {.lex_state = 52}, + [4154] = {.lex_state = 50}, + [4155] = {.lex_state = 51}, + [4156] = {.lex_state = 56}, + [4157] = {.lex_state = 57}, + [4158] = {.lex_state = 58}, + [4159] = {.lex_state = 73}, + [4160] = {.lex_state = 59}, + [4161] = {.lex_state = 67}, + [4162] = {.lex_state = 65}, + [4163] = {.lex_state = 75}, + [4164] = {.lex_state = 74}, + [4165] = {.lex_state = 68}, + [4166] = {.lex_state = 69}, + [4167] = {.lex_state = 69}, + [4168] = {.lex_state = 61}, + [4169] = {.lex_state = 72}, + [4170] = {.lex_state = 70}, + [4171] = {.lex_state = 66}, + [4172] = {.lex_state = 71}, + [4173] = {.lex_state = 64}, + [4174] = {.lex_state = 69}, + [4175] = {.lex_state = 60}, + [4176] = {.lex_state = 53}, + [4177] = {.lex_state = 62}, + [4178] = {.lex_state = 59}, + [4179] = {.lex_state = 55}, + [4180] = {.lex_state = 49}, + [4181] = {.lex_state = 52}, + [4182] = {.lex_state = 50}, + [4183] = {.lex_state = 51}, + [4184] = {.lex_state = 56}, + [4185] = {.lex_state = 57}, + [4186] = {.lex_state = 58}, + [4187] = {.lex_state = 73}, + [4188] = {.lex_state = 59}, + [4189] = {.lex_state = 67}, + [4190] = {.lex_state = 65}, + [4191] = {.lex_state = 75}, + [4192] = {.lex_state = 74}, + [4193] = {.lex_state = 68}, + [4194] = {.lex_state = 69}, + [4195] = {.lex_state = 69}, + [4196] = {.lex_state = 61}, + [4197] = {.lex_state = 72}, + [4198] = {.lex_state = 70}, + [4199] = {.lex_state = 66}, + [4200] = {.lex_state = 71}, + [4201] = {.lex_state = 64}, + [4202] = {.lex_state = 69}, + [4203] = {.lex_state = 60}, + [4204] = {.lex_state = 54}, + [4205] = {.lex_state = 62}, + [4206] = {.lex_state = 53}, + [4207] = {.lex_state = 55}, + [4208] = {.lex_state = 49}, + [4209] = {.lex_state = 52}, + [4210] = {.lex_state = 50}, + [4211] = {.lex_state = 51}, + [4212] = {.lex_state = 56}, + [4213] = {.lex_state = 57}, + [4214] = {.lex_state = 58}, + [4215] = {.lex_state = 73}, + [4216] = {.lex_state = 59}, + [4217] = {.lex_state = 67}, + [4218] = {.lex_state = 65}, + [4219] = {.lex_state = 75}, + [4220] = {.lex_state = 74}, + [4221] = {.lex_state = 68}, + [4222] = {.lex_state = 69}, + [4223] = {.lex_state = 69}, + [4224] = {.lex_state = 61}, + [4225] = {.lex_state = 72}, + [4226] = {.lex_state = 70}, + [4227] = {.lex_state = 66}, + [4228] = {.lex_state = 71}, + [4229] = {.lex_state = 64}, + [4230] = {.lex_state = 69}, + [4231] = {.lex_state = 60}, + [4232] = {.lex_state = 54}, + [4233] = {.lex_state = 62}, + [4234] = {.lex_state = 53}, + [4235] = {.lex_state = 55}, + [4236] = {.lex_state = 49}, + [4237] = {.lex_state = 52}, + [4238] = {.lex_state = 50}, + [4239] = {.lex_state = 51}, + [4240] = {.lex_state = 56}, + [4241] = {.lex_state = 57}, + [4242] = {.lex_state = 58}, + [4243] = {.lex_state = 73}, + [4244] = {.lex_state = 74}, + [4245] = {.lex_state = 67}, + [4246] = {.lex_state = 65}, + [4247] = {.lex_state = 75}, + [4248] = {.lex_state = 74}, + [4249] = {.lex_state = 68}, + [4250] = {.lex_state = 69}, + [4251] = {.lex_state = 69}, + [4252] = {.lex_state = 61}, + [4253] = {.lex_state = 72}, + [4254] = {.lex_state = 70}, + [4255] = {.lex_state = 66}, + [4256] = {.lex_state = 71}, + [4257] = {.lex_state = 64}, + [4258] = {.lex_state = 69}, + [4259] = {.lex_state = 60}, + [4260] = {.lex_state = 54}, + [4261] = {.lex_state = 62}, + [4262] = {.lex_state = 53}, + [4263] = {.lex_state = 55}, + [4264] = {.lex_state = 49}, + [4265] = {.lex_state = 52}, + [4266] = {.lex_state = 50}, + [4267] = {.lex_state = 51}, + [4268] = {.lex_state = 56}, + [4269] = {.lex_state = 57}, + [4270] = {.lex_state = 58}, + [4271] = {.lex_state = 73}, + [4272] = {.lex_state = 59}, + [4273] = {.lex_state = 67}, + [4274] = {.lex_state = 65}, + [4275] = {.lex_state = 75}, + [4276] = {.lex_state = 74}, + [4277] = {.lex_state = 68}, + [4278] = {.lex_state = 69}, + [4279] = {.lex_state = 69}, + [4280] = {.lex_state = 61}, + [4281] = {.lex_state = 72}, + [4282] = {.lex_state = 70}, + [4283] = {.lex_state = 66}, + [4284] = {.lex_state = 71}, + [4285] = {.lex_state = 64}, + [4286] = {.lex_state = 69}, + [4287] = {.lex_state = 60}, + [4288] = {.lex_state = 54}, + [4289] = {.lex_state = 62}, + [4290] = {.lex_state = 53}, + [4291] = {.lex_state = 55}, + [4292] = {.lex_state = 49}, + [4293] = {.lex_state = 52}, + [4294] = {.lex_state = 50}, + [4295] = {.lex_state = 51}, + [4296] = {.lex_state = 56}, + [4297] = {.lex_state = 57}, + [4298] = {.lex_state = 58}, + [4299] = {.lex_state = 73}, + [4300] = {.lex_state = 59}, + [4301] = {.lex_state = 67}, + [4302] = {.lex_state = 65}, + [4303] = {.lex_state = 75}, + [4304] = {.lex_state = 52}, + [4305] = {.lex_state = 68}, + [4306] = {.lex_state = 69}, + [4307] = {.lex_state = 69}, + [4308] = {.lex_state = 61}, + [4309] = {.lex_state = 72}, + [4310] = {.lex_state = 70}, + [4311] = {.lex_state = 66}, + [4312] = {.lex_state = 71}, + [4313] = {.lex_state = 64}, + [4314] = {.lex_state = 69}, + [4315] = {.lex_state = 60}, + [4316] = {.lex_state = 54}, + [4317] = {.lex_state = 62}, + [4318] = {.lex_state = 53}, + [4319] = {.lex_state = 55}, + [4320] = {.lex_state = 49}, + [4321] = {.lex_state = 70}, + [4322] = {.lex_state = 50}, + [4323] = {.lex_state = 51}, + [4324] = {.lex_state = 56}, + [4325] = {.lex_state = 57}, + [4326] = {.lex_state = 58}, + [4327] = {.lex_state = 73}, + [4328] = {.lex_state = 59}, + [4329] = {.lex_state = 67}, + [4330] = {.lex_state = 65}, + [4331] = {.lex_state = 75}, + [4332] = {.lex_state = 74}, + [4333] = {.lex_state = 68}, + [4334] = {.lex_state = 69}, + [4335] = {.lex_state = 69}, + [4336] = {.lex_state = 61}, + [4337] = {.lex_state = 72}, + [4338] = {.lex_state = 70}, + [4339] = {.lex_state = 66}, + [4340] = {.lex_state = 71}, + [4341] = {.lex_state = 64}, + [4342] = {.lex_state = 69}, + [4343] = {.lex_state = 60}, + [4344] = {.lex_state = 54}, + [4345] = {.lex_state = 62}, + [4346] = {.lex_state = 53}, + [4347] = {.lex_state = 55}, + [4348] = {.lex_state = 49}, + [4349] = {.lex_state = 52}, + [4350] = {.lex_state = 50}, + [4351] = {.lex_state = 51}, + [4352] = {.lex_state = 56}, + [4353] = {.lex_state = 57}, + [4354] = {.lex_state = 58}, + [4355] = {.lex_state = 73}, + [4356] = {.lex_state = 59}, + [4357] = {.lex_state = 67}, + [4358] = {.lex_state = 65}, + [4359] = {.lex_state = 75}, + [4360] = {.lex_state = 74}, + [4361] = {.lex_state = 68}, + [4362] = {.lex_state = 69}, + [4363] = {.lex_state = 69}, + [4364] = {.lex_state = 61}, + [4365] = {.lex_state = 72}, + [4366] = {.lex_state = 70}, + [4367] = {.lex_state = 66}, + [4368] = {.lex_state = 71}, + [4369] = {.lex_state = 64}, + [4370] = {.lex_state = 69}, + [4371] = {.lex_state = 60}, + [4372] = {.lex_state = 54}, + [4373] = {.lex_state = 62}, + [4374] = {.lex_state = 53}, + [4375] = {.lex_state = 55}, + [4376] = {.lex_state = 49}, + [4377] = {.lex_state = 52}, + [4378] = {.lex_state = 50}, + [4379] = {.lex_state = 51}, + [4380] = {.lex_state = 56}, + [4381] = {.lex_state = 57}, + [4382] = {.lex_state = 58}, + [4383] = {.lex_state = 73}, + [4384] = {.lex_state = 59}, + [4385] = {.lex_state = 67}, + [4386] = {.lex_state = 65}, + [4387] = {.lex_state = 75}, + [4388] = {.lex_state = 74}, + [4389] = {.lex_state = 68}, + [4390] = {.lex_state = 69}, + [4391] = {.lex_state = 69}, + [4392] = {.lex_state = 61}, + [4393] = {.lex_state = 72}, + [4394] = {.lex_state = 49}, + [4395] = {.lex_state = 66}, + [4396] = {.lex_state = 71}, + [4397] = {.lex_state = 64}, + [4398] = {.lex_state = 69}, + [4399] = {.lex_state = 60}, + [4400] = {.lex_state = 54}, + [4401] = {.lex_state = 62}, + [4402] = {.lex_state = 53}, + [4403] = {.lex_state = 55}, + [4404] = {.lex_state = 49}, + [4405] = {.lex_state = 52}, + [4406] = {.lex_state = 50}, + [4407] = {.lex_state = 51}, + [4408] = {.lex_state = 56}, + [4409] = {.lex_state = 57}, + [4410] = {.lex_state = 58}, + [4411] = {.lex_state = 73}, + [4412] = {.lex_state = 59}, + [4413] = {.lex_state = 67}, + [4414] = {.lex_state = 65}, + [4415] = {.lex_state = 75}, + [4416] = {.lex_state = 74}, + [4417] = {.lex_state = 68}, + [4418] = {.lex_state = 69}, + [4419] = {.lex_state = 69}, + [4420] = {.lex_state = 61}, + [4421] = {.lex_state = 72}, + [4422] = {.lex_state = 70}, + [4423] = {.lex_state = 66}, + [4424] = {.lex_state = 71}, + [4425] = {.lex_state = 64}, + [4426] = {.lex_state = 69}, + [4427] = {.lex_state = 60}, + [4428] = {.lex_state = 54}, + [4429] = {.lex_state = 62}, + [4430] = {.lex_state = 53}, + [4431] = {.lex_state = 55}, + [4432] = {.lex_state = 52}, + [4433] = {.lex_state = 52}, + [4434] = {.lex_state = 50}, + [4435] = {.lex_state = 51}, + [4436] = {.lex_state = 56}, + [4437] = {.lex_state = 57}, + [4438] = {.lex_state = 58}, + [4439] = {.lex_state = 73}, + [4440] = {.lex_state = 59}, + [4441] = {.lex_state = 67}, + [4442] = {.lex_state = 65}, + [4443] = {.lex_state = 75}, + [4444] = {.lex_state = 74}, + [4445] = {.lex_state = 68}, + [4446] = {.lex_state = 69}, + [4447] = {.lex_state = 69}, + [4448] = {.lex_state = 61}, + [4449] = {.lex_state = 72}, + [4450] = {.lex_state = 70}, + [4451] = {.lex_state = 66}, + [4452] = {.lex_state = 71}, + [4453] = {.lex_state = 64}, + [4454] = {.lex_state = 69}, + [4455] = {.lex_state = 60}, + [4456] = {.lex_state = 54}, + [4457] = {.lex_state = 62}, + [4458] = {.lex_state = 53}, + [4459] = {.lex_state = 55}, + [4460] = {.lex_state = 49}, + [4461] = {.lex_state = 55}, + [4462] = {.lex_state = 50}, + [4463] = {.lex_state = 51}, + [4464] = {.lex_state = 56}, + [4465] = {.lex_state = 57}, + [4466] = {.lex_state = 58}, + [4467] = {.lex_state = 73}, + [4468] = {.lex_state = 59}, + [4469] = {.lex_state = 67}, + [4470] = {.lex_state = 65}, + [4471] = {.lex_state = 75}, + [4472] = {.lex_state = 74}, + [4473] = {.lex_state = 68}, + [4474] = {.lex_state = 69}, + [4475] = {.lex_state = 69}, + [4476] = {.lex_state = 61}, + [4477] = {.lex_state = 72}, + [4478] = {.lex_state = 70}, + [4479] = {.lex_state = 66}, + [4480] = {.lex_state = 71}, + [4481] = {.lex_state = 64}, + [4482] = {.lex_state = 69}, + [4483] = {.lex_state = 60}, + [4484] = {.lex_state = 54}, + [4485] = {.lex_state = 62}, + [4486] = {.lex_state = 53}, + [4487] = {.lex_state = 55}, + [4488] = {.lex_state = 49}, + [4489] = {.lex_state = 52}, + [4490] = {.lex_state = 50}, + [4491] = {.lex_state = 51}, + [4492] = {.lex_state = 56}, + [4493] = {.lex_state = 57}, + [4494] = {.lex_state = 58}, + [4495] = {.lex_state = 73}, + [4496] = {.lex_state = 59}, + [4497] = {.lex_state = 67}, + [4498] = {.lex_state = 65}, + [4499] = {.lex_state = 75}, + [4500] = {.lex_state = 74}, + [4501] = {.lex_state = 68}, + [4502] = {.lex_state = 69}, + [4503] = {.lex_state = 69}, + [4504] = {.lex_state = 61}, + [4505] = {.lex_state = 72}, + [4506] = {.lex_state = 70}, + [4507] = {.lex_state = 66}, + [4508] = {.lex_state = 71}, + [4509] = {.lex_state = 64}, + [4510] = {.lex_state = 69}, + [4511] = {.lex_state = 60}, + [4512] = {.lex_state = 54}, + [4513] = {.lex_state = 62}, + [4514] = {.lex_state = 53}, + [4515] = {.lex_state = 55}, + [4516] = {.lex_state = 49}, + [4517] = {.lex_state = 52}, + [4518] = {.lex_state = 50}, + [4519] = {.lex_state = 51}, + [4520] = {.lex_state = 56}, + [4521] = {.lex_state = 57}, + [4522] = {.lex_state = 58}, + [4523] = {.lex_state = 73}, + [4524] = {.lex_state = 59}, + [4525] = {.lex_state = 67}, + [4526] = {.lex_state = 65}, + [4527] = {.lex_state = 75}, + [4528] = {.lex_state = 74}, + [4529] = {.lex_state = 68}, + [4530] = {.lex_state = 69}, + [4531] = {.lex_state = 69}, + [4532] = {.lex_state = 61}, + [4533] = {.lex_state = 72}, + [4534] = {.lex_state = 70}, + [4535] = {.lex_state = 66}, + [4536] = {.lex_state = 71}, + [4537] = {.lex_state = 64}, + [4538] = {.lex_state = 69}, + [4539] = {.lex_state = 60}, + [4540] = {.lex_state = 54}, + [4541] = {.lex_state = 62}, + [4542] = {.lex_state = 53}, + [4543] = {.lex_state = 61}, + [4544] = {.lex_state = 49}, + [4545] = {.lex_state = 52}, + [4546] = {.lex_state = 50}, + [4547] = {.lex_state = 51}, + [4548] = {.lex_state = 56}, + [4549] = {.lex_state = 57}, + [4550] = {.lex_state = 58}, + [4551] = {.lex_state = 73}, + [4552] = {.lex_state = 59}, + [4553] = {.lex_state = 67}, + [4554] = {.lex_state = 65}, + [4555] = {.lex_state = 75}, + [4556] = {.lex_state = 74}, + [4557] = {.lex_state = 68}, + [4558] = {.lex_state = 69}, + [4559] = {.lex_state = 69}, + [4560] = {.lex_state = 75}, + [4561] = {.lex_state = 72}, + [4562] = {.lex_state = 70}, + [4563] = {.lex_state = 66}, + [4564] = {.lex_state = 71}, + [4565] = {.lex_state = 64}, + [4566] = {.lex_state = 69}, + [4567] = {.lex_state = 60}, + [4568] = {.lex_state = 54}, + [4569] = {.lex_state = 62}, + [4570] = {.lex_state = 53}, + [4571] = {.lex_state = 55}, + [4572] = {.lex_state = 49}, + [4573] = {.lex_state = 52}, + [4574] = {.lex_state = 50}, + [4575] = {.lex_state = 51}, + [4576] = {.lex_state = 56}, + [4577] = {.lex_state = 57}, + [4578] = {.lex_state = 58}, + [4579] = {.lex_state = 73}, + [4580] = {.lex_state = 59}, + [4581] = {.lex_state = 67}, + [4582] = {.lex_state = 65}, + [4583] = {.lex_state = 75}, + [4584] = {.lex_state = 74}, + [4585] = {.lex_state = 68}, + [4586] = {.lex_state = 69}, + [4587] = {.lex_state = 69}, + [4588] = {.lex_state = 61}, + [4589] = {.lex_state = 72}, + [4590] = {.lex_state = 70}, + [4591] = {.lex_state = 66}, + [4592] = {.lex_state = 71}, + [4593] = {.lex_state = 64}, + [4594] = {.lex_state = 69}, + [4595] = {.lex_state = 60}, + [4596] = {.lex_state = 54}, + [4597] = {.lex_state = 62}, + [4598] = {.lex_state = 53}, + [4599] = {.lex_state = 55}, + [4600] = {.lex_state = 49}, + [4601] = {.lex_state = 52}, + [4602] = {.lex_state = 50}, + [4603] = {.lex_state = 51}, + [4604] = {.lex_state = 56}, + [4605] = {.lex_state = 57}, + [4606] = {.lex_state = 58}, + [4607] = {.lex_state = 73}, + [4608] = {.lex_state = 59}, + [4609] = {.lex_state = 67}, + [4610] = {.lex_state = 65}, + [4611] = {.lex_state = 52}, + [4612] = {.lex_state = 74}, + [4613] = {.lex_state = 68}, + [4614] = {.lex_state = 69}, + [4615] = {.lex_state = 61}, + [4616] = {.lex_state = 72}, + [4617] = {.lex_state = 70}, + [4618] = {.lex_state = 66}, + [4619] = {.lex_state = 71}, + [4620] = {.lex_state = 64}, + [4621] = {.lex_state = 69}, + [4622] = {.lex_state = 60}, + [4623] = {.lex_state = 54}, + [4624] = {.lex_state = 62}, + [4625] = {.lex_state = 53}, + [4626] = {.lex_state = 55}, + [4627] = {.lex_state = 49}, + [4628] = {.lex_state = 52}, + [4629] = {.lex_state = 50}, + [4630] = {.lex_state = 51}, + [4631] = {.lex_state = 56}, + [4632] = {.lex_state = 57}, + [4633] = {.lex_state = 58}, + [4634] = {.lex_state = 73}, + [4635] = {.lex_state = 59}, + [4636] = {.lex_state = 67}, + [4637] = {.lex_state = 65}, + [4638] = {.lex_state = 75}, + [4639] = {.lex_state = 74}, + [4640] = {.lex_state = 68}, + [4641] = {.lex_state = 69}, + [4642] = {.lex_state = 69}, + [4643] = {.lex_state = 61}, + [4644] = {.lex_state = 72}, + [4645] = {.lex_state = 70}, + [4646] = {.lex_state = 66}, + [4647] = {.lex_state = 71}, + [4648] = {.lex_state = 64}, + [4649] = {.lex_state = 69}, + [4650] = {.lex_state = 60}, + [4651] = {.lex_state = 54}, + [4652] = {.lex_state = 62}, + [4653] = {.lex_state = 53}, + [4654] = {.lex_state = 55}, + [4655] = {.lex_state = 49}, + [4656] = {.lex_state = 0}, + [4657] = {.lex_state = 0}, + [4658] = {.lex_state = 50}, + [4659] = {.lex_state = 51}, + [4660] = {.lex_state = 56}, + [4661] = {.lex_state = 57}, + [4662] = {.lex_state = 58}, + [4663] = {.lex_state = 73}, + [4664] = {.lex_state = 59}, + [4665] = {.lex_state = 67}, + [4666] = {.lex_state = 65}, + [4667] = {.lex_state = 75}, + [4668] = {.lex_state = 74}, + [4669] = {.lex_state = 68}, + [4670] = {.lex_state = 69}, + [4671] = {.lex_state = 69}, + [4672] = {.lex_state = 61}, + [4673] = {.lex_state = 72}, + [4674] = {.lex_state = 70}, + [4675] = {.lex_state = 66}, + [4676] = {.lex_state = 71}, + [4677] = {.lex_state = 64}, + [4678] = {.lex_state = 69}, + [4679] = {.lex_state = 60}, + [4680] = {.lex_state = 54}, + [4681] = {.lex_state = 62}, + [4682] = {.lex_state = 53}, + [4683] = {.lex_state = 55}, + [4684] = {.lex_state = 49}, + [4685] = {.lex_state = 52}, + [4686] = {(TSStateId)(-1)}, + [4687] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -16823,6 +18774,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_ATsectionMissing] = ACTIONS(1), [anon_sym_ATerror] = ACTIONS(1), [anon_sym_ATenderror] = ACTIONS(1), + [anon_sym_ATcan] = ACTIONS(1), + [anon_sym_ATendcan] = ACTIONS(1), + [anon_sym_ATcannot] = ACTIONS(1), + [anon_sym_ATcanany] = ACTIONS(1), [aux_sym__custom_token1] = ACTIONS(1), [aux_sym__custom_token2] = ACTIONS(1), [aux_sym__custom_token3] = ACTIONS(1), @@ -16851,55 +18806,58 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_text_token3] = ACTIONS(1), }, [1] = { - [sym_blade] = STATE(3762), - [sym__definition] = STATE(1966), + [sym_blade] = STATE(4657), + [sym__definition] = STATE(2333), [sym_comment] = STATE(1), - [sym_keyword] = STATE(1971), - [sym_php_statement] = STATE(1971), - [sym__escaped] = STATE(1972), - [sym__unescaped] = STATE(1972), - [sym__raw] = STATE(1972), - [sym__inline_raw] = STATE(1974), - [sym__multi_line_raw] = STATE(1974), - [sym_attribute] = STATE(1971), - [sym__inline_directive] = STATE(1971), - [sym__nested_directive] = STATE(1971), - [sym_fragment] = STATE(1979), - [sym_section] = STATE(1979), - [sym_once] = STATE(1979), - [sym_verbatim] = STATE(1979), - [sym_stack] = STATE(1979), - [sym__push] = STATE(1980), - [sym__pushOnce] = STATE(1980), - [sym__pushIf] = STATE(1980), - [sym__prepend] = STATE(1980), - [sym__prependOnce] = STATE(1980), - [sym_conditional] = STATE(1979), - [sym__if] = STATE(1981), - [sym__unless] = STATE(1981), - [sym__isset] = STATE(1981), - [sym__empty] = STATE(1981), - [sym__auth] = STATE(1981), - [sym__guest] = STATE(1981), - [sym__production] = STATE(1981), - [sym__env] = STATE(1981), - [sym__hasSection] = STATE(1981), - [sym__sectionMissing] = STATE(1981), - [sym__error] = STATE(1981), - [sym__custom] = STATE(1981), - [sym_switch] = STATE(1979), - [sym_loop] = STATE(1979), - [sym_loop_operator] = STATE(1971), - [sym__for] = STATE(1984), - [sym__foreach] = STATE(1984), - [sym__forelse] = STATE(1984), - [sym__while] = STATE(1984), - [sym_livewire] = STATE(1979), - [sym__persist] = STATE(1985), - [sym__teleport] = STATE(1985), - [sym__volt] = STATE(1985), - [sym_text] = STATE(1986), - [aux_sym_blade_repeat1] = STATE(422), + [sym_keyword] = STATE(2334), + [sym_php_statement] = STATE(2334), + [sym__escaped] = STATE(2338), + [sym__unescaped] = STATE(2338), + [sym__raw] = STATE(2338), + [sym__inline_raw] = STATE(2339), + [sym__multi_line_raw] = STATE(2339), + [sym_attribute] = STATE(2334), + [sym__inline_directive] = STATE(2334), + [sym__nested_directive] = STATE(2334), + [sym_fragment] = STATE(2340), + [sym_section] = STATE(2340), + [sym_once] = STATE(2340), + [sym_verbatim] = STATE(2340), + [sym_stack] = STATE(2340), + [sym__push] = STATE(2347), + [sym__pushOnce] = STATE(2347), + [sym__pushIf] = STATE(2347), + [sym__prepend] = STATE(2347), + [sym__prependOnce] = STATE(2347), + [sym_conditional] = STATE(2340), + [sym__if] = STATE(2351), + [sym__unless] = STATE(2351), + [sym__isset] = STATE(2351), + [sym__empty] = STATE(2351), + [sym__auth] = STATE(2351), + [sym__guest] = STATE(2351), + [sym__production] = STATE(2351), + [sym__env] = STATE(2351), + [sym__hasSection] = STATE(2351), + [sym__sectionMissing] = STATE(2351), + [sym__error] = STATE(2351), + [sym__can] = STATE(2351), + [sym__cannot] = STATE(2351), + [sym__canany] = STATE(2351), + [sym__custom] = STATE(2351), + [sym_switch] = STATE(2340), + [sym_loop] = STATE(2340), + [sym_loop_operator] = STATE(2334), + [sym__for] = STATE(2352), + [sym__foreach] = STATE(2352), + [sym__forelse] = STATE(2352), + [sym__while] = STATE(2352), + [sym_livewire] = STATE(2340), + [sym__persist] = STATE(2353), + [sym__teleport] = STATE(2353), + [sym__volt] = STATE(2353), + [sym_text] = STATE(2354), + [aux_sym_blade_repeat1] = STATE(423), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), [aux_sym_keyword_token1] = ACTIONS(7), @@ -16928,7465 +18886,7033 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AThasSection] = ACTIONS(53), [anon_sym_ATsectionMissing] = ACTIONS(55), [anon_sym_ATerror] = ACTIONS(57), - [aux_sym__custom_token1] = ACTIONS(59), - [aux_sym__custom_token2] = ACTIONS(61), - [anon_sym_ATswitch] = ACTIONS(63), - [aux_sym_loop_operator_token1] = ACTIONS(65), - [anon_sym_ATfor] = ACTIONS(67), - [anon_sym_ATforeach] = ACTIONS(69), - [anon_sym_ATforelse] = ACTIONS(71), - [anon_sym_ATwhile] = ACTIONS(73), - [anon_sym_ATpersist] = ACTIONS(75), - [anon_sym_ATteleport] = ACTIONS(77), - [anon_sym_ATvolt] = ACTIONS(79), - [aux_sym_text_token1] = ACTIONS(81), - [aux_sym_text_token2] = ACTIONS(81), - [aux_sym_text_token3] = ACTIONS(83), + [anon_sym_ATcan] = ACTIONS(59), + [anon_sym_ATcannot] = ACTIONS(61), + [anon_sym_ATcanany] = ACTIONS(63), + [aux_sym__custom_token1] = ACTIONS(65), + [aux_sym__custom_token2] = ACTIONS(67), + [anon_sym_ATswitch] = ACTIONS(69), + [aux_sym_loop_operator_token1] = ACTIONS(71), + [anon_sym_ATfor] = ACTIONS(73), + [anon_sym_ATforeach] = ACTIONS(75), + [anon_sym_ATforelse] = ACTIONS(77), + [anon_sym_ATwhile] = ACTIONS(79), + [anon_sym_ATpersist] = ACTIONS(81), + [anon_sym_ATteleport] = ACTIONS(83), + [anon_sym_ATvolt] = ACTIONS(85), + [aux_sym_text_token1] = ACTIONS(87), + [aux_sym_text_token2] = ACTIONS(87), + [aux_sym_text_token3] = ACTIONS(89), }, [2] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(2), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3634), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3917), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [3] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(3), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3635), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4421), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [4] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(4), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3718), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4226), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [5] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(5), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3721), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4253), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [6] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(6), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3796), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4001), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [7] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(7), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3797), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4002), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [8] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(8), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3262), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4170), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [9] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(9), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3261), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4281), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [10] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(10), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3871), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4282), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [11] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(11), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3872), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4309), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [12] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(12), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3550), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3974), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [13] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(13), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3311), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3973), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [14] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(14), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3312), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4310), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [15] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(15), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3538), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4337), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [16] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(16), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3345), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4338), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [17] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(17), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3336), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3946), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [18] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(18), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3470), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3945), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [19] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(19), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3383), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4365), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [20] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(20), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3384), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4617), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [21] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(21), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3982), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4366), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [22] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(22), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3632), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4674), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [23] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(23), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3631), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4673), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [24] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(24), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3981), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4393), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [25] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(25), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3957), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4616), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [26] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(26), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3420), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4321), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [27] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(27), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3421), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4198), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [28] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(28), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3956), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4645), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [29] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(29), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3459), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4422), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [30] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(30), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3460), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3918), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [31] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(31), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3930), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4506), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [32] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(32), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3929), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4505), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [33] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(33), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3498), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4225), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [34] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(34), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3499), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4254), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [35] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(35), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3895), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4169), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [36] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(36), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3539), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3890), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [37] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(37), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3540), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4590), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [38] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(38), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3894), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4589), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [39] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(39), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3458), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4142), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [40] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(40), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3582), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4449), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [41] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(41), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3776), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3889), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [42] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(42), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3855), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4450), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [43] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(43), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3821), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4141), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [44] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(44), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3820), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4114), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [45] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(45), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3782), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3862), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [46] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(46), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3382), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3861), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [47] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(47), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3369), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4644), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [48] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(48), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3781), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4113), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [49] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(49), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3746), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4562), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [50] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(50), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3745), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4561), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [51] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(51), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3295), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4086), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [52] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(52), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3583), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4477), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [53] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1292), [sym_comment] = STATE(53), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3704), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4478), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [54] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(54), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3703), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3834), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [55] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(55), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3666), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3833), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [56] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(56), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3620), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3806), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [57] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1164), [sym_comment] = STATE(57), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3621), - [sym__directive_parameter] = STATE(136), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(89), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(3805), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [58] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(58), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3665), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4085), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [59] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1292), [sym_comment] = STATE(59), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym__if_statement_directive_body_with_optional_parameter] = STATE(3296), - [sym__directive_parameter] = STATE(125), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(61), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4058), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [60] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(60), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(110), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4057), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [61] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1164), [sym_comment] = STATE(61), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(110), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4197), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [62] = { - [sym__definition] = STATE(495), + [sym__definition] = STATE(1292), [sym_comment] = STATE(62), - [sym_keyword] = STATE(908), - [sym_php_statement] = STATE(908), - [sym__escaped] = STATE(907), - [sym__unescaped] = STATE(907), - [sym__raw] = STATE(907), - [sym__inline_raw] = STATE(905), - [sym__multi_line_raw] = STATE(905), - [sym_attribute] = STATE(908), - [sym__inline_directive] = STATE(908), - [sym__nested_directive] = STATE(908), - [sym_fragment] = STATE(904), - [sym_section] = STATE(904), - [sym_once] = STATE(904), - [sym_verbatim] = STATE(904), - [sym_stack] = STATE(904), - [sym__push] = STATE(902), - [sym__pushOnce] = STATE(902), - [sym__pushIf] = STATE(902), - [sym__prepend] = STATE(902), - [sym__prependOnce] = STATE(902), - [sym_conditional] = STATE(904), - [sym_conditional_keyword] = STATE(495), - [sym__if] = STATE(901), - [sym__unless] = STATE(901), - [sym__isset] = STATE(901), - [sym__empty] = STATE(901), - [sym__auth] = STATE(901), - [sym__guest] = STATE(901), - [sym__production] = STATE(901), - [sym__env] = STATE(901), - [sym__hasSection] = STATE(901), - [sym__sectionMissing] = STATE(901), - [sym__error] = STATE(901), - [sym__custom] = STATE(901), - [sym_switch] = STATE(904), - [sym_loop] = STATE(904), - [sym_loop_operator] = STATE(908), - [sym__for] = STATE(899), - [sym__foreach] = STATE(899), - [sym__forelse] = STATE(899), - [sym__while] = STATE(899), - [sym_livewire] = STATE(904), - [sym__persist] = STATE(898), - [sym__teleport] = STATE(898), - [sym__volt] = STATE(898), - [sym_text] = STATE(897), - [aux_sym__if_statement_directive_body_repeat1] = STATE(76), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4534), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [63] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1164), [sym_comment] = STATE(63), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4029), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [64] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1164), [sym_comment] = STATE(64), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4533), + [sym__directive_parameter] = STATE(158), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(97), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [65] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1292), [sym_comment] = STATE(65), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym__if_statement_directive_body_with_optional_parameter] = STATE(4030), + [sym__directive_parameter] = STATE(161), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(92), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [anon_sym_LPAREN] = ACTIONS(175), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [66] = { - [sym__definition] = STATE(1002), + [sym__definition] = STATE(590), [sym_comment] = STATE(66), - [sym_keyword] = STATE(1004), - [sym_php_statement] = STATE(1004), - [sym__escaped] = STATE(1005), - [sym__unescaped] = STATE(1005), - [sym__raw] = STATE(1005), - [sym__inline_raw] = STATE(1006), - [sym__multi_line_raw] = STATE(1006), - [sym_attribute] = STATE(1004), - [sym__inline_directive] = STATE(1004), - [sym__nested_directive] = STATE(1004), - [sym_fragment] = STATE(1007), - [sym_section] = STATE(1007), - [sym_once] = STATE(1007), - [sym_verbatim] = STATE(1007), - [sym_stack] = STATE(1007), - [sym__push] = STATE(1008), - [sym__pushOnce] = STATE(1008), - [sym__pushIf] = STATE(1008), - [sym__prepend] = STATE(1008), - [sym__prependOnce] = STATE(1008), - [sym_conditional] = STATE(1007), - [sym_conditional_keyword] = STATE(1002), - [sym__if] = STATE(1009), - [sym__unless] = STATE(1009), - [sym__isset] = STATE(1009), - [sym__empty] = STATE(1009), - [sym__auth] = STATE(1009), - [sym__guest] = STATE(1009), - [sym__production] = STATE(1009), - [sym__env] = STATE(1009), - [sym__hasSection] = STATE(1009), - [sym__sectionMissing] = STATE(1009), - [sym__error] = STATE(1009), - [sym__custom] = STATE(1009), - [sym_switch] = STATE(1007), - [sym_loop] = STATE(1007), - [sym_loop_operator] = STATE(1004), - [sym__for] = STATE(1010), - [sym__foreach] = STATE(1010), - [sym__forelse] = STATE(1010), - [sym__while] = STATE(1010), - [sym_livewire] = STATE(1007), - [sym__persist] = STATE(1011), - [sym__teleport] = STATE(1011), - [sym__volt] = STATE(1011), - [sym_text] = STATE(1012), - [aux_sym__if_statement_directive_body_repeat1] = STATE(66), + [sym_keyword] = STATE(1330), + [sym_php_statement] = STATE(1330), + [sym__escaped] = STATE(1331), + [sym__unescaped] = STATE(1331), + [sym__raw] = STATE(1331), + [sym__inline_raw] = STATE(1332), + [sym__multi_line_raw] = STATE(1332), + [sym_attribute] = STATE(1330), + [sym__inline_directive] = STATE(1330), + [sym__nested_directive] = STATE(1330), + [sym_fragment] = STATE(1333), + [sym_section] = STATE(1333), + [sym_once] = STATE(1333), + [sym_verbatim] = STATE(1333), + [sym_stack] = STATE(1333), + [sym__push] = STATE(1334), + [sym__pushOnce] = STATE(1334), + [sym__pushIf] = STATE(1334), + [sym__prepend] = STATE(1334), + [sym__prependOnce] = STATE(1334), + [sym_conditional] = STATE(1333), + [sym_conditional_keyword] = STATE(590), + [sym__if] = STATE(1335), + [sym__unless] = STATE(1335), + [sym__isset] = STATE(1335), + [sym__empty] = STATE(1335), + [sym__auth] = STATE(1335), + [sym__guest] = STATE(1335), + [sym__production] = STATE(1335), + [sym__env] = STATE(1335), + [sym__hasSection] = STATE(1335), + [sym__sectionMissing] = STATE(1335), + [sym__error] = STATE(1335), + [sym__can] = STATE(1335), + [sym__cannot] = STATE(1335), + [sym__canany] = STATE(1335), + [sym__custom] = STATE(1335), + [sym_switch] = STATE(1333), + [sym_loop] = STATE(1333), + [sym_loop_operator] = STATE(1330), + [sym__for] = STATE(1336), + [sym__foreach] = STATE(1336), + [sym__forelse] = STATE(1336), + [sym__while] = STATE(1336), + [sym_livewire] = STATE(1333), + [sym__persist] = STATE(1337), + [sym__teleport] = STATE(1337), + [sym__volt] = STATE(1337), + [sym_text] = STATE(1338), + [aux_sym__if_statement_directive_body_repeat1] = STATE(128), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(269), + [anon_sym_LBRACE_LBRACE] = ACTIONS(271), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(273), + [anon_sym_ATphp] = ACTIONS(275), + [aux_sym_attribute_token1] = ACTIONS(277), + [aux_sym__inline_directive_token1] = ACTIONS(279), + [anon_sym_ATfragment] = ACTIONS(281), + [anon_sym_ATsection] = ACTIONS(283), + [anon_sym_ATonce] = ACTIONS(285), + [anon_sym_ATverbatim] = ACTIONS(287), + [anon_sym_ATpush] = ACTIONS(289), + [anon_sym_ATpushOnce] = ACTIONS(291), + [anon_sym_ATpushIf] = ACTIONS(293), + [anon_sym_ATprepend] = ACTIONS(295), + [anon_sym_ATprependOnce] = ACTIONS(297), + [anon_sym_ATelse] = ACTIONS(299), + [aux_sym_conditional_keyword_token1] = ACTIONS(301), + [anon_sym_ATif] = ACTIONS(303), + [anon_sym_ATunless] = ACTIONS(305), + [anon_sym_ATisset] = ACTIONS(307), + [anon_sym_ATempty] = ACTIONS(309), + [anon_sym_ATauth] = ACTIONS(311), + [anon_sym_ATguest] = ACTIONS(313), + [anon_sym_ATproduction] = ACTIONS(315), + [anon_sym_ATenv] = ACTIONS(317), + [anon_sym_ATendenv] = ACTIONS(319), + [anon_sym_AThasSection] = ACTIONS(321), + [anon_sym_ATsectionMissing] = ACTIONS(323), + [anon_sym_ATerror] = ACTIONS(325), + [anon_sym_ATcan] = ACTIONS(327), + [anon_sym_ATcannot] = ACTIONS(329), + [anon_sym_ATcanany] = ACTIONS(331), + [aux_sym__custom_token1] = ACTIONS(333), + [aux_sym__custom_token2] = ACTIONS(335), + [anon_sym_ATswitch] = ACTIONS(337), + [aux_sym_loop_operator_token1] = ACTIONS(339), + [anon_sym_ATfor] = ACTIONS(341), + [anon_sym_ATforeach] = ACTIONS(343), + [anon_sym_ATforelse] = ACTIONS(345), + [anon_sym_ATwhile] = ACTIONS(347), + [anon_sym_ATpersist] = ACTIONS(349), + [anon_sym_ATteleport] = ACTIONS(351), + [anon_sym_ATvolt] = ACTIONS(353), + [aux_sym_text_token1] = ACTIONS(355), + [aux_sym_text_token2] = ACTIONS(355), + [aux_sym_text_token3] = ACTIONS(357), }, [67] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(67), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(407), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [68] = { - [sym__definition] = STATE(580), + [sym__definition] = STATE(1264), [sym_comment] = STATE(68), - [sym_keyword] = STATE(974), - [sym_php_statement] = STATE(974), - [sym__escaped] = STATE(973), - [sym__unescaped] = STATE(973), - [sym__raw] = STATE(973), - [sym__inline_raw] = STATE(972), - [sym__multi_line_raw] = STATE(972), - [sym_attribute] = STATE(974), - [sym__inline_directive] = STATE(974), - [sym__nested_directive] = STATE(974), - [sym_fragment] = STATE(971), - [sym_section] = STATE(971), - [sym_once] = STATE(971), - [sym_verbatim] = STATE(971), - [sym_stack] = STATE(971), - [sym__push] = STATE(970), - [sym__pushOnce] = STATE(970), - [sym__pushIf] = STATE(970), - [sym__prepend] = STATE(970), - [sym__prependOnce] = STATE(970), - [sym_conditional] = STATE(971), - [sym_conditional_keyword] = STATE(580), - [sym__if] = STATE(968), - [sym__unless] = STATE(968), - [sym__isset] = STATE(968), - [sym__empty] = STATE(968), - [sym__auth] = STATE(968), - [sym__guest] = STATE(968), - [sym__production] = STATE(968), - [sym__env] = STATE(968), - [sym__hasSection] = STATE(968), - [sym__sectionMissing] = STATE(968), - [sym__error] = STATE(968), - [sym__custom] = STATE(968), - [sym_switch] = STATE(971), - [sym_loop] = STATE(971), - [sym_loop_operator] = STATE(974), - [sym__for] = STATE(967), - [sym__foreach] = STATE(967), - [sym__forelse] = STATE(967), - [sym__while] = STATE(967), - [sym_livewire] = STATE(971), - [sym__persist] = STATE(965), - [sym__teleport] = STATE(965), - [sym__volt] = STATE(965), - [sym_text] = STATE(964), - [aux_sym__if_statement_directive_body_repeat1] = STATE(87), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(449), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [69] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(890), [sym_comment] = STATE(69), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1136), + [sym_php_statement] = STATE(1136), + [sym__escaped] = STATE(1137), + [sym__unescaped] = STATE(1137), + [sym__raw] = STATE(1137), + [sym__inline_raw] = STATE(1138), + [sym__multi_line_raw] = STATE(1138), + [sym_attribute] = STATE(1136), + [sym__inline_directive] = STATE(1136), + [sym__nested_directive] = STATE(1136), + [sym_fragment] = STATE(1139), + [sym_section] = STATE(1139), + [sym_once] = STATE(1139), + [sym_verbatim] = STATE(1139), + [sym_stack] = STATE(1139), + [sym__push] = STATE(1140), + [sym__pushOnce] = STATE(1140), + [sym__pushIf] = STATE(1140), + [sym__prepend] = STATE(1140), + [sym__prependOnce] = STATE(1140), + [sym_conditional] = STATE(1139), + [sym_conditional_keyword] = STATE(890), + [sym__if] = STATE(1141), + [sym__unless] = STATE(1141), + [sym__isset] = STATE(1141), + [sym__empty] = STATE(1141), + [sym__auth] = STATE(1141), + [sym__guest] = STATE(1141), + [sym__production] = STATE(1141), + [sym__env] = STATE(1141), + [sym__hasSection] = STATE(1141), + [sym__sectionMissing] = STATE(1141), + [sym__error] = STATE(1141), + [sym__can] = STATE(1141), + [sym__cannot] = STATE(1141), + [sym__canany] = STATE(1141), + [sym__custom] = STATE(1141), + [sym_switch] = STATE(1139), + [sym_loop] = STATE(1139), + [sym_loop_operator] = STATE(1136), + [sym__for] = STATE(1142), + [sym__foreach] = STATE(1142), + [sym__forelse] = STATE(1142), + [sym__while] = STATE(1142), + [sym_livewire] = STATE(1139), + [sym__persist] = STATE(1143), + [sym__teleport] = STATE(1143), + [sym__volt] = STATE(1143), + [sym_text] = STATE(1144), + [aux_sym__if_statement_directive_body_repeat1] = STATE(116), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(451), + [anon_sym_LBRACE_LBRACE] = ACTIONS(453), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(455), + [anon_sym_ATphp] = ACTIONS(457), + [aux_sym_attribute_token1] = ACTIONS(459), + [aux_sym__inline_directive_token1] = ACTIONS(461), + [anon_sym_ATfragment] = ACTIONS(463), + [anon_sym_ATsection] = ACTIONS(465), + [anon_sym_ATonce] = ACTIONS(467), + [anon_sym_ATverbatim] = ACTIONS(469), + [anon_sym_ATpush] = ACTIONS(471), + [anon_sym_ATpushOnce] = ACTIONS(473), + [anon_sym_ATpushIf] = ACTIONS(475), + [anon_sym_ATprepend] = ACTIONS(477), + [anon_sym_ATprependOnce] = ACTIONS(479), + [anon_sym_ATelse] = ACTIONS(481), + [aux_sym_conditional_keyword_token1] = ACTIONS(483), + [anon_sym_ATif] = ACTIONS(485), + [anon_sym_ATunless] = ACTIONS(487), + [anon_sym_ATendunless] = ACTIONS(489), + [anon_sym_ATisset] = ACTIONS(491), + [anon_sym_ATempty] = ACTIONS(493), + [anon_sym_ATauth] = ACTIONS(495), + [anon_sym_ATguest] = ACTIONS(497), + [anon_sym_ATproduction] = ACTIONS(499), + [anon_sym_ATenv] = ACTIONS(501), + [anon_sym_AThasSection] = ACTIONS(503), + [anon_sym_ATsectionMissing] = ACTIONS(505), + [anon_sym_ATerror] = ACTIONS(507), + [anon_sym_ATcan] = ACTIONS(509), + [anon_sym_ATcannot] = ACTIONS(511), + [anon_sym_ATcanany] = ACTIONS(513), + [aux_sym__custom_token1] = ACTIONS(515), + [aux_sym__custom_token2] = ACTIONS(517), + [anon_sym_ATswitch] = ACTIONS(519), + [aux_sym_loop_operator_token1] = ACTIONS(521), + [anon_sym_ATfor] = ACTIONS(523), + [anon_sym_ATforeach] = ACTIONS(525), + [anon_sym_ATforelse] = ACTIONS(527), + [anon_sym_ATwhile] = ACTIONS(529), + [anon_sym_ATpersist] = ACTIONS(531), + [anon_sym_ATteleport] = ACTIONS(533), + [anon_sym_ATvolt] = ACTIONS(535), + [aux_sym_text_token1] = ACTIONS(537), + [aux_sym_text_token2] = ACTIONS(537), + [aux_sym_text_token3] = ACTIONS(539), }, [70] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(880), [sym_comment] = STATE(70), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [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(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), - [sym_comment] = STATE(71), - [sym_keyword] = STATE(974), - [sym_php_statement] = STATE(974), - [sym__escaped] = STATE(973), - [sym__unescaped] = STATE(973), - [sym__raw] = STATE(973), - [sym__inline_raw] = STATE(972), - [sym__multi_line_raw] = STATE(972), - [sym_attribute] = STATE(974), - [sym__inline_directive] = STATE(974), - [sym__nested_directive] = STATE(974), - [sym_fragment] = STATE(971), - [sym_section] = STATE(971), - [sym_once] = STATE(971), - [sym_verbatim] = STATE(971), - [sym_stack] = STATE(971), - [sym__push] = STATE(970), - [sym__pushOnce] = STATE(970), - [sym__pushIf] = STATE(970), - [sym__prepend] = STATE(970), - [sym__prependOnce] = STATE(970), - [sym_conditional] = STATE(971), - [sym_conditional_keyword] = STATE(580), - [sym__if] = STATE(968), - [sym__unless] = STATE(968), - [sym__isset] = STATE(968), - [sym__empty] = STATE(968), - [sym__auth] = STATE(968), - [sym__guest] = STATE(968), - [sym__production] = STATE(968), - [sym__env] = STATE(968), - [sym__hasSection] = STATE(968), - [sym__sectionMissing] = STATE(968), - [sym__error] = STATE(968), - [sym__custom] = STATE(968), - [sym_switch] = STATE(971), - [sym_loop] = STATE(971), - [sym_loop_operator] = STATE(974), - [sym__for] = STATE(967), - [sym__foreach] = STATE(967), - [sym__forelse] = STATE(967), - [sym__while] = STATE(967), - [sym_livewire] = STATE(971), - [sym__persist] = STATE(965), - [sym__teleport] = STATE(965), - [sym__volt] = STATE(965), - [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(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), - [sym_comment] = STATE(72), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [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(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), - [sym_comment] = STATE(73), - [sym_keyword] = STATE(774), - [sym_php_statement] = STATE(774), - [sym__escaped] = STATE(772), - [sym__unescaped] = STATE(772), - [sym__raw] = STATE(772), - [sym__inline_raw] = STATE(771), - [sym__multi_line_raw] = STATE(771), - [sym_attribute] = STATE(774), - [sym__inline_directive] = STATE(774), - [sym__nested_directive] = STATE(774), - [sym_fragment] = STATE(770), - [sym_section] = STATE(770), - [sym_once] = STATE(770), - [sym_verbatim] = STATE(770), - [sym_stack] = STATE(770), - [sym__push] = STATE(767), - [sym__pushOnce] = STATE(767), - [sym__pushIf] = STATE(767), - [sym__prepend] = STATE(767), - [sym__prependOnce] = STATE(767), - [sym_conditional] = STATE(770), - [sym_conditional_keyword] = STATE(634), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(770), - [sym_loop] = STATE(770), - [sym_loop_operator] = STATE(774), - [sym__for] = STATE(765), - [sym__foreach] = STATE(765), - [sym__forelse] = STATE(765), - [sym__while] = STATE(765), - [sym_livewire] = STATE(770), - [sym__persist] = STATE(763), - [sym__teleport] = STATE(763), - [sym__volt] = STATE(763), - [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(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), - [sym_comment] = STATE(74), - [sym_keyword] = STATE(704), - [sym_php_statement] = STATE(704), - [sym__escaped] = STATE(703), - [sym__unescaped] = STATE(703), - [sym__raw] = STATE(703), - [sym__inline_raw] = STATE(699), - [sym__multi_line_raw] = STATE(699), - [sym_attribute] = STATE(704), - [sym__inline_directive] = STATE(704), - [sym__nested_directive] = STATE(704), - [sym_fragment] = STATE(698), - [sym_section] = STATE(698), - [sym_once] = STATE(698), - [sym_verbatim] = STATE(698), - [sym_stack] = STATE(698), - [sym__push] = STATE(697), - [sym__pushOnce] = STATE(697), - [sym__pushIf] = STATE(697), - [sym__prepend] = STATE(697), - [sym__prependOnce] = STATE(697), - [sym_conditional] = STATE(698), - [sym_conditional_keyword] = STATE(702), - [sym__if] = STATE(695), - [sym__unless] = STATE(695), - [sym__isset] = STATE(695), - [sym__empty] = STATE(695), - [sym__auth] = STATE(695), - [sym__guest] = STATE(695), - [sym__production] = STATE(695), - [sym__env] = STATE(695), - [sym__hasSection] = STATE(695), - [sym__sectionMissing] = STATE(695), - [sym__error] = STATE(695), - [sym__custom] = STATE(695), - [sym_switch] = STATE(698), - [sym_loop] = STATE(698), - [sym_loop_operator] = STATE(704), - [sym__for] = STATE(694), - [sym__foreach] = STATE(694), - [sym__forelse] = STATE(694), - [sym__while] = STATE(694), - [sym_livewire] = STATE(698), - [sym__persist] = STATE(693), - [sym__teleport] = STATE(693), - [sym__volt] = STATE(693), - [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(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), - [sym_comment] = STATE(75), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [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(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), - [sym_comment] = STATE(76), - [sym_keyword] = STATE(908), - [sym_php_statement] = STATE(908), - [sym__escaped] = STATE(907), - [sym__unescaped] = STATE(907), - [sym__raw] = STATE(907), - [sym__inline_raw] = STATE(905), - [sym__multi_line_raw] = STATE(905), - [sym_attribute] = STATE(908), - [sym__inline_directive] = STATE(908), - [sym__nested_directive] = STATE(908), - [sym_fragment] = STATE(904), - [sym_section] = STATE(904), - [sym_once] = STATE(904), - [sym_verbatim] = STATE(904), - [sym_stack] = STATE(904), - [sym__push] = STATE(902), - [sym__pushOnce] = STATE(902), - [sym__pushIf] = STATE(902), - [sym__prepend] = STATE(902), - [sym__prependOnce] = STATE(902), - [sym_conditional] = STATE(904), - [sym_conditional_keyword] = STATE(495), - [sym__if] = STATE(901), - [sym__unless] = STATE(901), - [sym__isset] = STATE(901), - [sym__empty] = STATE(901), - [sym__auth] = STATE(901), - [sym__guest] = STATE(901), - [sym__production] = STATE(901), - [sym__env] = STATE(901), - [sym__hasSection] = STATE(901), - [sym__sectionMissing] = STATE(901), - [sym__error] = STATE(901), - [sym__custom] = STATE(901), - [sym_switch] = STATE(904), - [sym_loop] = STATE(904), - [sym_loop_operator] = STATE(908), - [sym__for] = STATE(899), - [sym__foreach] = STATE(899), - [sym__forelse] = STATE(899), - [sym__while] = STATE(899), - [sym_livewire] = STATE(904), - [sym__persist] = STATE(898), - [sym__teleport] = STATE(898), - [sym__volt] = STATE(898), - [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(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), - [sym_comment] = STATE(77), - [sym_keyword] = STATE(1067), - [sym_php_statement] = STATE(1067), - [sym__escaped] = STATE(1068), - [sym__unescaped] = STATE(1068), - [sym__raw] = STATE(1068), - [sym__inline_raw] = STATE(1069), - [sym__multi_line_raw] = STATE(1069), - [sym_attribute] = STATE(1067), - [sym__inline_directive] = STATE(1067), - [sym__nested_directive] = STATE(1067), - [sym_fragment] = STATE(1070), - [sym_section] = STATE(1070), - [sym_once] = STATE(1070), - [sym_verbatim] = STATE(1070), - [sym_stack] = STATE(1070), - [sym__push] = STATE(1071), - [sym__pushOnce] = STATE(1071), - [sym__pushIf] = STATE(1071), - [sym__prepend] = STATE(1071), - [sym__prependOnce] = STATE(1071), - [sym_conditional] = STATE(1070), - [sym_conditional_keyword] = STATE(712), - [sym__if] = STATE(1072), - [sym__unless] = STATE(1072), - [sym__isset] = STATE(1072), - [sym__empty] = STATE(1072), - [sym__auth] = STATE(1072), - [sym__guest] = STATE(1072), - [sym__production] = STATE(1072), - [sym__env] = STATE(1072), - [sym__hasSection] = STATE(1072), - [sym__sectionMissing] = STATE(1072), - [sym__error] = STATE(1072), - [sym__custom] = STATE(1072), - [sym_switch] = STATE(1070), - [sym_loop] = STATE(1070), - [sym_loop_operator] = STATE(1067), - [sym__for] = STATE(1073), - [sym__foreach] = STATE(1073), - [sym__forelse] = STATE(1073), - [sym__while] = STATE(1073), - [sym_livewire] = STATE(1070), - [sym__persist] = STATE(1074), - [sym__teleport] = STATE(1074), - [sym__volt] = STATE(1074), - [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(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), - [sym_comment] = STATE(78), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [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(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), - [sym_comment] = STATE(79), - [sym_keyword] = STATE(839), - [sym_php_statement] = STATE(839), - [sym__escaped] = STATE(838), - [sym__unescaped] = STATE(838), - [sym__raw] = STATE(838), + [sym_keyword] = STATE(838), + [sym_php_statement] = STATE(838), + [sym__escaped] = STATE(837), + [sym__unescaped] = STATE(837), + [sym__raw] = STATE(837), [sym__inline_raw] = STATE(836), [sym__multi_line_raw] = STATE(836), - [sym_attribute] = STATE(839), - [sym__inline_directive] = STATE(839), - [sym__nested_directive] = STATE(839), + [sym_attribute] = STATE(838), + [sym__inline_directive] = STATE(838), + [sym__nested_directive] = STATE(838), [sym_fragment] = STATE(835), [sym_section] = STATE(835), [sym_once] = STATE(835), @@ -24398,7 +25924,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__prepend] = STATE(834), [sym__prependOnce] = STATE(834), [sym_conditional] = STATE(835), - [sym_conditional_keyword] = STATE(565), + [sym_conditional_keyword] = STATE(880), [sym__if] = STATE(833), [sym__unless] = STATE(833), [sym__isset] = STATE(833), @@ -24410,173 +25936,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__hasSection] = STATE(833), [sym__sectionMissing] = STATE(833), [sym__error] = STATE(833), + [sym__can] = STATE(833), + [sym__cannot] = STATE(833), + [sym__canany] = STATE(833), [sym__custom] = STATE(833), [sym_switch] = STATE(835), [sym_loop] = STATE(835), - [sym_loop_operator] = STATE(839), - [sym__for] = STATE(832), - [sym__foreach] = STATE(832), - [sym__forelse] = STATE(832), - [sym__while] = STATE(832), + [sym_loop_operator] = STATE(838), + [sym__for] = STATE(831), + [sym__foreach] = STATE(831), + [sym__forelse] = STATE(831), + [sym__while] = STATE(831), [sym_livewire] = STATE(835), - [sym__persist] = STATE(831), - [sym__teleport] = STATE(831), - [sym__volt] = STATE(831), - [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(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), - [sym_comment] = STATE(80), - [sym_keyword] = STATE(1004), - [sym_php_statement] = STATE(1004), - [sym__escaped] = STATE(1005), - [sym__unescaped] = STATE(1005), - [sym__raw] = STATE(1005), - [sym__inline_raw] = STATE(1006), - [sym__multi_line_raw] = STATE(1006), - [sym_attribute] = STATE(1004), - [sym__inline_directive] = STATE(1004), - [sym__nested_directive] = STATE(1004), - [sym_fragment] = STATE(1007), - [sym_section] = STATE(1007), - [sym_once] = STATE(1007), - [sym_verbatim] = STATE(1007), - [sym_stack] = STATE(1007), - [sym__push] = STATE(1008), - [sym__pushOnce] = STATE(1008), - [sym__pushIf] = STATE(1008), - [sym__prepend] = STATE(1008), - [sym__prependOnce] = STATE(1008), - [sym_conditional] = STATE(1007), - [sym_conditional_keyword] = STATE(1002), - [sym__if] = STATE(1009), - [sym__unless] = STATE(1009), - [sym__isset] = STATE(1009), - [sym__empty] = STATE(1009), - [sym__auth] = STATE(1009), - [sym__guest] = STATE(1009), - [sym__production] = STATE(1009), - [sym__env] = STATE(1009), - [sym__hasSection] = STATE(1009), - [sym__sectionMissing] = STATE(1009), - [sym__error] = STATE(1009), - [sym__custom] = STATE(1009), - [sym_switch] = STATE(1007), - [sym_loop] = STATE(1007), - [sym_loop_operator] = STATE(1004), - [sym__for] = STATE(1010), - [sym__foreach] = STATE(1010), - [sym__forelse] = STATE(1010), - [sym__while] = STATE(1010), - [sym_livewire] = STATE(1007), - [sym__persist] = STATE(1011), - [sym__teleport] = STATE(1011), - [sym__volt] = STATE(1011), - [sym_text] = STATE(1012), - [aux_sym__if_statement_directive_body_repeat1] = STATE(101), + [sym__persist] = STATE(829), + [sym__teleport] = STATE(829), + [sym__volt] = STATE(829), + [sym_text] = STATE(828), + [aux_sym__if_statement_directive_body_repeat1] = STATE(71), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [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_ATempty] = ACTIONS(581), + [anon_sym_ATauth] = ACTIONS(583), + [anon_sym_ATguest] = ACTIONS(585), + [anon_sym_ATproduction] = ACTIONS(587), + [anon_sym_ATenv] = ACTIONS(589), + [anon_sym_AThasSection] = ACTIONS(591), + [anon_sym_ATsectionMissing] = ACTIONS(593), + [anon_sym_ATerror] = ACTIONS(595), + [anon_sym_ATcan] = ACTIONS(597), + [anon_sym_ATcannot] = ACTIONS(599), + [anon_sym_ATcanany] = ACTIONS(601), + [anon_sym_ATendcanany] = ACTIONS(319), + [aux_sym__custom_token1] = ACTIONS(603), + [aux_sym__custom_token2] = ACTIONS(605), + [anon_sym_ATswitch] = ACTIONS(607), + [aux_sym_loop_operator_token1] = ACTIONS(609), + [anon_sym_ATfor] = ACTIONS(611), + [anon_sym_ATforeach] = ACTIONS(613), + [anon_sym_ATforelse] = ACTIONS(615), + [anon_sym_ATwhile] = ACTIONS(617), + [anon_sym_ATpersist] = ACTIONS(619), + [anon_sym_ATteleport] = ACTIONS(621), + [anon_sym_ATvolt] = ACTIONS(623), + [aux_sym_text_token1] = ACTIONS(625), + [aux_sym_text_token2] = ACTIONS(625), + [aux_sym_text_token3] = ACTIONS(627), }, - [81] = { - [sym__definition] = STATE(565), - [sym_comment] = STATE(81), - [sym_keyword] = STATE(839), - [sym_php_statement] = STATE(839), - [sym__escaped] = STATE(838), - [sym__unescaped] = STATE(838), - [sym__raw] = STATE(838), + [71] = { + [sym__definition] = STATE(880), + [sym_comment] = STATE(71), + [sym_keyword] = STATE(838), + [sym_php_statement] = STATE(838), + [sym__escaped] = STATE(837), + [sym__unescaped] = STATE(837), + [sym__raw] = STATE(837), [sym__inline_raw] = STATE(836), [sym__multi_line_raw] = STATE(836), - [sym_attribute] = STATE(839), - [sym__inline_directive] = STATE(839), - [sym__nested_directive] = STATE(839), + [sym_attribute] = STATE(838), + [sym__inline_directive] = STATE(838), + [sym__nested_directive] = STATE(838), [sym_fragment] = STATE(835), [sym_section] = STATE(835), [sym_once] = STATE(835), @@ -24588,7 +26025,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__prepend] = STATE(834), [sym__prependOnce] = STATE(834), [sym_conditional] = STATE(835), - [sym_conditional_keyword] = STATE(565), + [sym_conditional_keyword] = STATE(880), [sym__if] = STATE(833), [sym__unless] = STATE(833), [sym__isset] = STATE(833), @@ -24600,173 +26037,690 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__hasSection] = STATE(833), [sym__sectionMissing] = STATE(833), [sym__error] = STATE(833), + [sym__can] = STATE(833), + [sym__cannot] = STATE(833), + [sym__canany] = STATE(833), [sym__custom] = STATE(833), [sym_switch] = STATE(835), [sym_loop] = STATE(835), - [sym_loop_operator] = STATE(839), - [sym__for] = STATE(832), - [sym__foreach] = STATE(832), - [sym__forelse] = STATE(832), - [sym__while] = STATE(832), + [sym_loop_operator] = STATE(838), + [sym__for] = STATE(831), + [sym__foreach] = STATE(831), + [sym__forelse] = STATE(831), + [sym__while] = STATE(831), [sym_livewire] = STATE(835), - [sym__persist] = STATE(831), - [sym__teleport] = STATE(831), - [sym__volt] = STATE(831), - [sym_text] = STATE(829), - [aux_sym__if_statement_directive_body_repeat1] = STATE(83), + [sym__persist] = STATE(829), + [sym__teleport] = STATE(829), + [sym__volt] = STATE(829), + [sym_text] = STATE(828), + [aux_sym__if_statement_directive_body_repeat1] = STATE(78), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [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_ATempty] = ACTIONS(581), + [anon_sym_ATauth] = ACTIONS(583), + [anon_sym_ATguest] = ACTIONS(585), + [anon_sym_ATproduction] = ACTIONS(587), + [anon_sym_ATenv] = ACTIONS(589), + [anon_sym_AThasSection] = ACTIONS(591), + [anon_sym_ATsectionMissing] = ACTIONS(593), + [anon_sym_ATerror] = ACTIONS(595), + [anon_sym_ATcan] = ACTIONS(597), + [anon_sym_ATcannot] = ACTIONS(599), + [anon_sym_ATcanany] = ACTIONS(601), + [anon_sym_ATendcanany] = ACTIONS(489), + [aux_sym__custom_token1] = ACTIONS(603), + [aux_sym__custom_token2] = ACTIONS(605), + [anon_sym_ATswitch] = ACTIONS(607), + [aux_sym_loop_operator_token1] = ACTIONS(609), + [anon_sym_ATfor] = ACTIONS(611), + [anon_sym_ATforeach] = ACTIONS(613), + [anon_sym_ATforelse] = ACTIONS(615), + [anon_sym_ATwhile] = ACTIONS(617), + [anon_sym_ATpersist] = ACTIONS(619), + [anon_sym_ATteleport] = ACTIONS(621), + [anon_sym_ATvolt] = ACTIONS(623), + [aux_sym_text_token1] = ACTIONS(625), + [aux_sym_text_token2] = ACTIONS(625), + [aux_sym_text_token3] = ACTIONS(627), }, - [82] = { - [sym__definition] = STATE(1065), - [sym_comment] = STATE(82), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [72] = { + [sym__definition] = STATE(998), + [sym_comment] = STATE(72), + [sym_keyword] = STATE(1266), + [sym_php_statement] = STATE(1266), + [sym__escaped] = STATE(1267), + [sym__unescaped] = STATE(1267), + [sym__raw] = STATE(1267), + [sym__inline_raw] = STATE(1268), + [sym__multi_line_raw] = STATE(1268), + [sym_attribute] = STATE(1266), + [sym__inline_directive] = STATE(1266), + [sym__nested_directive] = STATE(1266), + [sym_fragment] = STATE(1269), + [sym_section] = STATE(1269), + [sym_once] = STATE(1269), + [sym_verbatim] = STATE(1269), + [sym_stack] = STATE(1269), + [sym__push] = STATE(1270), + [sym__pushOnce] = STATE(1270), + [sym__pushIf] = STATE(1270), + [sym__prepend] = STATE(1270), + [sym__prependOnce] = STATE(1270), + [sym_conditional] = STATE(1269), + [sym_conditional_keyword] = STATE(998), + [sym__if] = STATE(1271), + [sym__unless] = STATE(1271), + [sym__isset] = STATE(1271), + [sym__empty] = STATE(1271), + [sym__auth] = STATE(1271), + [sym__guest] = STATE(1271), + [sym__production] = STATE(1271), + [sym__env] = STATE(1271), + [sym__hasSection] = STATE(1271), + [sym__sectionMissing] = STATE(1271), + [sym__error] = STATE(1271), + [sym__can] = STATE(1271), + [sym__cannot] = STATE(1271), + [sym__canany] = STATE(1271), + [sym__custom] = STATE(1271), + [sym_switch] = STATE(1269), + [sym_loop] = STATE(1269), + [sym_loop_operator] = STATE(1266), + [sym__for] = STATE(1272), + [sym__foreach] = STATE(1272), + [sym__forelse] = STATE(1272), + [sym__while] = STATE(1272), + [sym_livewire] = STATE(1269), + [sym__persist] = STATE(1273), + [sym__teleport] = STATE(1273), + [sym__volt] = STATE(1273), + [sym_text] = STATE(1274), + [aux_sym__if_statement_directive_body_repeat1] = STATE(91), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(629), + [anon_sym_LBRACE_LBRACE] = ACTIONS(631), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(633), + [anon_sym_ATphp] = ACTIONS(635), + [aux_sym_attribute_token1] = ACTIONS(637), + [aux_sym__inline_directive_token1] = ACTIONS(639), + [anon_sym_ATfragment] = ACTIONS(641), + [anon_sym_ATsection] = ACTIONS(643), + [anon_sym_ATonce] = ACTIONS(645), + [anon_sym_ATverbatim] = ACTIONS(647), + [anon_sym_ATpush] = ACTIONS(649), + [anon_sym_ATpushOnce] = ACTIONS(651), + [anon_sym_ATpushIf] = ACTIONS(653), + [anon_sym_ATprepend] = ACTIONS(655), + [anon_sym_ATprependOnce] = ACTIONS(657), + [anon_sym_ATelse] = ACTIONS(659), + [aux_sym_conditional_keyword_token1] = ACTIONS(661), + [anon_sym_ATif] = ACTIONS(663), + [anon_sym_ATunless] = ACTIONS(665), + [anon_sym_ATisset] = ACTIONS(667), + [anon_sym_ATempty] = ACTIONS(669), + [anon_sym_ATendempty] = ACTIONS(489), + [anon_sym_ATauth] = ACTIONS(671), + [anon_sym_ATguest] = ACTIONS(673), + [anon_sym_ATproduction] = ACTIONS(675), + [anon_sym_ATenv] = ACTIONS(677), + [anon_sym_AThasSection] = ACTIONS(679), + [anon_sym_ATsectionMissing] = ACTIONS(681), + [anon_sym_ATerror] = ACTIONS(683), + [anon_sym_ATcan] = ACTIONS(685), + [anon_sym_ATcannot] = ACTIONS(687), + [anon_sym_ATcanany] = ACTIONS(689), + [aux_sym__custom_token1] = ACTIONS(691), + [aux_sym__custom_token2] = ACTIONS(693), + [anon_sym_ATswitch] = ACTIONS(695), + [aux_sym_loop_operator_token1] = ACTIONS(697), + [anon_sym_ATfor] = ACTIONS(699), + [anon_sym_ATforeach] = ACTIONS(701), + [anon_sym_ATforelse] = ACTIONS(703), + [anon_sym_ATwhile] = ACTIONS(705), + [anon_sym_ATpersist] = ACTIONS(707), + [anon_sym_ATteleport] = ACTIONS(709), + [anon_sym_ATvolt] = ACTIONS(711), + [aux_sym_text_token1] = ACTIONS(713), + [aux_sym_text_token2] = ACTIONS(713), + [aux_sym_text_token3] = ACTIONS(715), }, - [83] = { - [sym__definition] = STATE(565), - [sym_comment] = STATE(83), - [sym_keyword] = STATE(839), - [sym_php_statement] = STATE(839), - [sym__escaped] = STATE(838), - [sym__unescaped] = STATE(838), - [sym__raw] = STATE(838), + [73] = { + [sym__definition] = STATE(735), + [sym_comment] = STATE(73), + [sym_keyword] = STATE(982), + [sym_php_statement] = STATE(982), + [sym__escaped] = STATE(981), + [sym__unescaped] = STATE(981), + [sym__raw] = STATE(981), + [sym__inline_raw] = STATE(980), + [sym__multi_line_raw] = STATE(980), + [sym_attribute] = STATE(982), + [sym__inline_directive] = STATE(982), + [sym__nested_directive] = STATE(982), + [sym_fragment] = STATE(979), + [sym_section] = STATE(979), + [sym_once] = STATE(979), + [sym_verbatim] = STATE(979), + [sym_stack] = STATE(979), + [sym__push] = STATE(978), + [sym__pushOnce] = STATE(978), + [sym__pushIf] = STATE(978), + [sym__prepend] = STATE(978), + [sym__prependOnce] = STATE(978), + [sym_conditional] = STATE(979), + [sym_conditional_keyword] = STATE(735), + [sym__if] = STATE(977), + [sym__unless] = STATE(977), + [sym__isset] = STATE(977), + [sym__empty] = STATE(977), + [sym__auth] = STATE(977), + [sym__guest] = STATE(977), + [sym__production] = STATE(977), + [sym__env] = STATE(977), + [sym__hasSection] = STATE(977), + [sym__sectionMissing] = STATE(977), + [sym__error] = STATE(977), + [sym__can] = STATE(977), + [sym__cannot] = STATE(977), + [sym__canany] = STATE(977), + [sym__custom] = STATE(977), + [sym_switch] = STATE(979), + [sym_loop] = STATE(979), + [sym_loop_operator] = STATE(982), + [sym__for] = STATE(976), + [sym__foreach] = STATE(976), + [sym__forelse] = STATE(976), + [sym__while] = STATE(976), + [sym_livewire] = STATE(979), + [sym__persist] = STATE(975), + [sym__teleport] = STATE(975), + [sym__volt] = STATE(975), + [sym_text] = STATE(973), + [aux_sym__if_statement_directive_body_repeat1] = STATE(73), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(717), + [anon_sym_LBRACE_LBRACE] = ACTIONS(720), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(723), + [anon_sym_ATphp] = ACTIONS(726), + [aux_sym_attribute_token1] = ACTIONS(729), + [aux_sym__inline_directive_token1] = ACTIONS(732), + [anon_sym_ATfragment] = ACTIONS(735), + [anon_sym_ATsection] = ACTIONS(738), + [anon_sym_ATonce] = ACTIONS(741), + [anon_sym_ATverbatim] = ACTIONS(744), + [anon_sym_ATpush] = ACTIONS(747), + [anon_sym_ATpushOnce] = ACTIONS(750), + [anon_sym_ATpushIf] = ACTIONS(753), + [anon_sym_ATprepend] = ACTIONS(756), + [anon_sym_ATprependOnce] = ACTIONS(759), + [anon_sym_ATelse] = ACTIONS(762), + [aux_sym_conditional_keyword_token1] = ACTIONS(765), + [anon_sym_ATif] = ACTIONS(768), + [anon_sym_ATunless] = ACTIONS(771), + [anon_sym_ATisset] = ACTIONS(774), + [anon_sym_ATempty] = ACTIONS(777), + [anon_sym_ATauth] = ACTIONS(780), + [anon_sym_ATguest] = ACTIONS(783), + [anon_sym_ATproduction] = ACTIONS(786), + [anon_sym_ATenv] = ACTIONS(789), + [anon_sym_AThasSection] = ACTIONS(792), + [anon_sym_ATsectionMissing] = ACTIONS(795), + [anon_sym_ATerror] = ACTIONS(798), + [anon_sym_ATcan] = ACTIONS(801), + [anon_sym_ATendcan] = ACTIONS(804), + [anon_sym_ATcannot] = ACTIONS(806), + [anon_sym_ATcanany] = ACTIONS(809), + [aux_sym__custom_token1] = ACTIONS(812), + [aux_sym__custom_token2] = ACTIONS(815), + [anon_sym_ATswitch] = ACTIONS(818), + [aux_sym_loop_operator_token1] = ACTIONS(821), + [anon_sym_ATfor] = ACTIONS(824), + [anon_sym_ATforeach] = ACTIONS(827), + [anon_sym_ATforelse] = ACTIONS(830), + [anon_sym_ATwhile] = ACTIONS(833), + [anon_sym_ATpersist] = ACTIONS(836), + [anon_sym_ATteleport] = ACTIONS(839), + [anon_sym_ATvolt] = ACTIONS(842), + [aux_sym_text_token1] = ACTIONS(845), + [aux_sym_text_token2] = ACTIONS(845), + [aux_sym_text_token3] = ACTIONS(848), + }, + [74] = { + [sym__definition] = STATE(654), + [sym_comment] = STATE(74), + [sym_keyword] = STATE(763), + [sym_php_statement] = STATE(763), + [sym__escaped] = STATE(762), + [sym__unescaped] = STATE(762), + [sym__raw] = STATE(762), + [sym__inline_raw] = STATE(761), + [sym__multi_line_raw] = STATE(761), + [sym_attribute] = STATE(763), + [sym__inline_directive] = STATE(763), + [sym__nested_directive] = STATE(763), + [sym_fragment] = STATE(760), + [sym_section] = STATE(760), + [sym_once] = STATE(760), + [sym_verbatim] = STATE(760), + [sym_stack] = STATE(760), + [sym__push] = STATE(758), + [sym__pushOnce] = STATE(758), + [sym__pushIf] = STATE(758), + [sym__prepend] = STATE(758), + [sym__prependOnce] = STATE(758), + [sym_conditional] = STATE(760), + [sym_conditional_keyword] = STATE(654), + [sym__if] = STATE(756), + [sym__unless] = STATE(756), + [sym__isset] = STATE(756), + [sym__empty] = STATE(756), + [sym__auth] = STATE(756), + [sym__guest] = STATE(756), + [sym__production] = STATE(756), + [sym__env] = STATE(756), + [sym__hasSection] = STATE(756), + [sym__sectionMissing] = STATE(756), + [sym__error] = STATE(756), + [sym__can] = STATE(756), + [sym__cannot] = STATE(756), + [sym__canany] = STATE(756), + [sym__custom] = STATE(756), + [sym_switch] = STATE(760), + [sym_loop] = STATE(760), + [sym_loop_operator] = STATE(763), + [sym__for] = STATE(755), + [sym__foreach] = STATE(755), + [sym__forelse] = STATE(755), + [sym__while] = STATE(755), + [sym_livewire] = STATE(760), + [sym__persist] = STATE(754), + [sym__teleport] = STATE(754), + [sym__volt] = STATE(754), + [sym_text] = STATE(752), + [aux_sym__if_statement_directive_body_repeat1] = STATE(75), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(851), + [anon_sym_LBRACE_LBRACE] = ACTIONS(853), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(855), + [anon_sym_ATphp] = ACTIONS(857), + [aux_sym_attribute_token1] = ACTIONS(859), + [aux_sym__inline_directive_token1] = ACTIONS(861), + [anon_sym_ATfragment] = ACTIONS(863), + [anon_sym_ATsection] = ACTIONS(865), + [anon_sym_ATonce] = ACTIONS(867), + [anon_sym_ATverbatim] = ACTIONS(869), + [anon_sym_ATpush] = ACTIONS(871), + [anon_sym_ATpushOnce] = ACTIONS(873), + [anon_sym_ATpushIf] = ACTIONS(875), + [anon_sym_ATprepend] = ACTIONS(877), + [anon_sym_ATprependOnce] = ACTIONS(879), + [anon_sym_ATelse] = ACTIONS(881), + [aux_sym_conditional_keyword_token1] = ACTIONS(883), + [anon_sym_ATif] = ACTIONS(885), + [anon_sym_ATunless] = ACTIONS(887), + [anon_sym_ATisset] = ACTIONS(889), + [anon_sym_ATempty] = ACTIONS(891), + [anon_sym_ATauth] = ACTIONS(893), + [anon_sym_ATguest] = ACTIONS(895), + [anon_sym_ATproduction] = ACTIONS(897), + [anon_sym_ATenv] = ACTIONS(899), + [anon_sym_AThasSection] = ACTIONS(901), + [anon_sym_ATsectionMissing] = ACTIONS(903), + [anon_sym_ATerror] = ACTIONS(905), + [anon_sym_ATcan] = ACTIONS(907), + [anon_sym_ATcannot] = ACTIONS(909), + [anon_sym_ATcanany] = ACTIONS(911), + [aux_sym__custom_token1] = ACTIONS(913), + [aux_sym__custom_token2] = ACTIONS(915), + [aux_sym__custom_token3] = ACTIONS(319), + [anon_sym_ATswitch] = ACTIONS(917), + [aux_sym_loop_operator_token1] = ACTIONS(919), + [anon_sym_ATfor] = ACTIONS(921), + [anon_sym_ATforeach] = ACTIONS(923), + [anon_sym_ATforelse] = ACTIONS(925), + [anon_sym_ATwhile] = ACTIONS(927), + [anon_sym_ATpersist] = ACTIONS(929), + [anon_sym_ATteleport] = ACTIONS(931), + [anon_sym_ATvolt] = ACTIONS(933), + [aux_sym_text_token1] = ACTIONS(935), + [aux_sym_text_token2] = ACTIONS(935), + [aux_sym_text_token3] = ACTIONS(937), + }, + [75] = { + [sym__definition] = STATE(654), + [sym_comment] = STATE(75), + [sym_keyword] = STATE(763), + [sym_php_statement] = STATE(763), + [sym__escaped] = STATE(762), + [sym__unescaped] = STATE(762), + [sym__raw] = STATE(762), + [sym__inline_raw] = STATE(761), + [sym__multi_line_raw] = STATE(761), + [sym_attribute] = STATE(763), + [sym__inline_directive] = STATE(763), + [sym__nested_directive] = STATE(763), + [sym_fragment] = STATE(760), + [sym_section] = STATE(760), + [sym_once] = STATE(760), + [sym_verbatim] = STATE(760), + [sym_stack] = STATE(760), + [sym__push] = STATE(758), + [sym__pushOnce] = STATE(758), + [sym__pushIf] = STATE(758), + [sym__prepend] = STATE(758), + [sym__prependOnce] = STATE(758), + [sym_conditional] = STATE(760), + [sym_conditional_keyword] = STATE(654), + [sym__if] = STATE(756), + [sym__unless] = STATE(756), + [sym__isset] = STATE(756), + [sym__empty] = STATE(756), + [sym__auth] = STATE(756), + [sym__guest] = STATE(756), + [sym__production] = STATE(756), + [sym__env] = STATE(756), + [sym__hasSection] = STATE(756), + [sym__sectionMissing] = STATE(756), + [sym__error] = STATE(756), + [sym__can] = STATE(756), + [sym__cannot] = STATE(756), + [sym__canany] = STATE(756), + [sym__custom] = STATE(756), + [sym_switch] = STATE(760), + [sym_loop] = STATE(760), + [sym_loop_operator] = STATE(763), + [sym__for] = STATE(755), + [sym__foreach] = STATE(755), + [sym__forelse] = STATE(755), + [sym__while] = STATE(755), + [sym_livewire] = STATE(760), + [sym__persist] = STATE(754), + [sym__teleport] = STATE(754), + [sym__volt] = STATE(754), + [sym_text] = STATE(752), + [aux_sym__if_statement_directive_body_repeat1] = STATE(79), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(851), + [anon_sym_LBRACE_LBRACE] = ACTIONS(853), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(855), + [anon_sym_ATphp] = ACTIONS(857), + [aux_sym_attribute_token1] = ACTIONS(859), + [aux_sym__inline_directive_token1] = ACTIONS(861), + [anon_sym_ATfragment] = ACTIONS(863), + [anon_sym_ATsection] = ACTIONS(865), + [anon_sym_ATonce] = ACTIONS(867), + [anon_sym_ATverbatim] = ACTIONS(869), + [anon_sym_ATpush] = ACTIONS(871), + [anon_sym_ATpushOnce] = ACTIONS(873), + [anon_sym_ATpushIf] = ACTIONS(875), + [anon_sym_ATprepend] = ACTIONS(877), + [anon_sym_ATprependOnce] = ACTIONS(879), + [anon_sym_ATelse] = ACTIONS(881), + [aux_sym_conditional_keyword_token1] = ACTIONS(883), + [anon_sym_ATif] = ACTIONS(885), + [anon_sym_ATunless] = ACTIONS(887), + [anon_sym_ATisset] = ACTIONS(889), + [anon_sym_ATempty] = ACTIONS(891), + [anon_sym_ATauth] = ACTIONS(893), + [anon_sym_ATguest] = ACTIONS(895), + [anon_sym_ATproduction] = ACTIONS(897), + [anon_sym_ATenv] = ACTIONS(899), + [anon_sym_AThasSection] = ACTIONS(901), + [anon_sym_ATsectionMissing] = ACTIONS(903), + [anon_sym_ATerror] = ACTIONS(905), + [anon_sym_ATcan] = ACTIONS(907), + [anon_sym_ATcannot] = ACTIONS(909), + [anon_sym_ATcanany] = ACTIONS(911), + [aux_sym__custom_token1] = ACTIONS(913), + [aux_sym__custom_token2] = ACTIONS(915), + [aux_sym__custom_token3] = ACTIONS(489), + [anon_sym_ATswitch] = ACTIONS(917), + [aux_sym_loop_operator_token1] = ACTIONS(919), + [anon_sym_ATfor] = ACTIONS(921), + [anon_sym_ATforeach] = ACTIONS(923), + [anon_sym_ATforelse] = ACTIONS(925), + [anon_sym_ATwhile] = ACTIONS(927), + [anon_sym_ATpersist] = ACTIONS(929), + [anon_sym_ATteleport] = ACTIONS(931), + [anon_sym_ATvolt] = ACTIONS(933), + [aux_sym_text_token1] = ACTIONS(935), + [aux_sym_text_token2] = ACTIONS(935), + [aux_sym_text_token3] = ACTIONS(937), + }, + [76] = { + [sym__definition] = STATE(808), + [sym_comment] = STATE(76), + [sym_keyword] = STATE(910), + [sym_php_statement] = STATE(910), + [sym__escaped] = STATE(909), + [sym__unescaped] = STATE(909), + [sym__raw] = STATE(909), + [sym__inline_raw] = STATE(908), + [sym__multi_line_raw] = STATE(908), + [sym_attribute] = STATE(910), + [sym__inline_directive] = STATE(910), + [sym__nested_directive] = STATE(910), + [sym_fragment] = STATE(907), + [sym_section] = STATE(907), + [sym_once] = STATE(907), + [sym_verbatim] = STATE(907), + [sym_stack] = STATE(907), + [sym__push] = STATE(906), + [sym__pushOnce] = STATE(906), + [sym__pushIf] = STATE(906), + [sym__prepend] = STATE(906), + [sym__prependOnce] = STATE(906), + [sym_conditional] = STATE(907), + [sym_conditional_keyword] = STATE(808), + [sym__if] = STATE(905), + [sym__unless] = STATE(905), + [sym__isset] = STATE(905), + [sym__empty] = STATE(905), + [sym__auth] = STATE(905), + [sym__guest] = STATE(905), + [sym__production] = STATE(905), + [sym__env] = STATE(905), + [sym__hasSection] = STATE(905), + [sym__sectionMissing] = STATE(905), + [sym__error] = STATE(905), + [sym__can] = STATE(905), + [sym__cannot] = STATE(905), + [sym__canany] = STATE(905), + [sym__custom] = STATE(905), + [sym_switch] = STATE(907), + [sym_loop] = STATE(907), + [sym_loop_operator] = STATE(910), + [sym__for] = STATE(904), + [sym__foreach] = STATE(904), + [sym__forelse] = STATE(904), + [sym__while] = STATE(904), + [sym_livewire] = STATE(907), + [sym__persist] = STATE(902), + [sym__teleport] = STATE(902), + [sym__volt] = STATE(902), + [sym_text] = STATE(900), + [aux_sym__if_statement_directive_body_repeat1] = STATE(76), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(939), + [anon_sym_LBRACE_LBRACE] = ACTIONS(942), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(945), + [anon_sym_ATphp] = ACTIONS(948), + [aux_sym_attribute_token1] = ACTIONS(951), + [aux_sym__inline_directive_token1] = ACTIONS(954), + [anon_sym_ATfragment] = ACTIONS(957), + [anon_sym_ATsection] = ACTIONS(960), + [anon_sym_ATonce] = ACTIONS(963), + [anon_sym_ATverbatim] = ACTIONS(966), + [anon_sym_ATpush] = ACTIONS(969), + [anon_sym_ATpushOnce] = ACTIONS(972), + [anon_sym_ATpushIf] = ACTIONS(975), + [anon_sym_ATprepend] = ACTIONS(978), + [anon_sym_ATprependOnce] = ACTIONS(981), + [anon_sym_ATelse] = ACTIONS(984), + [aux_sym_conditional_keyword_token1] = ACTIONS(987), + [anon_sym_ATif] = ACTIONS(990), + [anon_sym_ATunless] = ACTIONS(993), + [anon_sym_ATisset] = ACTIONS(996), + [anon_sym_ATempty] = ACTIONS(999), + [anon_sym_ATauth] = ACTIONS(1002), + [anon_sym_ATguest] = ACTIONS(1005), + [anon_sym_ATproduction] = ACTIONS(1008), + [anon_sym_ATenv] = ACTIONS(1011), + [anon_sym_AThasSection] = ACTIONS(1014), + [anon_sym_ATsectionMissing] = ACTIONS(1017), + [anon_sym_ATerror] = ACTIONS(1020), + [anon_sym_ATcan] = ACTIONS(1023), + [anon_sym_ATcannot] = ACTIONS(1026), + [anon_sym_ATendcannot] = ACTIONS(804), + [anon_sym_ATcanany] = ACTIONS(1029), + [aux_sym__custom_token1] = ACTIONS(1032), + [aux_sym__custom_token2] = ACTIONS(1035), + [anon_sym_ATswitch] = ACTIONS(1038), + [aux_sym_loop_operator_token1] = ACTIONS(1041), + [anon_sym_ATfor] = ACTIONS(1044), + [anon_sym_ATforeach] = ACTIONS(1047), + [anon_sym_ATforelse] = ACTIONS(1050), + [anon_sym_ATwhile] = ACTIONS(1053), + [anon_sym_ATpersist] = ACTIONS(1056), + [anon_sym_ATteleport] = ACTIONS(1059), + [anon_sym_ATvolt] = ACTIONS(1062), + [aux_sym_text_token1] = ACTIONS(1065), + [aux_sym_text_token2] = ACTIONS(1065), + [aux_sym_text_token3] = ACTIONS(1068), + }, + [77] = { + [sym__definition] = STATE(998), + [sym_comment] = STATE(77), + [sym_keyword] = STATE(1266), + [sym_php_statement] = STATE(1266), + [sym__escaped] = STATE(1267), + [sym__unescaped] = STATE(1267), + [sym__raw] = STATE(1267), + [sym__inline_raw] = STATE(1268), + [sym__multi_line_raw] = STATE(1268), + [sym_attribute] = STATE(1266), + [sym__inline_directive] = STATE(1266), + [sym__nested_directive] = STATE(1266), + [sym_fragment] = STATE(1269), + [sym_section] = STATE(1269), + [sym_once] = STATE(1269), + [sym_verbatim] = STATE(1269), + [sym_stack] = STATE(1269), + [sym__push] = STATE(1270), + [sym__pushOnce] = STATE(1270), + [sym__pushIf] = STATE(1270), + [sym__prepend] = STATE(1270), + [sym__prependOnce] = STATE(1270), + [sym_conditional] = STATE(1269), + [sym_conditional_keyword] = STATE(998), + [sym__if] = STATE(1271), + [sym__unless] = STATE(1271), + [sym__isset] = STATE(1271), + [sym__empty] = STATE(1271), + [sym__auth] = STATE(1271), + [sym__guest] = STATE(1271), + [sym__production] = STATE(1271), + [sym__env] = STATE(1271), + [sym__hasSection] = STATE(1271), + [sym__sectionMissing] = STATE(1271), + [sym__error] = STATE(1271), + [sym__can] = STATE(1271), + [sym__cannot] = STATE(1271), + [sym__canany] = STATE(1271), + [sym__custom] = STATE(1271), + [sym_switch] = STATE(1269), + [sym_loop] = STATE(1269), + [sym_loop_operator] = STATE(1266), + [sym__for] = STATE(1272), + [sym__foreach] = STATE(1272), + [sym__forelse] = STATE(1272), + [sym__while] = STATE(1272), + [sym_livewire] = STATE(1269), + [sym__persist] = STATE(1273), + [sym__teleport] = STATE(1273), + [sym__volt] = STATE(1273), + [sym_text] = STATE(1274), + [aux_sym__if_statement_directive_body_repeat1] = STATE(72), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(629), + [anon_sym_LBRACE_LBRACE] = ACTIONS(631), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(633), + [anon_sym_ATphp] = ACTIONS(635), + [aux_sym_attribute_token1] = ACTIONS(637), + [aux_sym__inline_directive_token1] = ACTIONS(639), + [anon_sym_ATfragment] = ACTIONS(641), + [anon_sym_ATsection] = ACTIONS(643), + [anon_sym_ATonce] = ACTIONS(645), + [anon_sym_ATverbatim] = ACTIONS(647), + [anon_sym_ATpush] = ACTIONS(649), + [anon_sym_ATpushOnce] = ACTIONS(651), + [anon_sym_ATpushIf] = ACTIONS(653), + [anon_sym_ATprepend] = ACTIONS(655), + [anon_sym_ATprependOnce] = ACTIONS(657), + [anon_sym_ATelse] = ACTIONS(659), + [aux_sym_conditional_keyword_token1] = ACTIONS(661), + [anon_sym_ATif] = ACTIONS(663), + [anon_sym_ATunless] = ACTIONS(665), + [anon_sym_ATisset] = ACTIONS(667), + [anon_sym_ATempty] = ACTIONS(669), + [anon_sym_ATendempty] = ACTIONS(319), + [anon_sym_ATauth] = ACTIONS(671), + [anon_sym_ATguest] = ACTIONS(673), + [anon_sym_ATproduction] = ACTIONS(675), + [anon_sym_ATenv] = ACTIONS(677), + [anon_sym_AThasSection] = ACTIONS(679), + [anon_sym_ATsectionMissing] = ACTIONS(681), + [anon_sym_ATerror] = ACTIONS(683), + [anon_sym_ATcan] = ACTIONS(685), + [anon_sym_ATcannot] = ACTIONS(687), + [anon_sym_ATcanany] = ACTIONS(689), + [aux_sym__custom_token1] = ACTIONS(691), + [aux_sym__custom_token2] = ACTIONS(693), + [anon_sym_ATswitch] = ACTIONS(695), + [aux_sym_loop_operator_token1] = ACTIONS(697), + [anon_sym_ATfor] = ACTIONS(699), + [anon_sym_ATforeach] = ACTIONS(701), + [anon_sym_ATforelse] = ACTIONS(703), + [anon_sym_ATwhile] = ACTIONS(705), + [anon_sym_ATpersist] = ACTIONS(707), + [anon_sym_ATteleport] = ACTIONS(709), + [anon_sym_ATvolt] = ACTIONS(711), + [aux_sym_text_token1] = ACTIONS(713), + [aux_sym_text_token2] = ACTIONS(713), + [aux_sym_text_token3] = ACTIONS(715), + }, + [78] = { + [sym__definition] = STATE(880), + [sym_comment] = STATE(78), + [sym_keyword] = STATE(838), + [sym_php_statement] = STATE(838), + [sym__escaped] = STATE(837), + [sym__unescaped] = STATE(837), + [sym__raw] = STATE(837), [sym__inline_raw] = STATE(836), [sym__multi_line_raw] = STATE(836), - [sym_attribute] = STATE(839), - [sym__inline_directive] = STATE(839), - [sym__nested_directive] = STATE(839), + [sym_attribute] = STATE(838), + [sym__inline_directive] = STATE(838), + [sym__nested_directive] = STATE(838), [sym_fragment] = STATE(835), [sym_section] = STATE(835), [sym_once] = STATE(835), @@ -24778,7 +26732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__prepend] = STATE(834), [sym__prependOnce] = STATE(834), [sym_conditional] = STATE(835), - [sym_conditional_keyword] = STATE(565), + [sym_conditional_keyword] = STATE(880), [sym__if] = STATE(833), [sym__unless] = STATE(833), [sym__isset] = STATE(833), @@ -24790,27850 +26744,30417 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__hasSection] = STATE(833), [sym__sectionMissing] = STATE(833), [sym__error] = STATE(833), + [sym__can] = STATE(833), + [sym__cannot] = STATE(833), + [sym__canany] = STATE(833), [sym__custom] = STATE(833), [sym_switch] = STATE(835), [sym_loop] = STATE(835), - [sym_loop_operator] = STATE(839), - [sym__for] = STATE(832), - [sym__foreach] = STATE(832), - [sym__forelse] = STATE(832), - [sym__while] = STATE(832), + [sym_loop_operator] = STATE(838), + [sym__for] = STATE(831), + [sym__foreach] = STATE(831), + [sym__forelse] = STATE(831), + [sym__while] = STATE(831), [sym_livewire] = STATE(835), - [sym__persist] = STATE(831), - [sym__teleport] = STATE(831), - [sym__volt] = STATE(831), - [sym_text] = STATE(829), + [sym__persist] = STATE(829), + [sym__teleport] = STATE(829), + [sym__volt] = STATE(829), + [sym_text] = STATE(828), + [aux_sym__if_statement_directive_body_repeat1] = STATE(78), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(1071), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1074), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1077), + [anon_sym_ATphp] = ACTIONS(1080), + [aux_sym_attribute_token1] = ACTIONS(1083), + [aux_sym__inline_directive_token1] = ACTIONS(1086), + [anon_sym_ATfragment] = ACTIONS(1089), + [anon_sym_ATsection] = ACTIONS(1092), + [anon_sym_ATonce] = ACTIONS(1095), + [anon_sym_ATverbatim] = ACTIONS(1098), + [anon_sym_ATpush] = ACTIONS(1101), + [anon_sym_ATpushOnce] = ACTIONS(1104), + [anon_sym_ATpushIf] = ACTIONS(1107), + [anon_sym_ATprepend] = ACTIONS(1110), + [anon_sym_ATprependOnce] = ACTIONS(1113), + [anon_sym_ATelse] = ACTIONS(1116), + [aux_sym_conditional_keyword_token1] = ACTIONS(1119), + [anon_sym_ATif] = ACTIONS(1122), + [anon_sym_ATunless] = ACTIONS(1125), + [anon_sym_ATisset] = ACTIONS(1128), + [anon_sym_ATempty] = ACTIONS(1131), + [anon_sym_ATauth] = ACTIONS(1134), + [anon_sym_ATguest] = ACTIONS(1137), + [anon_sym_ATproduction] = ACTIONS(1140), + [anon_sym_ATenv] = ACTIONS(1143), + [anon_sym_AThasSection] = ACTIONS(1146), + [anon_sym_ATsectionMissing] = ACTIONS(1149), + [anon_sym_ATerror] = ACTIONS(1152), + [anon_sym_ATcan] = ACTIONS(1155), + [anon_sym_ATcannot] = ACTIONS(1158), + [anon_sym_ATcanany] = ACTIONS(1161), + [anon_sym_ATendcanany] = ACTIONS(804), + [aux_sym__custom_token1] = ACTIONS(1164), + [aux_sym__custom_token2] = ACTIONS(1167), + [anon_sym_ATswitch] = ACTIONS(1170), + [aux_sym_loop_operator_token1] = ACTIONS(1173), + [anon_sym_ATfor] = ACTIONS(1176), + [anon_sym_ATforeach] = ACTIONS(1179), + [anon_sym_ATforelse] = ACTIONS(1182), + [anon_sym_ATwhile] = ACTIONS(1185), + [anon_sym_ATpersist] = ACTIONS(1188), + [anon_sym_ATteleport] = ACTIONS(1191), + [anon_sym_ATvolt] = ACTIONS(1194), + [aux_sym_text_token1] = ACTIONS(1197), + [aux_sym_text_token2] = ACTIONS(1197), + [aux_sym_text_token3] = ACTIONS(1200), + }, + [79] = { + [sym__definition] = STATE(654), + [sym_comment] = STATE(79), + [sym_keyword] = STATE(763), + [sym_php_statement] = STATE(763), + [sym__escaped] = STATE(762), + [sym__unescaped] = STATE(762), + [sym__raw] = STATE(762), + [sym__inline_raw] = STATE(761), + [sym__multi_line_raw] = STATE(761), + [sym_attribute] = STATE(763), + [sym__inline_directive] = STATE(763), + [sym__nested_directive] = STATE(763), + [sym_fragment] = STATE(760), + [sym_section] = STATE(760), + [sym_once] = STATE(760), + [sym_verbatim] = STATE(760), + [sym_stack] = STATE(760), + [sym__push] = STATE(758), + [sym__pushOnce] = STATE(758), + [sym__pushIf] = STATE(758), + [sym__prepend] = STATE(758), + [sym__prependOnce] = STATE(758), + [sym_conditional] = STATE(760), + [sym_conditional_keyword] = STATE(654), + [sym__if] = STATE(756), + [sym__unless] = STATE(756), + [sym__isset] = STATE(756), + [sym__empty] = STATE(756), + [sym__auth] = STATE(756), + [sym__guest] = STATE(756), + [sym__production] = STATE(756), + [sym__env] = STATE(756), + [sym__hasSection] = STATE(756), + [sym__sectionMissing] = STATE(756), + [sym__error] = STATE(756), + [sym__can] = STATE(756), + [sym__cannot] = STATE(756), + [sym__canany] = STATE(756), + [sym__custom] = STATE(756), + [sym_switch] = STATE(760), + [sym_loop] = STATE(760), + [sym_loop_operator] = STATE(763), + [sym__for] = STATE(755), + [sym__foreach] = STATE(755), + [sym__forelse] = STATE(755), + [sym__while] = STATE(755), + [sym_livewire] = STATE(760), + [sym__persist] = STATE(754), + [sym__teleport] = STATE(754), + [sym__volt] = STATE(754), + [sym_text] = STATE(752), [aux_sym__if_statement_directive_body_repeat1] = STATE(79), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(1203), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1206), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1209), + [anon_sym_ATphp] = ACTIONS(1212), + [aux_sym_attribute_token1] = ACTIONS(1215), + [aux_sym__inline_directive_token1] = ACTIONS(1218), + [anon_sym_ATfragment] = ACTIONS(1221), + [anon_sym_ATsection] = ACTIONS(1224), + [anon_sym_ATonce] = ACTIONS(1227), + [anon_sym_ATverbatim] = ACTIONS(1230), + [anon_sym_ATpush] = ACTIONS(1233), + [anon_sym_ATpushOnce] = ACTIONS(1236), + [anon_sym_ATpushIf] = ACTIONS(1239), + [anon_sym_ATprepend] = ACTIONS(1242), + [anon_sym_ATprependOnce] = ACTIONS(1245), + [anon_sym_ATelse] = ACTIONS(1248), + [aux_sym_conditional_keyword_token1] = ACTIONS(1251), + [anon_sym_ATif] = ACTIONS(1254), + [anon_sym_ATunless] = ACTIONS(1257), [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), + [anon_sym_ATempty] = ACTIONS(1263), + [anon_sym_ATauth] = ACTIONS(1266), + [anon_sym_ATguest] = ACTIONS(1269), + [anon_sym_ATproduction] = ACTIONS(1272), + [anon_sym_ATenv] = ACTIONS(1275), + [anon_sym_AThasSection] = ACTIONS(1278), + [anon_sym_ATsectionMissing] = ACTIONS(1281), + [anon_sym_ATerror] = ACTIONS(1284), + [anon_sym_ATcan] = ACTIONS(1287), + [anon_sym_ATcannot] = ACTIONS(1290), + [anon_sym_ATcanany] = ACTIONS(1293), + [aux_sym__custom_token1] = ACTIONS(1296), + [aux_sym__custom_token2] = ACTIONS(1299), + [aux_sym__custom_token3] = ACTIONS(804), + [anon_sym_ATswitch] = ACTIONS(1302), + [aux_sym_loop_operator_token1] = ACTIONS(1305), + [anon_sym_ATfor] = ACTIONS(1308), + [anon_sym_ATforeach] = ACTIONS(1311), + [anon_sym_ATforelse] = ACTIONS(1314), + [anon_sym_ATwhile] = ACTIONS(1317), + [anon_sym_ATpersist] = ACTIONS(1320), + [anon_sym_ATteleport] = ACTIONS(1323), + [anon_sym_ATvolt] = ACTIONS(1326), + [aux_sym_text_token1] = ACTIONS(1329), + [aux_sym_text_token2] = ACTIONS(1329), + [aux_sym_text_token3] = ACTIONS(1332), + }, + [80] = { + [sym__definition] = STATE(1264), + [sym_comment] = STATE(80), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(1335), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), + }, + [81] = { + [sym__definition] = STATE(1264), + [sym_comment] = STATE(81), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(1337), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), + }, + [82] = { + [sym__definition] = STATE(662), + [sym_comment] = STATE(82), + [sym_keyword] = STATE(1054), + [sym_php_statement] = STATE(1054), + [sym__escaped] = STATE(1053), + [sym__unescaped] = STATE(1053), + [sym__raw] = STATE(1053), + [sym__inline_raw] = STATE(1052), + [sym__multi_line_raw] = STATE(1052), + [sym_attribute] = STATE(1054), + [sym__inline_directive] = STATE(1054), + [sym__nested_directive] = STATE(1054), + [sym_fragment] = STATE(1051), + [sym_section] = STATE(1051), + [sym_once] = STATE(1051), + [sym_verbatim] = STATE(1051), + [sym_stack] = STATE(1051), + [sym__push] = STATE(1050), + [sym__pushOnce] = STATE(1050), + [sym__pushIf] = STATE(1050), + [sym__prepend] = STATE(1050), + [sym__prependOnce] = STATE(1050), + [sym_conditional] = STATE(1051), + [sym_conditional_keyword] = STATE(662), + [sym__if] = STATE(1049), + [sym__unless] = STATE(1049), + [sym__isset] = STATE(1049), + [sym__empty] = STATE(1049), + [sym__auth] = STATE(1049), + [sym__guest] = STATE(1049), + [sym__production] = STATE(1049), + [sym__env] = STATE(1049), + [sym__hasSection] = STATE(1049), + [sym__sectionMissing] = STATE(1049), + [sym__error] = STATE(1049), + [sym__can] = STATE(1049), + [sym__cannot] = STATE(1049), + [sym__canany] = STATE(1049), + [sym__custom] = STATE(1049), + [sym_switch] = STATE(1051), + [sym_loop] = STATE(1051), + [sym_loop_operator] = STATE(1054), + [sym__for] = STATE(1048), + [sym__foreach] = STATE(1048), + [sym__forelse] = STATE(1048), + [sym__while] = STATE(1048), + [sym_livewire] = STATE(1051), + [sym__persist] = STATE(534), + [sym__teleport] = STATE(534), + [sym__volt] = STATE(534), + [sym_text] = STATE(1046), + [aux_sym__if_statement_directive_body_repeat1] = STATE(86), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(1339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1343), + [anon_sym_ATphp] = ACTIONS(1345), + [aux_sym_attribute_token1] = ACTIONS(1347), + [aux_sym__inline_directive_token1] = ACTIONS(1349), + [anon_sym_ATfragment] = ACTIONS(1351), + [anon_sym_ATsection] = ACTIONS(1353), + [anon_sym_ATonce] = ACTIONS(1355), + [anon_sym_ATverbatim] = ACTIONS(1357), + [anon_sym_ATpush] = ACTIONS(1359), + [anon_sym_ATpushOnce] = ACTIONS(1361), + [anon_sym_ATpushIf] = ACTIONS(1363), + [anon_sym_ATprepend] = ACTIONS(1365), + [anon_sym_ATprependOnce] = ACTIONS(1367), + [anon_sym_ATelse] = ACTIONS(1369), + [aux_sym_conditional_keyword_token1] = ACTIONS(1371), + [anon_sym_ATif] = ACTIONS(1373), + [anon_sym_ATunless] = ACTIONS(1375), + [anon_sym_ATisset] = ACTIONS(1377), + [anon_sym_ATempty] = ACTIONS(1379), + [anon_sym_ATauth] = ACTIONS(1381), + [anon_sym_ATguest] = ACTIONS(1383), + [anon_sym_ATproduction] = ACTIONS(1385), + [anon_sym_ATenv] = ACTIONS(1387), + [anon_sym_AThasSection] = ACTIONS(1389), + [anon_sym_ATsectionMissing] = ACTIONS(1391), + [anon_sym_ATerror] = ACTIONS(1393), + [anon_sym_ATenderror] = ACTIONS(319), + [anon_sym_ATcan] = ACTIONS(1395), + [anon_sym_ATcannot] = ACTIONS(1397), + [anon_sym_ATcanany] = ACTIONS(1399), + [aux_sym__custom_token1] = ACTIONS(1401), + [aux_sym__custom_token2] = ACTIONS(1403), + [anon_sym_ATswitch] = ACTIONS(1405), + [aux_sym_loop_operator_token1] = ACTIONS(1407), + [anon_sym_ATfor] = ACTIONS(1409), + [anon_sym_ATforeach] = ACTIONS(1411), + [anon_sym_ATforelse] = ACTIONS(1413), + [anon_sym_ATwhile] = ACTIONS(1415), + [anon_sym_ATpersist] = ACTIONS(1417), + [anon_sym_ATteleport] = ACTIONS(1419), + [anon_sym_ATvolt] = ACTIONS(1421), + [aux_sym_text_token1] = ACTIONS(1423), + [aux_sym_text_token2] = ACTIONS(1423), + [aux_sym_text_token3] = ACTIONS(1425), + }, + [83] = { + [sym__definition] = STATE(1264), + [sym_comment] = STATE(83), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(1427), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [84] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1098), [sym_comment] = STATE(84), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1070), + [sym_php_statement] = STATE(1070), + [sym__escaped] = STATE(1071), + [sym__unescaped] = STATE(1071), + [sym__raw] = STATE(1071), + [sym__inline_raw] = STATE(1072), + [sym__multi_line_raw] = STATE(1072), + [sym_attribute] = STATE(1070), + [sym__inline_directive] = STATE(1070), + [sym__nested_directive] = STATE(1070), + [sym_fragment] = STATE(1073), + [sym_section] = STATE(1073), + [sym_once] = STATE(1073), + [sym_verbatim] = STATE(1073), + [sym_stack] = STATE(1073), + [sym__push] = STATE(1074), + [sym__pushOnce] = STATE(1074), + [sym__pushIf] = STATE(1074), + [sym__prepend] = STATE(1074), + [sym__prependOnce] = STATE(1074), + [sym_conditional] = STATE(1073), + [sym_conditional_keyword] = STATE(1098), + [sym__if] = STATE(1075), + [sym__unless] = STATE(1075), + [sym__isset] = STATE(1075), + [sym__empty] = STATE(1075), + [sym__auth] = STATE(1075), + [sym__guest] = STATE(1075), + [sym__production] = STATE(1075), + [sym__env] = STATE(1075), + [sym__hasSection] = STATE(1075), + [sym__sectionMissing] = STATE(1075), + [sym__error] = STATE(1075), + [sym__can] = STATE(1075), + [sym__cannot] = STATE(1075), + [sym__canany] = STATE(1075), + [sym__custom] = STATE(1075), + [sym_switch] = STATE(1073), + [sym_loop] = STATE(1073), + [sym_loop_operator] = STATE(1070), + [sym__for] = STATE(1076), + [sym__foreach] = STATE(1076), + [sym__forelse] = STATE(1076), + [sym__while] = STATE(1076), + [sym_livewire] = STATE(1073), + [sym__persist] = STATE(1077), + [sym__teleport] = STATE(1077), + [sym__volt] = STATE(1077), + [sym_text] = STATE(1078), + [aux_sym__if_statement_directive_body_repeat1] = STATE(133), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(1429), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1431), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1433), + [anon_sym_ATphp] = ACTIONS(1435), + [aux_sym_attribute_token1] = ACTIONS(1437), + [aux_sym__inline_directive_token1] = ACTIONS(1439), + [anon_sym_ATfragment] = ACTIONS(1441), + [anon_sym_ATsection] = ACTIONS(1443), + [anon_sym_ATonce] = ACTIONS(1445), + [anon_sym_ATverbatim] = ACTIONS(1447), + [anon_sym_ATpush] = ACTIONS(1449), + [anon_sym_ATpushOnce] = ACTIONS(1451), + [anon_sym_ATpushIf] = ACTIONS(1453), + [anon_sym_ATprepend] = ACTIONS(1455), + [anon_sym_ATprependOnce] = ACTIONS(1457), + [anon_sym_ATelse] = ACTIONS(1459), + [aux_sym_conditional_keyword_token1] = ACTIONS(1461), + [anon_sym_ATif] = ACTIONS(1463), + [anon_sym_ATendif] = ACTIONS(319), + [anon_sym_ATunless] = ACTIONS(1465), + [anon_sym_ATisset] = ACTIONS(1467), + [anon_sym_ATempty] = ACTIONS(1469), + [anon_sym_ATauth] = ACTIONS(1471), + [anon_sym_ATguest] = ACTIONS(1473), + [anon_sym_ATproduction] = ACTIONS(1475), + [anon_sym_ATenv] = ACTIONS(1477), + [anon_sym_AThasSection] = ACTIONS(1479), + [anon_sym_ATsectionMissing] = ACTIONS(1481), + [anon_sym_ATerror] = ACTIONS(1483), + [anon_sym_ATcan] = ACTIONS(1485), + [anon_sym_ATcannot] = ACTIONS(1487), + [anon_sym_ATcanany] = ACTIONS(1489), + [aux_sym__custom_token1] = ACTIONS(1491), + [aux_sym__custom_token2] = ACTIONS(1493), + [anon_sym_ATswitch] = ACTIONS(1495), + [aux_sym_loop_operator_token1] = ACTIONS(1497), + [anon_sym_ATfor] = ACTIONS(1499), + [anon_sym_ATforeach] = ACTIONS(1501), + [anon_sym_ATforelse] = ACTIONS(1503), + [anon_sym_ATwhile] = ACTIONS(1505), + [anon_sym_ATpersist] = ACTIONS(1507), + [anon_sym_ATteleport] = ACTIONS(1509), + [anon_sym_ATvolt] = ACTIONS(1511), + [aux_sym_text_token1] = ACTIONS(1513), + [aux_sym_text_token2] = ACTIONS(1513), + [aux_sym_text_token3] = ACTIONS(1515), }, [85] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(85), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(1517), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [86] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(662), [sym_comment] = STATE(86), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1054), + [sym_php_statement] = STATE(1054), + [sym__escaped] = STATE(1053), + [sym__unescaped] = STATE(1053), + [sym__raw] = STATE(1053), + [sym__inline_raw] = STATE(1052), + [sym__multi_line_raw] = STATE(1052), + [sym_attribute] = STATE(1054), + [sym__inline_directive] = STATE(1054), + [sym__nested_directive] = STATE(1054), + [sym_fragment] = STATE(1051), + [sym_section] = STATE(1051), + [sym_once] = STATE(1051), + [sym_verbatim] = STATE(1051), + [sym_stack] = STATE(1051), + [sym__push] = STATE(1050), + [sym__pushOnce] = STATE(1050), + [sym__pushIf] = STATE(1050), + [sym__prepend] = STATE(1050), + [sym__prependOnce] = STATE(1050), + [sym_conditional] = STATE(1051), + [sym_conditional_keyword] = STATE(662), + [sym__if] = STATE(1049), + [sym__unless] = STATE(1049), + [sym__isset] = STATE(1049), + [sym__empty] = STATE(1049), + [sym__auth] = STATE(1049), + [sym__guest] = STATE(1049), + [sym__production] = STATE(1049), + [sym__env] = STATE(1049), + [sym__hasSection] = STATE(1049), + [sym__sectionMissing] = STATE(1049), + [sym__error] = STATE(1049), + [sym__can] = STATE(1049), + [sym__cannot] = STATE(1049), + [sym__canany] = STATE(1049), + [sym__custom] = STATE(1049), + [sym_switch] = STATE(1051), + [sym_loop] = STATE(1051), + [sym_loop_operator] = STATE(1054), + [sym__for] = STATE(1048), + [sym__foreach] = STATE(1048), + [sym__forelse] = STATE(1048), + [sym__while] = STATE(1048), + [sym_livewire] = STATE(1051), + [sym__persist] = STATE(534), + [sym__teleport] = STATE(534), + [sym__volt] = STATE(534), + [sym_text] = STATE(1046), + [aux_sym__if_statement_directive_body_repeat1] = STATE(88), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(1339), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1341), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1343), + [anon_sym_ATphp] = ACTIONS(1345), + [aux_sym_attribute_token1] = ACTIONS(1347), + [aux_sym__inline_directive_token1] = ACTIONS(1349), + [anon_sym_ATfragment] = ACTIONS(1351), + [anon_sym_ATsection] = ACTIONS(1353), + [anon_sym_ATonce] = ACTIONS(1355), + [anon_sym_ATverbatim] = ACTIONS(1357), + [anon_sym_ATpush] = ACTIONS(1359), + [anon_sym_ATpushOnce] = ACTIONS(1361), + [anon_sym_ATpushIf] = ACTIONS(1363), + [anon_sym_ATprepend] = ACTIONS(1365), + [anon_sym_ATprependOnce] = ACTIONS(1367), + [anon_sym_ATelse] = ACTIONS(1369), + [aux_sym_conditional_keyword_token1] = ACTIONS(1371), + [anon_sym_ATif] = ACTIONS(1373), + [anon_sym_ATunless] = ACTIONS(1375), + [anon_sym_ATisset] = ACTIONS(1377), + [anon_sym_ATempty] = ACTIONS(1379), + [anon_sym_ATauth] = ACTIONS(1381), + [anon_sym_ATguest] = ACTIONS(1383), + [anon_sym_ATproduction] = ACTIONS(1385), + [anon_sym_ATenv] = ACTIONS(1387), + [anon_sym_AThasSection] = ACTIONS(1389), + [anon_sym_ATsectionMissing] = ACTIONS(1391), + [anon_sym_ATerror] = ACTIONS(1393), + [anon_sym_ATenderror] = ACTIONS(489), + [anon_sym_ATcan] = ACTIONS(1395), + [anon_sym_ATcannot] = ACTIONS(1397), + [anon_sym_ATcanany] = ACTIONS(1399), + [aux_sym__custom_token1] = ACTIONS(1401), + [aux_sym__custom_token2] = ACTIONS(1403), + [anon_sym_ATswitch] = ACTIONS(1405), + [aux_sym_loop_operator_token1] = ACTIONS(1407), + [anon_sym_ATfor] = ACTIONS(1409), + [anon_sym_ATforeach] = ACTIONS(1411), + [anon_sym_ATforelse] = ACTIONS(1413), + [anon_sym_ATwhile] = ACTIONS(1415), + [anon_sym_ATpersist] = ACTIONS(1417), + [anon_sym_ATteleport] = ACTIONS(1419), + [anon_sym_ATvolt] = ACTIONS(1421), + [aux_sym_text_token1] = ACTIONS(1423), + [aux_sym_text_token2] = ACTIONS(1423), + [aux_sym_text_token3] = ACTIONS(1425), }, [87] = { - [sym__definition] = STATE(580), + [sym__definition] = STATE(1264), [sym_comment] = STATE(87), - [sym_keyword] = STATE(974), - [sym_php_statement] = STATE(974), - [sym__escaped] = STATE(973), - [sym__unescaped] = STATE(973), - [sym__raw] = STATE(973), - [sym__inline_raw] = STATE(972), - [sym__multi_line_raw] = STATE(972), - [sym_attribute] = STATE(974), - [sym__inline_directive] = STATE(974), - [sym__nested_directive] = STATE(974), - [sym_fragment] = STATE(971), - [sym_section] = STATE(971), - [sym_once] = STATE(971), - [sym_verbatim] = STATE(971), - [sym_stack] = STATE(971), - [sym__push] = STATE(970), - [sym__pushOnce] = STATE(970), - [sym__pushIf] = STATE(970), - [sym__prepend] = STATE(970), - [sym__prependOnce] = STATE(970), - [sym_conditional] = STATE(971), - [sym_conditional_keyword] = STATE(580), - [sym__if] = STATE(968), - [sym__unless] = STATE(968), - [sym__isset] = STATE(968), - [sym__empty] = STATE(968), - [sym__auth] = STATE(968), - [sym__guest] = STATE(968), - [sym__production] = STATE(968), - [sym__env] = STATE(968), - [sym__hasSection] = STATE(968), - [sym__sectionMissing] = STATE(968), - [sym__error] = STATE(968), - [sym__custom] = STATE(968), - [sym_switch] = STATE(971), - [sym_loop] = STATE(971), - [sym_loop_operator] = STATE(974), - [sym__for] = STATE(967), - [sym__foreach] = STATE(967), - [sym__forelse] = STATE(967), - [sym__while] = STATE(967), - [sym_livewire] = STATE(971), - [sym__persist] = STATE(965), - [sym__teleport] = STATE(965), - [sym__volt] = STATE(965), - [sym_text] = STATE(964), - [aux_sym__if_statement_directive_body_repeat1] = STATE(87), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(1519), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [88] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(662), [sym_comment] = STATE(88), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1054), + [sym_php_statement] = STATE(1054), + [sym__escaped] = STATE(1053), + [sym__unescaped] = STATE(1053), + [sym__raw] = STATE(1053), + [sym__inline_raw] = STATE(1052), + [sym__multi_line_raw] = STATE(1052), + [sym_attribute] = STATE(1054), + [sym__inline_directive] = STATE(1054), + [sym__nested_directive] = STATE(1054), + [sym_fragment] = STATE(1051), + [sym_section] = STATE(1051), + [sym_once] = STATE(1051), + [sym_verbatim] = STATE(1051), + [sym_stack] = STATE(1051), + [sym__push] = STATE(1050), + [sym__pushOnce] = STATE(1050), + [sym__pushIf] = STATE(1050), + [sym__prepend] = STATE(1050), + [sym__prependOnce] = STATE(1050), + [sym_conditional] = STATE(1051), + [sym_conditional_keyword] = STATE(662), + [sym__if] = STATE(1049), + [sym__unless] = STATE(1049), + [sym__isset] = STATE(1049), + [sym__empty] = STATE(1049), + [sym__auth] = STATE(1049), + [sym__guest] = STATE(1049), + [sym__production] = STATE(1049), + [sym__env] = STATE(1049), + [sym__hasSection] = STATE(1049), + [sym__sectionMissing] = STATE(1049), + [sym__error] = STATE(1049), + [sym__can] = STATE(1049), + [sym__cannot] = STATE(1049), + [sym__canany] = STATE(1049), + [sym__custom] = STATE(1049), + [sym_switch] = STATE(1051), + [sym_loop] = STATE(1051), + [sym_loop_operator] = STATE(1054), + [sym__for] = STATE(1048), + [sym__foreach] = STATE(1048), + [sym__forelse] = STATE(1048), + [sym__while] = STATE(1048), + [sym_livewire] = STATE(1051), + [sym__persist] = STATE(534), + [sym__teleport] = STATE(534), + [sym__volt] = STATE(534), + [sym_text] = STATE(1046), + [aux_sym__if_statement_directive_body_repeat1] = STATE(88), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(1521), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1524), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1527), + [anon_sym_ATphp] = ACTIONS(1530), + [aux_sym_attribute_token1] = ACTIONS(1533), + [aux_sym__inline_directive_token1] = ACTIONS(1536), + [anon_sym_ATfragment] = ACTIONS(1539), + [anon_sym_ATsection] = ACTIONS(1542), + [anon_sym_ATonce] = ACTIONS(1545), + [anon_sym_ATverbatim] = ACTIONS(1548), + [anon_sym_ATpush] = ACTIONS(1551), + [anon_sym_ATpushOnce] = ACTIONS(1554), + [anon_sym_ATpushIf] = ACTIONS(1557), + [anon_sym_ATprepend] = ACTIONS(1560), + [anon_sym_ATprependOnce] = ACTIONS(1563), + [anon_sym_ATelse] = ACTIONS(1566), + [aux_sym_conditional_keyword_token1] = ACTIONS(1569), + [anon_sym_ATif] = ACTIONS(1572), + [anon_sym_ATunless] = ACTIONS(1575), + [anon_sym_ATisset] = ACTIONS(1578), + [anon_sym_ATempty] = ACTIONS(1581), + [anon_sym_ATauth] = ACTIONS(1584), + [anon_sym_ATguest] = ACTIONS(1587), + [anon_sym_ATproduction] = ACTIONS(1590), + [anon_sym_ATenv] = ACTIONS(1593), + [anon_sym_AThasSection] = ACTIONS(1596), + [anon_sym_ATsectionMissing] = ACTIONS(1599), + [anon_sym_ATerror] = ACTIONS(1602), + [anon_sym_ATenderror] = ACTIONS(804), + [anon_sym_ATcan] = ACTIONS(1605), + [anon_sym_ATcannot] = ACTIONS(1608), + [anon_sym_ATcanany] = ACTIONS(1611), + [aux_sym__custom_token1] = ACTIONS(1614), + [aux_sym__custom_token2] = ACTIONS(1617), + [anon_sym_ATswitch] = ACTIONS(1620), + [aux_sym_loop_operator_token1] = ACTIONS(1623), + [anon_sym_ATfor] = ACTIONS(1626), + [anon_sym_ATforeach] = ACTIONS(1629), + [anon_sym_ATforelse] = ACTIONS(1632), + [anon_sym_ATwhile] = ACTIONS(1635), + [anon_sym_ATpersist] = ACTIONS(1638), + [anon_sym_ATteleport] = ACTIONS(1641), + [anon_sym_ATvolt] = ACTIONS(1644), + [aux_sym_text_token1] = ACTIONS(1647), + [aux_sym_text_token2] = ACTIONS(1647), + [aux_sym_text_token3] = ACTIONS(1650), }, [89] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1098), [sym_comment] = STATE(89), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(95), + [sym_keyword] = STATE(1070), + [sym_php_statement] = STATE(1070), + [sym__escaped] = STATE(1071), + [sym__unescaped] = STATE(1071), + [sym__raw] = STATE(1071), + [sym__inline_raw] = STATE(1072), + [sym__multi_line_raw] = STATE(1072), + [sym_attribute] = STATE(1070), + [sym__inline_directive] = STATE(1070), + [sym__nested_directive] = STATE(1070), + [sym_fragment] = STATE(1073), + [sym_section] = STATE(1073), + [sym_once] = STATE(1073), + [sym_verbatim] = STATE(1073), + [sym_stack] = STATE(1073), + [sym__push] = STATE(1074), + [sym__pushOnce] = STATE(1074), + [sym__pushIf] = STATE(1074), + [sym__prepend] = STATE(1074), + [sym__prependOnce] = STATE(1074), + [sym_conditional] = STATE(1073), + [sym_conditional_keyword] = STATE(1098), + [sym__if] = STATE(1075), + [sym__unless] = STATE(1075), + [sym__isset] = STATE(1075), + [sym__empty] = STATE(1075), + [sym__auth] = STATE(1075), + [sym__guest] = STATE(1075), + [sym__production] = STATE(1075), + [sym__env] = STATE(1075), + [sym__hasSection] = STATE(1075), + [sym__sectionMissing] = STATE(1075), + [sym__error] = STATE(1075), + [sym__can] = STATE(1075), + [sym__cannot] = STATE(1075), + [sym__canany] = STATE(1075), + [sym__custom] = STATE(1075), + [sym_switch] = STATE(1073), + [sym_loop] = STATE(1073), + [sym_loop_operator] = STATE(1070), + [sym__for] = STATE(1076), + [sym__foreach] = STATE(1076), + [sym__forelse] = STATE(1076), + [sym__while] = STATE(1076), + [sym_livewire] = STATE(1073), + [sym__persist] = STATE(1077), + [sym__teleport] = STATE(1077), + [sym__volt] = STATE(1077), + [sym_text] = STATE(1078), + [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(1653), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1656), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1659), + [anon_sym_ATphp] = ACTIONS(1662), + [aux_sym_attribute_token1] = ACTIONS(1665), + [aux_sym__inline_directive_token1] = ACTIONS(1668), + [anon_sym_ATfragment] = ACTIONS(1671), + [anon_sym_ATsection] = ACTIONS(1674), + [anon_sym_ATonce] = ACTIONS(1677), + [anon_sym_ATverbatim] = ACTIONS(1680), + [anon_sym_ATpush] = ACTIONS(1683), + [anon_sym_ATpushOnce] = ACTIONS(1686), + [anon_sym_ATpushIf] = ACTIONS(1689), + [anon_sym_ATprepend] = ACTIONS(1692), + [anon_sym_ATprependOnce] = ACTIONS(1695), + [anon_sym_ATelse] = ACTIONS(1698), + [aux_sym_conditional_keyword_token1] = ACTIONS(1701), + [anon_sym_ATif] = ACTIONS(1704), + [anon_sym_ATendif] = ACTIONS(804), + [anon_sym_ATunless] = ACTIONS(1707), + [anon_sym_ATisset] = ACTIONS(1710), + [anon_sym_ATempty] = ACTIONS(1713), + [anon_sym_ATauth] = ACTIONS(1716), + [anon_sym_ATguest] = ACTIONS(1719), + [anon_sym_ATproduction] = ACTIONS(1722), + [anon_sym_ATenv] = ACTIONS(1725), + [anon_sym_AThasSection] = ACTIONS(1728), + [anon_sym_ATsectionMissing] = ACTIONS(1731), + [anon_sym_ATerror] = ACTIONS(1734), + [anon_sym_ATcan] = ACTIONS(1737), + [anon_sym_ATcannot] = ACTIONS(1740), + [anon_sym_ATcanany] = ACTIONS(1743), + [aux_sym__custom_token1] = ACTIONS(1746), + [aux_sym__custom_token2] = ACTIONS(1749), + [anon_sym_ATswitch] = ACTIONS(1752), + [aux_sym_loop_operator_token1] = ACTIONS(1755), + [anon_sym_ATfor] = ACTIONS(1758), + [anon_sym_ATforeach] = ACTIONS(1761), + [anon_sym_ATforelse] = ACTIONS(1764), + [anon_sym_ATwhile] = ACTIONS(1767), + [anon_sym_ATpersist] = ACTIONS(1770), + [anon_sym_ATteleport] = ACTIONS(1773), + [anon_sym_ATvolt] = ACTIONS(1776), + [aux_sym_text_token1] = ACTIONS(1779), + [aux_sym_text_token2] = ACTIONS(1779), + [aux_sym_text_token3] = ACTIONS(1782), }, [90] = { - [sym__definition] = STATE(702), + [sym__definition] = STATE(1264), [sym_comment] = STATE(90), - [sym_keyword] = STATE(704), - [sym_php_statement] = STATE(704), - [sym__escaped] = STATE(703), - [sym__unescaped] = STATE(703), - [sym__raw] = STATE(703), - [sym__inline_raw] = STATE(699), - [sym__multi_line_raw] = STATE(699), - [sym_attribute] = STATE(704), - [sym__inline_directive] = STATE(704), - [sym__nested_directive] = STATE(704), - [sym_fragment] = STATE(698), - [sym_section] = STATE(698), - [sym_once] = STATE(698), - [sym_verbatim] = STATE(698), - [sym_stack] = STATE(698), - [sym__push] = STATE(697), - [sym__pushOnce] = STATE(697), - [sym__pushIf] = STATE(697), - [sym__prepend] = STATE(697), - [sym__prependOnce] = STATE(697), - [sym_conditional] = STATE(698), - [sym_conditional_keyword] = STATE(702), - [sym__if] = STATE(695), - [sym__unless] = STATE(695), - [sym__isset] = STATE(695), - [sym__empty] = STATE(695), - [sym__auth] = STATE(695), - [sym__guest] = STATE(695), - [sym__production] = STATE(695), - [sym__env] = STATE(695), - [sym__hasSection] = STATE(695), - [sym__sectionMissing] = STATE(695), - [sym__error] = STATE(695), - [sym__custom] = STATE(695), - [sym_switch] = STATE(698), - [sym_loop] = STATE(698), - [sym_loop_operator] = STATE(704), - [sym__for] = STATE(694), - [sym__foreach] = STATE(694), - [sym__forelse] = STATE(694), - [sym__while] = STATE(694), - [sym_livewire] = STATE(698), - [sym__persist] = STATE(693), - [sym__teleport] = STATE(693), - [sym__volt] = STATE(693), - [sym_text] = STATE(692), - [aux_sym__if_statement_directive_body_repeat1] = STATE(74), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(1785), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [91] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(998), [sym_comment] = STATE(91), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1266), + [sym_php_statement] = STATE(1266), + [sym__escaped] = STATE(1267), + [sym__unescaped] = STATE(1267), + [sym__raw] = STATE(1267), + [sym__inline_raw] = STATE(1268), + [sym__multi_line_raw] = STATE(1268), + [sym_attribute] = STATE(1266), + [sym__inline_directive] = STATE(1266), + [sym__nested_directive] = STATE(1266), + [sym_fragment] = STATE(1269), + [sym_section] = STATE(1269), + [sym_once] = STATE(1269), + [sym_verbatim] = STATE(1269), + [sym_stack] = STATE(1269), + [sym__push] = STATE(1270), + [sym__pushOnce] = STATE(1270), + [sym__pushIf] = STATE(1270), + [sym__prepend] = STATE(1270), + [sym__prependOnce] = STATE(1270), + [sym_conditional] = STATE(1269), + [sym_conditional_keyword] = STATE(998), + [sym__if] = STATE(1271), + [sym__unless] = STATE(1271), + [sym__isset] = STATE(1271), + [sym__empty] = STATE(1271), + [sym__auth] = STATE(1271), + [sym__guest] = STATE(1271), + [sym__production] = STATE(1271), + [sym__env] = STATE(1271), + [sym__hasSection] = STATE(1271), + [sym__sectionMissing] = STATE(1271), + [sym__error] = STATE(1271), + [sym__can] = STATE(1271), + [sym__cannot] = STATE(1271), + [sym__canany] = STATE(1271), + [sym__custom] = STATE(1271), + [sym_switch] = STATE(1269), + [sym_loop] = STATE(1269), + [sym_loop_operator] = STATE(1266), + [sym__for] = STATE(1272), + [sym__foreach] = STATE(1272), + [sym__forelse] = STATE(1272), + [sym__while] = STATE(1272), + [sym_livewire] = STATE(1269), + [sym__persist] = STATE(1273), + [sym__teleport] = STATE(1273), + [sym__volt] = STATE(1273), + [sym_text] = STATE(1274), + [aux_sym__if_statement_directive_body_repeat1] = STATE(91), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(1787), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1790), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1793), + [anon_sym_ATphp] = ACTIONS(1796), + [aux_sym_attribute_token1] = ACTIONS(1799), + [aux_sym__inline_directive_token1] = ACTIONS(1802), + [anon_sym_ATfragment] = ACTIONS(1805), + [anon_sym_ATsection] = ACTIONS(1808), + [anon_sym_ATonce] = ACTIONS(1811), + [anon_sym_ATverbatim] = ACTIONS(1814), + [anon_sym_ATpush] = ACTIONS(1817), + [anon_sym_ATpushOnce] = ACTIONS(1820), + [anon_sym_ATpushIf] = ACTIONS(1823), + [anon_sym_ATprepend] = ACTIONS(1826), + [anon_sym_ATprependOnce] = ACTIONS(1829), + [anon_sym_ATelse] = ACTIONS(1832), + [aux_sym_conditional_keyword_token1] = ACTIONS(1835), + [anon_sym_ATif] = ACTIONS(1838), + [anon_sym_ATunless] = ACTIONS(1841), + [anon_sym_ATisset] = ACTIONS(1844), + [anon_sym_ATempty] = ACTIONS(1847), + [anon_sym_ATendempty] = ACTIONS(804), + [anon_sym_ATauth] = ACTIONS(1850), + [anon_sym_ATguest] = ACTIONS(1853), + [anon_sym_ATproduction] = ACTIONS(1856), + [anon_sym_ATenv] = ACTIONS(1859), + [anon_sym_AThasSection] = ACTIONS(1862), + [anon_sym_ATsectionMissing] = ACTIONS(1865), + [anon_sym_ATerror] = ACTIONS(1868), + [anon_sym_ATcan] = ACTIONS(1871), + [anon_sym_ATcannot] = ACTIONS(1874), + [anon_sym_ATcanany] = ACTIONS(1877), + [aux_sym__custom_token1] = ACTIONS(1880), + [aux_sym__custom_token2] = ACTIONS(1883), + [anon_sym_ATswitch] = ACTIONS(1886), + [aux_sym_loop_operator_token1] = ACTIONS(1889), + [anon_sym_ATfor] = ACTIONS(1892), + [anon_sym_ATforeach] = ACTIONS(1895), + [anon_sym_ATforelse] = ACTIONS(1898), + [anon_sym_ATwhile] = ACTIONS(1901), + [anon_sym_ATpersist] = ACTIONS(1904), + [anon_sym_ATteleport] = ACTIONS(1907), + [anon_sym_ATvolt] = ACTIONS(1910), + [aux_sym_text_token1] = ACTIONS(1913), + [aux_sym_text_token2] = ACTIONS(1913), + [aux_sym_text_token3] = ACTIONS(1916), }, [92] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1292), [sym_comment] = STATE(92), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(123), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATendauth] = ACTIONS(1919), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [93] = { - [sym__definition] = STATE(634), + [sym__definition] = STATE(1264), [sym_comment] = STATE(93), - [sym_keyword] = STATE(774), - [sym_php_statement] = STATE(774), - [sym__escaped] = STATE(772), - [sym__unescaped] = STATE(772), - [sym__raw] = STATE(772), - [sym__inline_raw] = STATE(771), - [sym__multi_line_raw] = STATE(771), - [sym_attribute] = STATE(774), - [sym__inline_directive] = STATE(774), - [sym__nested_directive] = STATE(774), - [sym_fragment] = STATE(770), - [sym_section] = STATE(770), - [sym_once] = STATE(770), - [sym_verbatim] = STATE(770), - [sym_stack] = STATE(770), - [sym__push] = STATE(767), - [sym__pushOnce] = STATE(767), - [sym__pushIf] = STATE(767), - [sym__prepend] = STATE(767), - [sym__prependOnce] = STATE(767), - [sym_conditional] = STATE(770), - [sym_conditional_keyword] = STATE(634), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(770), - [sym_loop] = STATE(770), - [sym_loop_operator] = STATE(774), - [sym__for] = STATE(765), - [sym__foreach] = STATE(765), - [sym__forelse] = STATE(765), - [sym__while] = STATE(765), - [sym_livewire] = STATE(770), - [sym__persist] = STATE(763), - [sym__teleport] = STATE(763), - [sym__volt] = STATE(763), - [sym_text] = STATE(762), - [aux_sym__if_statement_directive_body_repeat1] = STATE(94), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(1921), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [94] = { - [sym__definition] = STATE(634), + [sym__definition] = STATE(808), [sym_comment] = STATE(94), - [sym_keyword] = STATE(774), - [sym_php_statement] = STATE(774), - [sym__escaped] = STATE(772), - [sym__unescaped] = STATE(772), - [sym__raw] = STATE(772), - [sym__inline_raw] = STATE(771), - [sym__multi_line_raw] = STATE(771), - [sym_attribute] = STATE(774), - [sym__inline_directive] = STATE(774), - [sym__nested_directive] = STATE(774), - [sym_fragment] = STATE(770), - [sym_section] = STATE(770), - [sym_once] = STATE(770), - [sym_verbatim] = STATE(770), - [sym_stack] = STATE(770), - [sym__push] = STATE(767), - [sym__pushOnce] = STATE(767), - [sym__pushIf] = STATE(767), - [sym__prepend] = STATE(767), - [sym__prependOnce] = STATE(767), - [sym_conditional] = STATE(770), - [sym_conditional_keyword] = STATE(634), - [sym__if] = STATE(766), - [sym__unless] = STATE(766), - [sym__isset] = STATE(766), - [sym__empty] = STATE(766), - [sym__auth] = STATE(766), - [sym__guest] = STATE(766), - [sym__production] = STATE(766), - [sym__env] = STATE(766), - [sym__hasSection] = STATE(766), - [sym__sectionMissing] = STATE(766), - [sym__error] = STATE(766), - [sym__custom] = STATE(766), - [sym_switch] = STATE(770), - [sym_loop] = STATE(770), - [sym_loop_operator] = STATE(774), - [sym__for] = STATE(765), - [sym__foreach] = STATE(765), - [sym__forelse] = STATE(765), - [sym__while] = STATE(765), - [sym_livewire] = STATE(770), - [sym__persist] = STATE(763), - [sym__teleport] = STATE(763), - [sym__volt] = STATE(763), - [sym_text] = STATE(762), - [aux_sym__if_statement_directive_body_repeat1] = STATE(73), + [sym_keyword] = STATE(910), + [sym_php_statement] = STATE(910), + [sym__escaped] = STATE(909), + [sym__unescaped] = STATE(909), + [sym__raw] = STATE(909), + [sym__inline_raw] = STATE(908), + [sym__multi_line_raw] = STATE(908), + [sym_attribute] = STATE(910), + [sym__inline_directive] = STATE(910), + [sym__nested_directive] = STATE(910), + [sym_fragment] = STATE(907), + [sym_section] = STATE(907), + [sym_once] = STATE(907), + [sym_verbatim] = STATE(907), + [sym_stack] = STATE(907), + [sym__push] = STATE(906), + [sym__pushOnce] = STATE(906), + [sym__pushIf] = STATE(906), + [sym__prepend] = STATE(906), + [sym__prependOnce] = STATE(906), + [sym_conditional] = STATE(907), + [sym_conditional_keyword] = STATE(808), + [sym__if] = STATE(905), + [sym__unless] = STATE(905), + [sym__isset] = STATE(905), + [sym__empty] = STATE(905), + [sym__auth] = STATE(905), + [sym__guest] = STATE(905), + [sym__production] = STATE(905), + [sym__env] = STATE(905), + [sym__hasSection] = STATE(905), + [sym__sectionMissing] = STATE(905), + [sym__error] = STATE(905), + [sym__can] = STATE(905), + [sym__cannot] = STATE(905), + [sym__canany] = STATE(905), + [sym__custom] = STATE(905), + [sym_switch] = STATE(907), + [sym_loop] = STATE(907), + [sym_loop_operator] = STATE(910), + [sym__for] = STATE(904), + [sym__foreach] = STATE(904), + [sym__forelse] = STATE(904), + [sym__while] = STATE(904), + [sym_livewire] = STATE(907), + [sym__persist] = STATE(902), + [sym__teleport] = STATE(902), + [sym__volt] = STATE(902), + [sym_text] = STATE(900), + [aux_sym__if_statement_directive_body_repeat1] = STATE(76), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(1923), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1927), + [anon_sym_ATphp] = ACTIONS(1929), + [aux_sym_attribute_token1] = ACTIONS(1931), + [aux_sym__inline_directive_token1] = ACTIONS(1933), + [anon_sym_ATfragment] = ACTIONS(1935), + [anon_sym_ATsection] = ACTIONS(1937), + [anon_sym_ATonce] = ACTIONS(1939), + [anon_sym_ATverbatim] = ACTIONS(1941), + [anon_sym_ATpush] = ACTIONS(1943), + [anon_sym_ATpushOnce] = ACTIONS(1945), + [anon_sym_ATpushIf] = ACTIONS(1947), + [anon_sym_ATprepend] = ACTIONS(1949), + [anon_sym_ATprependOnce] = ACTIONS(1951), + [anon_sym_ATelse] = ACTIONS(1953), + [aux_sym_conditional_keyword_token1] = ACTIONS(1955), + [anon_sym_ATif] = ACTIONS(1957), + [anon_sym_ATunless] = ACTIONS(1959), + [anon_sym_ATisset] = ACTIONS(1961), + [anon_sym_ATempty] = ACTIONS(1963), + [anon_sym_ATauth] = ACTIONS(1965), + [anon_sym_ATguest] = ACTIONS(1967), + [anon_sym_ATproduction] = ACTIONS(1969), + [anon_sym_ATenv] = ACTIONS(1971), + [anon_sym_AThasSection] = ACTIONS(1973), + [anon_sym_ATsectionMissing] = ACTIONS(1975), + [anon_sym_ATerror] = ACTIONS(1977), + [anon_sym_ATcan] = ACTIONS(1979), + [anon_sym_ATcannot] = ACTIONS(1981), + [anon_sym_ATendcannot] = ACTIONS(489), + [anon_sym_ATcanany] = ACTIONS(1983), + [aux_sym__custom_token1] = ACTIONS(1985), + [aux_sym__custom_token2] = ACTIONS(1987), + [anon_sym_ATswitch] = ACTIONS(1989), + [aux_sym_loop_operator_token1] = ACTIONS(1991), + [anon_sym_ATfor] = ACTIONS(1993), + [anon_sym_ATforeach] = ACTIONS(1995), + [anon_sym_ATforelse] = ACTIONS(1997), + [anon_sym_ATwhile] = ACTIONS(1999), + [anon_sym_ATpersist] = ACTIONS(2001), + [anon_sym_ATteleport] = ACTIONS(2003), + [anon_sym_ATvolt] = ACTIONS(2005), + [aux_sym_text_token1] = ACTIONS(2007), + [aux_sym_text_token2] = ACTIONS(2007), + [aux_sym_text_token3] = ACTIONS(2009), }, [95] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1264), [sym_comment] = STATE(95), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(95), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2011), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [96] = { - [sym__definition] = STATE(495), + [sym__definition] = STATE(622), [sym_comment] = STATE(96), - [sym_keyword] = STATE(908), - [sym_php_statement] = STATE(908), - [sym__escaped] = STATE(907), - [sym__unescaped] = STATE(907), - [sym__raw] = STATE(907), - [sym__inline_raw] = STATE(905), - [sym__multi_line_raw] = STATE(905), - [sym_attribute] = STATE(908), - [sym__inline_directive] = STATE(908), - [sym__nested_directive] = STATE(908), - [sym_fragment] = STATE(904), - [sym_section] = STATE(904), - [sym_once] = STATE(904), - [sym_verbatim] = STATE(904), - [sym_stack] = STATE(904), - [sym__push] = STATE(902), - [sym__pushOnce] = STATE(902), - [sym__pushIf] = STATE(902), - [sym__prepend] = STATE(902), - [sym__prependOnce] = STATE(902), - [sym_conditional] = STATE(904), - [sym_conditional_keyword] = STATE(495), - [sym__if] = STATE(901), - [sym__unless] = STATE(901), - [sym__isset] = STATE(901), - [sym__empty] = STATE(901), - [sym__auth] = STATE(901), - [sym__guest] = STATE(901), - [sym__production] = STATE(901), - [sym__env] = STATE(901), - [sym__hasSection] = STATE(901), - [sym__sectionMissing] = STATE(901), - [sym__error] = STATE(901), - [sym__custom] = STATE(901), - [sym_switch] = STATE(904), - [sym_loop] = STATE(904), - [sym_loop_operator] = STATE(908), - [sym__for] = STATE(899), - [sym__foreach] = STATE(899), - [sym__forelse] = STATE(899), - [sym__while] = STATE(899), - [sym_livewire] = STATE(904), - [sym__persist] = STATE(898), - [sym__teleport] = STATE(898), - [sym__volt] = STATE(898), - [sym_text] = STATE(897), - [aux_sym__if_statement_directive_body_repeat1] = STATE(96), + [sym_keyword] = STATE(1202), + [sym_php_statement] = STATE(1202), + [sym__escaped] = STATE(1203), + [sym__unescaped] = STATE(1203), + [sym__raw] = STATE(1203), + [sym__inline_raw] = STATE(1204), + [sym__multi_line_raw] = STATE(1204), + [sym_attribute] = STATE(1202), + [sym__inline_directive] = STATE(1202), + [sym__nested_directive] = STATE(1202), + [sym_fragment] = STATE(1205), + [sym_section] = STATE(1205), + [sym_once] = STATE(1205), + [sym_verbatim] = STATE(1205), + [sym_stack] = STATE(1205), + [sym__push] = STATE(1206), + [sym__pushOnce] = STATE(1206), + [sym__pushIf] = STATE(1206), + [sym__prepend] = STATE(1206), + [sym__prependOnce] = STATE(1206), + [sym_conditional] = STATE(1205), + [sym_conditional_keyword] = STATE(622), + [sym__if] = STATE(1207), + [sym__unless] = STATE(1207), + [sym__isset] = STATE(1207), + [sym__empty] = STATE(1207), + [sym__auth] = STATE(1207), + [sym__guest] = STATE(1207), + [sym__production] = STATE(1207), + [sym__env] = STATE(1207), + [sym__hasSection] = STATE(1207), + [sym__sectionMissing] = STATE(1207), + [sym__error] = STATE(1207), + [sym__can] = STATE(1207), + [sym__cannot] = STATE(1207), + [sym__canany] = STATE(1207), + [sym__custom] = STATE(1207), + [sym_switch] = STATE(1205), + [sym_loop] = STATE(1205), + [sym_loop_operator] = STATE(1202), + [sym__for] = STATE(1208), + [sym__foreach] = STATE(1208), + [sym__forelse] = STATE(1208), + [sym__while] = STATE(1208), + [sym_livewire] = STATE(1205), + [sym__persist] = STATE(1209), + [sym__teleport] = STATE(1209), + [sym__volt] = STATE(1209), + [sym_text] = STATE(1210), + [aux_sym__if_statement_directive_body_repeat1] = STATE(129), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2013), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2015), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2017), + [anon_sym_ATphp] = ACTIONS(2019), + [aux_sym_attribute_token1] = ACTIONS(2021), + [aux_sym__inline_directive_token1] = ACTIONS(2023), + [anon_sym_ATfragment] = ACTIONS(2025), + [anon_sym_ATsection] = ACTIONS(2027), + [anon_sym_ATonce] = ACTIONS(2029), + [anon_sym_ATverbatim] = ACTIONS(2031), + [anon_sym_ATpush] = ACTIONS(2033), + [anon_sym_ATpushOnce] = ACTIONS(2035), + [anon_sym_ATpushIf] = ACTIONS(2037), + [anon_sym_ATprepend] = ACTIONS(2039), + [anon_sym_ATprependOnce] = ACTIONS(2041), + [anon_sym_ATelse] = ACTIONS(2043), + [aux_sym_conditional_keyword_token1] = ACTIONS(2045), + [anon_sym_ATif] = ACTIONS(2047), + [anon_sym_ATunless] = ACTIONS(2049), + [anon_sym_ATisset] = ACTIONS(2051), + [anon_sym_ATendisset] = ACTIONS(489), + [anon_sym_ATempty] = ACTIONS(2053), + [anon_sym_ATauth] = ACTIONS(2055), + [anon_sym_ATguest] = ACTIONS(2057), + [anon_sym_ATproduction] = ACTIONS(2059), + [anon_sym_ATenv] = ACTIONS(2061), + [anon_sym_AThasSection] = ACTIONS(2063), + [anon_sym_ATsectionMissing] = ACTIONS(2065), + [anon_sym_ATerror] = ACTIONS(2067), + [anon_sym_ATcan] = ACTIONS(2069), + [anon_sym_ATcannot] = ACTIONS(2071), + [anon_sym_ATcanany] = ACTIONS(2073), + [aux_sym__custom_token1] = ACTIONS(2075), + [aux_sym__custom_token2] = ACTIONS(2077), + [anon_sym_ATswitch] = ACTIONS(2079), + [aux_sym_loop_operator_token1] = ACTIONS(2081), + [anon_sym_ATfor] = ACTIONS(2083), + [anon_sym_ATforeach] = ACTIONS(2085), + [anon_sym_ATforelse] = ACTIONS(2087), + [anon_sym_ATwhile] = ACTIONS(2089), + [anon_sym_ATpersist] = ACTIONS(2091), + [anon_sym_ATteleport] = ACTIONS(2093), + [anon_sym_ATvolt] = ACTIONS(2095), + [aux_sym_text_token1] = ACTIONS(2097), + [aux_sym_text_token2] = ACTIONS(2097), + [aux_sym_text_token3] = ACTIONS(2099), }, [97] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1164), [sym_comment] = STATE(97), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(132), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATendguest] = ACTIONS(1919), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [98] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(808), [sym_comment] = STATE(98), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(95), + [sym_keyword] = STATE(910), + [sym_php_statement] = STATE(910), + [sym__escaped] = STATE(909), + [sym__unescaped] = STATE(909), + [sym__raw] = STATE(909), + [sym__inline_raw] = STATE(908), + [sym__multi_line_raw] = STATE(908), + [sym_attribute] = STATE(910), + [sym__inline_directive] = STATE(910), + [sym__nested_directive] = STATE(910), + [sym_fragment] = STATE(907), + [sym_section] = STATE(907), + [sym_once] = STATE(907), + [sym_verbatim] = STATE(907), + [sym_stack] = STATE(907), + [sym__push] = STATE(906), + [sym__pushOnce] = STATE(906), + [sym__pushIf] = STATE(906), + [sym__prepend] = STATE(906), + [sym__prependOnce] = STATE(906), + [sym_conditional] = STATE(907), + [sym_conditional_keyword] = STATE(808), + [sym__if] = STATE(905), + [sym__unless] = STATE(905), + [sym__isset] = STATE(905), + [sym__empty] = STATE(905), + [sym__auth] = STATE(905), + [sym__guest] = STATE(905), + [sym__production] = STATE(905), + [sym__env] = STATE(905), + [sym__hasSection] = STATE(905), + [sym__sectionMissing] = STATE(905), + [sym__error] = STATE(905), + [sym__can] = STATE(905), + [sym__cannot] = STATE(905), + [sym__canany] = STATE(905), + [sym__custom] = STATE(905), + [sym_switch] = STATE(907), + [sym_loop] = STATE(907), + [sym_loop_operator] = STATE(910), + [sym__for] = STATE(904), + [sym__foreach] = STATE(904), + [sym__forelse] = STATE(904), + [sym__while] = STATE(904), + [sym_livewire] = STATE(907), + [sym__persist] = STATE(902), + [sym__teleport] = STATE(902), + [sym__volt] = STATE(902), + [sym_text] = STATE(900), + [aux_sym__if_statement_directive_body_repeat1] = STATE(94), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(1923), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1925), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1927), + [anon_sym_ATphp] = ACTIONS(1929), + [aux_sym_attribute_token1] = ACTIONS(1931), + [aux_sym__inline_directive_token1] = ACTIONS(1933), + [anon_sym_ATfragment] = ACTIONS(1935), + [anon_sym_ATsection] = ACTIONS(1937), + [anon_sym_ATonce] = ACTIONS(1939), + [anon_sym_ATverbatim] = ACTIONS(1941), + [anon_sym_ATpush] = ACTIONS(1943), + [anon_sym_ATpushOnce] = ACTIONS(1945), + [anon_sym_ATpushIf] = ACTIONS(1947), + [anon_sym_ATprepend] = ACTIONS(1949), + [anon_sym_ATprependOnce] = ACTIONS(1951), + [anon_sym_ATelse] = ACTIONS(1953), + [aux_sym_conditional_keyword_token1] = ACTIONS(1955), + [anon_sym_ATif] = ACTIONS(1957), + [anon_sym_ATunless] = ACTIONS(1959), + [anon_sym_ATisset] = ACTIONS(1961), + [anon_sym_ATempty] = ACTIONS(1963), + [anon_sym_ATauth] = ACTIONS(1965), + [anon_sym_ATguest] = ACTIONS(1967), + [anon_sym_ATproduction] = ACTIONS(1969), + [anon_sym_ATenv] = ACTIONS(1971), + [anon_sym_AThasSection] = ACTIONS(1973), + [anon_sym_ATsectionMissing] = ACTIONS(1975), + [anon_sym_ATerror] = ACTIONS(1977), + [anon_sym_ATcan] = ACTIONS(1979), + [anon_sym_ATcannot] = ACTIONS(1981), + [anon_sym_ATendcannot] = ACTIONS(319), + [anon_sym_ATcanany] = ACTIONS(1983), + [aux_sym__custom_token1] = ACTIONS(1985), + [aux_sym__custom_token2] = ACTIONS(1987), + [anon_sym_ATswitch] = ACTIONS(1989), + [aux_sym_loop_operator_token1] = ACTIONS(1991), + [anon_sym_ATfor] = ACTIONS(1993), + [anon_sym_ATforeach] = ACTIONS(1995), + [anon_sym_ATforelse] = ACTIONS(1997), + [anon_sym_ATwhile] = ACTIONS(1999), + [anon_sym_ATpersist] = ACTIONS(2001), + [anon_sym_ATteleport] = ACTIONS(2003), + [anon_sym_ATvolt] = ACTIONS(2005), + [aux_sym_text_token1] = ACTIONS(2007), + [aux_sym_text_token2] = ACTIONS(2007), + [aux_sym_text_token3] = ACTIONS(2009), }, [99] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(99), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2101), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [100] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(100), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2103), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [101] = { - [sym__definition] = STATE(1002), + [sym__definition] = STATE(890), [sym_comment] = STATE(101), - [sym_keyword] = STATE(1004), - [sym_php_statement] = STATE(1004), - [sym__escaped] = STATE(1005), - [sym__unescaped] = STATE(1005), - [sym__raw] = STATE(1005), - [sym__inline_raw] = STATE(1006), - [sym__multi_line_raw] = STATE(1006), - [sym_attribute] = STATE(1004), - [sym__inline_directive] = STATE(1004), - [sym__nested_directive] = STATE(1004), - [sym_fragment] = STATE(1007), - [sym_section] = STATE(1007), - [sym_once] = STATE(1007), - [sym_verbatim] = STATE(1007), - [sym_stack] = STATE(1007), - [sym__push] = STATE(1008), - [sym__pushOnce] = STATE(1008), - [sym__pushIf] = STATE(1008), - [sym__prepend] = STATE(1008), - [sym__prependOnce] = STATE(1008), - [sym_conditional] = STATE(1007), - [sym_conditional_keyword] = STATE(1002), - [sym__if] = STATE(1009), - [sym__unless] = STATE(1009), - [sym__isset] = STATE(1009), - [sym__empty] = STATE(1009), - [sym__auth] = STATE(1009), - [sym__guest] = STATE(1009), - [sym__production] = STATE(1009), - [sym__env] = STATE(1009), - [sym__hasSection] = STATE(1009), - [sym__sectionMissing] = STATE(1009), - [sym__error] = STATE(1009), - [sym__custom] = STATE(1009), - [sym_switch] = STATE(1007), - [sym_loop] = STATE(1007), - [sym_loop_operator] = STATE(1004), - [sym__for] = STATE(1010), - [sym__foreach] = STATE(1010), - [sym__forelse] = STATE(1010), - [sym__while] = STATE(1010), - [sym_livewire] = STATE(1007), - [sym__persist] = STATE(1011), - [sym__teleport] = STATE(1011), - [sym__volt] = STATE(1011), - [sym_text] = STATE(1012), - [aux_sym__if_statement_directive_body_repeat1] = STATE(66), + [sym_keyword] = STATE(1136), + [sym_php_statement] = STATE(1136), + [sym__escaped] = STATE(1137), + [sym__unescaped] = STATE(1137), + [sym__raw] = STATE(1137), + [sym__inline_raw] = STATE(1138), + [sym__multi_line_raw] = STATE(1138), + [sym_attribute] = STATE(1136), + [sym__inline_directive] = STATE(1136), + [sym__nested_directive] = STATE(1136), + [sym_fragment] = STATE(1139), + [sym_section] = STATE(1139), + [sym_once] = STATE(1139), + [sym_verbatim] = STATE(1139), + [sym_stack] = STATE(1139), + [sym__push] = STATE(1140), + [sym__pushOnce] = STATE(1140), + [sym__pushIf] = STATE(1140), + [sym__prepend] = STATE(1140), + [sym__prependOnce] = STATE(1140), + [sym_conditional] = STATE(1139), + [sym_conditional_keyword] = STATE(890), + [sym__if] = STATE(1141), + [sym__unless] = STATE(1141), + [sym__isset] = STATE(1141), + [sym__empty] = STATE(1141), + [sym__auth] = STATE(1141), + [sym__guest] = STATE(1141), + [sym__production] = STATE(1141), + [sym__env] = STATE(1141), + [sym__hasSection] = STATE(1141), + [sym__sectionMissing] = STATE(1141), + [sym__error] = STATE(1141), + [sym__can] = STATE(1141), + [sym__cannot] = STATE(1141), + [sym__canany] = STATE(1141), + [sym__custom] = STATE(1141), + [sym_switch] = STATE(1139), + [sym_loop] = STATE(1139), + [sym_loop_operator] = STATE(1136), + [sym__for] = STATE(1142), + [sym__foreach] = STATE(1142), + [sym__forelse] = STATE(1142), + [sym__while] = STATE(1142), + [sym_livewire] = STATE(1139), + [sym__persist] = STATE(1143), + [sym__teleport] = STATE(1143), + [sym__volt] = STATE(1143), + [sym_text] = STATE(1144), + [aux_sym__if_statement_directive_body_repeat1] = STATE(69), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(451), + [anon_sym_LBRACE_LBRACE] = ACTIONS(453), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(455), + [anon_sym_ATphp] = ACTIONS(457), + [aux_sym_attribute_token1] = ACTIONS(459), + [aux_sym__inline_directive_token1] = ACTIONS(461), + [anon_sym_ATfragment] = ACTIONS(463), + [anon_sym_ATsection] = ACTIONS(465), + [anon_sym_ATonce] = ACTIONS(467), + [anon_sym_ATverbatim] = ACTIONS(469), + [anon_sym_ATpush] = ACTIONS(471), + [anon_sym_ATpushOnce] = ACTIONS(473), + [anon_sym_ATpushIf] = ACTIONS(475), + [anon_sym_ATprepend] = ACTIONS(477), + [anon_sym_ATprependOnce] = ACTIONS(479), + [anon_sym_ATelse] = ACTIONS(481), + [aux_sym_conditional_keyword_token1] = ACTIONS(483), + [anon_sym_ATif] = ACTIONS(485), + [anon_sym_ATunless] = ACTIONS(487), + [anon_sym_ATendunless] = ACTIONS(319), + [anon_sym_ATisset] = ACTIONS(491), + [anon_sym_ATempty] = ACTIONS(493), + [anon_sym_ATauth] = ACTIONS(495), + [anon_sym_ATguest] = ACTIONS(497), + [anon_sym_ATproduction] = ACTIONS(499), + [anon_sym_ATenv] = ACTIONS(501), + [anon_sym_AThasSection] = ACTIONS(503), + [anon_sym_ATsectionMissing] = ACTIONS(505), + [anon_sym_ATerror] = ACTIONS(507), + [anon_sym_ATcan] = ACTIONS(509), + [anon_sym_ATcannot] = ACTIONS(511), + [anon_sym_ATcanany] = ACTIONS(513), + [aux_sym__custom_token1] = ACTIONS(515), + [aux_sym__custom_token2] = ACTIONS(517), + [anon_sym_ATswitch] = ACTIONS(519), + [aux_sym_loop_operator_token1] = ACTIONS(521), + [anon_sym_ATfor] = ACTIONS(523), + [anon_sym_ATforeach] = ACTIONS(525), + [anon_sym_ATforelse] = ACTIONS(527), + [anon_sym_ATwhile] = ACTIONS(529), + [anon_sym_ATpersist] = ACTIONS(531), + [anon_sym_ATteleport] = ACTIONS(533), + [anon_sym_ATvolt] = ACTIONS(535), + [aux_sym_text_token1] = ACTIONS(537), + [aux_sym_text_token2] = ACTIONS(537), + [aux_sym_text_token3] = ACTIONS(539), }, [102] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(102), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2105), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [103] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(103), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2107), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [104] = { - [sym__definition] = STATE(712), + [sym__definition] = STATE(1264), [sym_comment] = STATE(104), - [sym_keyword] = STATE(1067), - [sym_php_statement] = STATE(1067), - [sym__escaped] = STATE(1068), - [sym__unescaped] = STATE(1068), - [sym__raw] = STATE(1068), - [sym__inline_raw] = STATE(1069), - [sym__multi_line_raw] = STATE(1069), - [sym_attribute] = STATE(1067), - [sym__inline_directive] = STATE(1067), - [sym__nested_directive] = STATE(1067), - [sym_fragment] = STATE(1070), - [sym_section] = STATE(1070), - [sym_once] = STATE(1070), - [sym_verbatim] = STATE(1070), - [sym_stack] = STATE(1070), - [sym__push] = STATE(1071), - [sym__pushOnce] = STATE(1071), - [sym__pushIf] = STATE(1071), - [sym__prepend] = STATE(1071), - [sym__prependOnce] = STATE(1071), - [sym_conditional] = STATE(1070), - [sym_conditional_keyword] = STATE(712), - [sym__if] = STATE(1072), - [sym__unless] = STATE(1072), - [sym__isset] = STATE(1072), - [sym__empty] = STATE(1072), - [sym__auth] = STATE(1072), - [sym__guest] = STATE(1072), - [sym__production] = STATE(1072), - [sym__env] = STATE(1072), - [sym__hasSection] = STATE(1072), - [sym__sectionMissing] = STATE(1072), - [sym__error] = STATE(1072), - [sym__custom] = STATE(1072), - [sym_switch] = STATE(1070), - [sym_loop] = STATE(1070), - [sym_loop_operator] = STATE(1067), - [sym__for] = STATE(1073), - [sym__foreach] = STATE(1073), - [sym__forelse] = STATE(1073), - [sym__while] = STATE(1073), - [sym_livewire] = STATE(1070), - [sym__persist] = STATE(1074), - [sym__teleport] = STATE(1074), - [sym__volt] = STATE(1074), - [sym_text] = STATE(1075), - [aux_sym__if_statement_directive_body_repeat1] = STATE(112), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2109), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [105] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(105), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2111), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [106] = { - [sym__definition] = STATE(702), + [sym__definition] = STATE(1264), [sym_comment] = STATE(106), - [sym_keyword] = STATE(704), - [sym_php_statement] = STATE(704), - [sym__escaped] = STATE(703), - [sym__unescaped] = STATE(703), - [sym__raw] = STATE(703), - [sym__inline_raw] = STATE(699), - [sym__multi_line_raw] = STATE(699), - [sym_attribute] = STATE(704), - [sym__inline_directive] = STATE(704), - [sym__nested_directive] = STATE(704), - [sym_fragment] = STATE(698), - [sym_section] = STATE(698), - [sym_once] = STATE(698), - [sym_verbatim] = STATE(698), - [sym_stack] = STATE(698), - [sym__push] = STATE(697), - [sym__pushOnce] = STATE(697), - [sym__pushIf] = STATE(697), - [sym__prepend] = STATE(697), - [sym__prependOnce] = STATE(697), - [sym_conditional] = STATE(698), - [sym_conditional_keyword] = STATE(702), - [sym__if] = STATE(695), - [sym__unless] = STATE(695), - [sym__isset] = STATE(695), - [sym__empty] = STATE(695), - [sym__auth] = STATE(695), - [sym__guest] = STATE(695), - [sym__production] = STATE(695), - [sym__env] = STATE(695), - [sym__hasSection] = STATE(695), - [sym__sectionMissing] = STATE(695), - [sym__error] = STATE(695), - [sym__custom] = STATE(695), - [sym_switch] = STATE(698), - [sym_loop] = STATE(698), - [sym_loop_operator] = STATE(704), - [sym__for] = STATE(694), - [sym__foreach] = STATE(694), - [sym__forelse] = STATE(694), - [sym__while] = STATE(694), - [sym_livewire] = STATE(698), - [sym__persist] = STATE(693), - [sym__teleport] = STATE(693), - [sym__volt] = STATE(693), - [sym_text] = STATE(692), - [aux_sym__if_statement_directive_body_repeat1] = STATE(90), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2113), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [107] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(107), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2115), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [108] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(108), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2117), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [109] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(622), [sym_comment] = STATE(109), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1202), + [sym_php_statement] = STATE(1202), + [sym__escaped] = STATE(1203), + [sym__unescaped] = STATE(1203), + [sym__raw] = STATE(1203), + [sym__inline_raw] = STATE(1204), + [sym__multi_line_raw] = STATE(1204), + [sym_attribute] = STATE(1202), + [sym__inline_directive] = STATE(1202), + [sym__nested_directive] = STATE(1202), + [sym_fragment] = STATE(1205), + [sym_section] = STATE(1205), + [sym_once] = STATE(1205), + [sym_verbatim] = STATE(1205), + [sym_stack] = STATE(1205), + [sym__push] = STATE(1206), + [sym__pushOnce] = STATE(1206), + [sym__pushIf] = STATE(1206), + [sym__prepend] = STATE(1206), + [sym__prependOnce] = STATE(1206), + [sym_conditional] = STATE(1205), + [sym_conditional_keyword] = STATE(622), + [sym__if] = STATE(1207), + [sym__unless] = STATE(1207), + [sym__isset] = STATE(1207), + [sym__empty] = STATE(1207), + [sym__auth] = STATE(1207), + [sym__guest] = STATE(1207), + [sym__production] = STATE(1207), + [sym__env] = STATE(1207), + [sym__hasSection] = STATE(1207), + [sym__sectionMissing] = STATE(1207), + [sym__error] = STATE(1207), + [sym__can] = STATE(1207), + [sym__cannot] = STATE(1207), + [sym__canany] = STATE(1207), + [sym__custom] = STATE(1207), + [sym_switch] = STATE(1205), + [sym_loop] = STATE(1205), + [sym_loop_operator] = STATE(1202), + [sym__for] = STATE(1208), + [sym__foreach] = STATE(1208), + [sym__forelse] = STATE(1208), + [sym__while] = STATE(1208), + [sym_livewire] = STATE(1205), + [sym__persist] = STATE(1209), + [sym__teleport] = STATE(1209), + [sym__volt] = STATE(1209), + [sym_text] = STATE(1210), + [aux_sym__if_statement_directive_body_repeat1] = STATE(96), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2013), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2015), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2017), + [anon_sym_ATphp] = ACTIONS(2019), + [aux_sym_attribute_token1] = ACTIONS(2021), + [aux_sym__inline_directive_token1] = ACTIONS(2023), + [anon_sym_ATfragment] = ACTIONS(2025), + [anon_sym_ATsection] = ACTIONS(2027), + [anon_sym_ATonce] = ACTIONS(2029), + [anon_sym_ATverbatim] = ACTIONS(2031), + [anon_sym_ATpush] = ACTIONS(2033), + [anon_sym_ATpushOnce] = ACTIONS(2035), + [anon_sym_ATpushIf] = ACTIONS(2037), + [anon_sym_ATprepend] = ACTIONS(2039), + [anon_sym_ATprependOnce] = ACTIONS(2041), + [anon_sym_ATelse] = ACTIONS(2043), + [aux_sym_conditional_keyword_token1] = ACTIONS(2045), + [anon_sym_ATif] = ACTIONS(2047), + [anon_sym_ATunless] = ACTIONS(2049), + [anon_sym_ATisset] = ACTIONS(2051), + [anon_sym_ATendisset] = ACTIONS(319), + [anon_sym_ATempty] = ACTIONS(2053), + [anon_sym_ATauth] = ACTIONS(2055), + [anon_sym_ATguest] = ACTIONS(2057), + [anon_sym_ATproduction] = ACTIONS(2059), + [anon_sym_ATenv] = ACTIONS(2061), + [anon_sym_AThasSection] = ACTIONS(2063), + [anon_sym_ATsectionMissing] = ACTIONS(2065), + [anon_sym_ATerror] = ACTIONS(2067), + [anon_sym_ATcan] = ACTIONS(2069), + [anon_sym_ATcannot] = ACTIONS(2071), + [anon_sym_ATcanany] = ACTIONS(2073), + [aux_sym__custom_token1] = ACTIONS(2075), + [aux_sym__custom_token2] = ACTIONS(2077), + [anon_sym_ATswitch] = ACTIONS(2079), + [aux_sym_loop_operator_token1] = ACTIONS(2081), + [anon_sym_ATfor] = ACTIONS(2083), + [anon_sym_ATforeach] = ACTIONS(2085), + [anon_sym_ATforelse] = ACTIONS(2087), + [anon_sym_ATwhile] = ACTIONS(2089), + [anon_sym_ATpersist] = ACTIONS(2091), + [anon_sym_ATteleport] = ACTIONS(2093), + [anon_sym_ATvolt] = ACTIONS(2095), + [aux_sym_text_token1] = ACTIONS(2097), + [aux_sym_text_token2] = ACTIONS(2097), + [aux_sym_text_token3] = ACTIONS(2099), }, [110] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1264), [sym_comment] = STATE(110), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(110), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2119), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [111] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(735), [sym_comment] = STATE(111), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(982), + [sym_php_statement] = STATE(982), + [sym__escaped] = STATE(981), + [sym__unescaped] = STATE(981), + [sym__raw] = STATE(981), + [sym__inline_raw] = STATE(980), + [sym__multi_line_raw] = STATE(980), + [sym_attribute] = STATE(982), + [sym__inline_directive] = STATE(982), + [sym__nested_directive] = STATE(982), + [sym_fragment] = STATE(979), + [sym_section] = STATE(979), + [sym_once] = STATE(979), + [sym_verbatim] = STATE(979), + [sym_stack] = STATE(979), + [sym__push] = STATE(978), + [sym__pushOnce] = STATE(978), + [sym__pushIf] = STATE(978), + [sym__prepend] = STATE(978), + [sym__prependOnce] = STATE(978), + [sym_conditional] = STATE(979), + [sym_conditional_keyword] = STATE(735), + [sym__if] = STATE(977), + [sym__unless] = STATE(977), + [sym__isset] = STATE(977), + [sym__empty] = STATE(977), + [sym__auth] = STATE(977), + [sym__guest] = STATE(977), + [sym__production] = STATE(977), + [sym__env] = STATE(977), + [sym__hasSection] = STATE(977), + [sym__sectionMissing] = STATE(977), + [sym__error] = STATE(977), + [sym__can] = STATE(977), + [sym__cannot] = STATE(977), + [sym__canany] = STATE(977), + [sym__custom] = STATE(977), + [sym_switch] = STATE(979), + [sym_loop] = STATE(979), + [sym_loop_operator] = STATE(982), + [sym__for] = STATE(976), + [sym__foreach] = STATE(976), + [sym__forelse] = STATE(976), + [sym__while] = STATE(976), + [sym_livewire] = STATE(979), + [sym__persist] = STATE(975), + [sym__teleport] = STATE(975), + [sym__volt] = STATE(975), + [sym_text] = STATE(973), + [aux_sym__if_statement_directive_body_repeat1] = STATE(127), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2121), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2123), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2125), + [anon_sym_ATphp] = ACTIONS(2127), + [aux_sym_attribute_token1] = ACTIONS(2129), + [aux_sym__inline_directive_token1] = ACTIONS(2131), + [anon_sym_ATfragment] = ACTIONS(2133), + [anon_sym_ATsection] = ACTIONS(2135), + [anon_sym_ATonce] = ACTIONS(2137), + [anon_sym_ATverbatim] = ACTIONS(2139), + [anon_sym_ATpush] = ACTIONS(2141), + [anon_sym_ATpushOnce] = ACTIONS(2143), + [anon_sym_ATpushIf] = ACTIONS(2145), + [anon_sym_ATprepend] = ACTIONS(2147), + [anon_sym_ATprependOnce] = ACTIONS(2149), + [anon_sym_ATelse] = ACTIONS(2151), + [aux_sym_conditional_keyword_token1] = ACTIONS(2153), + [anon_sym_ATif] = ACTIONS(2155), + [anon_sym_ATunless] = ACTIONS(2157), + [anon_sym_ATisset] = ACTIONS(2159), + [anon_sym_ATempty] = ACTIONS(2161), + [anon_sym_ATauth] = ACTIONS(2163), + [anon_sym_ATguest] = ACTIONS(2165), + [anon_sym_ATproduction] = ACTIONS(2167), + [anon_sym_ATenv] = ACTIONS(2169), + [anon_sym_AThasSection] = ACTIONS(2171), + [anon_sym_ATsectionMissing] = ACTIONS(2173), + [anon_sym_ATerror] = ACTIONS(2175), + [anon_sym_ATcan] = ACTIONS(2177), + [anon_sym_ATendcan] = ACTIONS(319), + [anon_sym_ATcannot] = ACTIONS(2179), + [anon_sym_ATcanany] = ACTIONS(2181), + [aux_sym__custom_token1] = ACTIONS(2183), + [aux_sym__custom_token2] = ACTIONS(2185), + [anon_sym_ATswitch] = ACTIONS(2187), + [aux_sym_loop_operator_token1] = ACTIONS(2189), + [anon_sym_ATfor] = ACTIONS(2191), + [anon_sym_ATforeach] = ACTIONS(2193), + [anon_sym_ATforelse] = ACTIONS(2195), + [anon_sym_ATwhile] = ACTIONS(2197), + [anon_sym_ATpersist] = ACTIONS(2199), + [anon_sym_ATteleport] = ACTIONS(2201), + [anon_sym_ATvolt] = ACTIONS(2203), + [aux_sym_text_token1] = ACTIONS(2205), + [aux_sym_text_token2] = ACTIONS(2205), + [aux_sym_text_token3] = ACTIONS(2207), }, [112] = { - [sym__definition] = STATE(712), + [sym__definition] = STATE(1264), [sym_comment] = STATE(112), - [sym_keyword] = STATE(1067), - [sym_php_statement] = STATE(1067), - [sym__escaped] = STATE(1068), - [sym__unescaped] = STATE(1068), - [sym__raw] = STATE(1068), - [sym__inline_raw] = STATE(1069), - [sym__multi_line_raw] = STATE(1069), - [sym_attribute] = STATE(1067), - [sym__inline_directive] = STATE(1067), - [sym__nested_directive] = STATE(1067), - [sym_fragment] = STATE(1070), - [sym_section] = STATE(1070), - [sym_once] = STATE(1070), - [sym_verbatim] = STATE(1070), - [sym_stack] = STATE(1070), - [sym__push] = STATE(1071), - [sym__pushOnce] = STATE(1071), - [sym__pushIf] = STATE(1071), - [sym__prepend] = STATE(1071), - [sym__prependOnce] = STATE(1071), - [sym_conditional] = STATE(1070), - [sym_conditional_keyword] = STATE(712), - [sym__if] = STATE(1072), - [sym__unless] = STATE(1072), - [sym__isset] = STATE(1072), - [sym__empty] = STATE(1072), - [sym__auth] = STATE(1072), - [sym__guest] = STATE(1072), - [sym__production] = STATE(1072), - [sym__env] = STATE(1072), - [sym__hasSection] = STATE(1072), - [sym__sectionMissing] = STATE(1072), - [sym__error] = STATE(1072), - [sym__custom] = STATE(1072), - [sym_switch] = STATE(1070), - [sym_loop] = STATE(1070), - [sym_loop_operator] = STATE(1067), - [sym__for] = STATE(1073), - [sym__foreach] = STATE(1073), - [sym__forelse] = STATE(1073), - [sym__while] = STATE(1073), - [sym_livewire] = STATE(1070), - [sym__persist] = STATE(1074), - [sym__teleport] = STATE(1074), - [sym__volt] = STATE(1074), - [sym_text] = STATE(1075), - [aux_sym__if_statement_directive_body_repeat1] = STATE(77), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2209), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [113] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(113), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2211), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [114] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(114), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2213), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [115] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1164), [sym_comment] = STATE(115), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(132), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATendguest] = ACTIONS(2215), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [116] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(890), [sym_comment] = STATE(116), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(91), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1136), + [sym_php_statement] = STATE(1136), + [sym__escaped] = STATE(1137), + [sym__unescaped] = STATE(1137), + [sym__raw] = STATE(1137), + [sym__inline_raw] = STATE(1138), + [sym__multi_line_raw] = STATE(1138), + [sym_attribute] = STATE(1136), + [sym__inline_directive] = STATE(1136), + [sym__nested_directive] = STATE(1136), + [sym_fragment] = STATE(1139), + [sym_section] = STATE(1139), + [sym_once] = STATE(1139), + [sym_verbatim] = STATE(1139), + [sym_stack] = STATE(1139), + [sym__push] = STATE(1140), + [sym__pushOnce] = STATE(1140), + [sym__pushIf] = STATE(1140), + [sym__prepend] = STATE(1140), + [sym__prependOnce] = STATE(1140), + [sym_conditional] = STATE(1139), + [sym_conditional_keyword] = STATE(890), + [sym__if] = STATE(1141), + [sym__unless] = STATE(1141), + [sym__isset] = STATE(1141), + [sym__empty] = STATE(1141), + [sym__auth] = STATE(1141), + [sym__guest] = STATE(1141), + [sym__production] = STATE(1141), + [sym__env] = STATE(1141), + [sym__hasSection] = STATE(1141), + [sym__sectionMissing] = STATE(1141), + [sym__error] = STATE(1141), + [sym__can] = STATE(1141), + [sym__cannot] = STATE(1141), + [sym__canany] = STATE(1141), + [sym__custom] = STATE(1141), + [sym_switch] = STATE(1139), + [sym_loop] = STATE(1139), + [sym_loop_operator] = STATE(1136), + [sym__for] = STATE(1142), + [sym__foreach] = STATE(1142), + [sym__forelse] = STATE(1142), + [sym__while] = STATE(1142), + [sym_livewire] = STATE(1139), + [sym__persist] = STATE(1143), + [sym__teleport] = STATE(1143), + [sym__volt] = STATE(1143), + [sym_text] = STATE(1144), + [aux_sym__if_statement_directive_body_repeat1] = STATE(116), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2217), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2220), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2223), + [anon_sym_ATphp] = ACTIONS(2226), + [aux_sym_attribute_token1] = ACTIONS(2229), + [aux_sym__inline_directive_token1] = ACTIONS(2232), + [anon_sym_ATfragment] = ACTIONS(2235), + [anon_sym_ATsection] = ACTIONS(2238), + [anon_sym_ATonce] = ACTIONS(2241), + [anon_sym_ATverbatim] = ACTIONS(2244), + [anon_sym_ATpush] = ACTIONS(2247), + [anon_sym_ATpushOnce] = ACTIONS(2250), + [anon_sym_ATpushIf] = ACTIONS(2253), + [anon_sym_ATprepend] = ACTIONS(2256), + [anon_sym_ATprependOnce] = ACTIONS(2259), + [anon_sym_ATelse] = ACTIONS(2262), + [aux_sym_conditional_keyword_token1] = ACTIONS(2265), + [anon_sym_ATif] = ACTIONS(2268), + [anon_sym_ATunless] = ACTIONS(2271), + [anon_sym_ATendunless] = ACTIONS(804), + [anon_sym_ATisset] = ACTIONS(2274), + [anon_sym_ATempty] = ACTIONS(2277), + [anon_sym_ATauth] = ACTIONS(2280), + [anon_sym_ATguest] = ACTIONS(2283), + [anon_sym_ATproduction] = ACTIONS(2286), + [anon_sym_ATenv] = ACTIONS(2289), + [anon_sym_AThasSection] = ACTIONS(2292), + [anon_sym_ATsectionMissing] = ACTIONS(2295), + [anon_sym_ATerror] = ACTIONS(2298), + [anon_sym_ATcan] = ACTIONS(2301), + [anon_sym_ATcannot] = ACTIONS(2304), + [anon_sym_ATcanany] = ACTIONS(2307), + [aux_sym__custom_token1] = ACTIONS(2310), + [aux_sym__custom_token2] = ACTIONS(2313), + [anon_sym_ATswitch] = ACTIONS(2316), + [aux_sym_loop_operator_token1] = ACTIONS(2319), + [anon_sym_ATfor] = ACTIONS(2322), + [anon_sym_ATforeach] = ACTIONS(2325), + [anon_sym_ATforelse] = ACTIONS(2328), + [anon_sym_ATwhile] = ACTIONS(2331), + [anon_sym_ATpersist] = ACTIONS(2334), + [anon_sym_ATteleport] = ACTIONS(2337), + [anon_sym_ATvolt] = ACTIONS(2340), + [aux_sym_text_token1] = ACTIONS(2343), + [aux_sym_text_token2] = ACTIONS(2343), + [aux_sym_text_token3] = ACTIONS(2346), }, [117] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(117), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(72), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2349), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [118] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(118), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(114), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2351), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [119] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(119), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(97), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2353), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [120] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(120), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(84), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2355), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2358), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2361), + [anon_sym_ATphp] = ACTIONS(2364), + [aux_sym_attribute_token1] = ACTIONS(2367), + [aux_sym__inline_directive_token1] = ACTIONS(2370), + [anon_sym_ATfragment] = ACTIONS(2373), + [anon_sym_ATsection] = ACTIONS(2376), + [anon_sym_ATonce] = ACTIONS(2379), + [anon_sym_ATverbatim] = ACTIONS(2382), + [anon_sym_ATpush] = ACTIONS(2385), + [anon_sym_ATpushOnce] = ACTIONS(2388), + [anon_sym_ATpushIf] = ACTIONS(2391), + [anon_sym_ATprepend] = ACTIONS(2394), + [anon_sym_ATprependOnce] = ACTIONS(2397), + [anon_sym_ATelse] = ACTIONS(2400), + [aux_sym_conditional_keyword_token1] = ACTIONS(2403), + [anon_sym_ATif] = ACTIONS(2406), + [anon_sym_ATunless] = ACTIONS(2409), + [anon_sym_ATisset] = ACTIONS(2412), + [anon_sym_ATempty] = ACTIONS(2415), + [anon_sym_ATauth] = ACTIONS(2418), + [anon_sym_ATguest] = ACTIONS(2421), + [anon_sym_ATproduction] = ACTIONS(2424), + [anon_sym_ATendproduction] = ACTIONS(2427), + [anon_sym_ATenv] = ACTIONS(2429), + [anon_sym_AThasSection] = ACTIONS(2432), + [anon_sym_ATsectionMissing] = ACTIONS(2435), + [anon_sym_ATerror] = ACTIONS(2438), + [anon_sym_ATcan] = ACTIONS(2441), + [anon_sym_ATcannot] = ACTIONS(2444), + [anon_sym_ATcanany] = ACTIONS(2447), + [aux_sym__custom_token1] = ACTIONS(2450), + [aux_sym__custom_token2] = ACTIONS(2453), + [anon_sym_ATswitch] = ACTIONS(2456), + [aux_sym_loop_operator_token1] = ACTIONS(2459), + [anon_sym_ATfor] = ACTIONS(2462), + [anon_sym_ATforeach] = ACTIONS(2465), + [anon_sym_ATforelse] = ACTIONS(2468), + [anon_sym_ATwhile] = ACTIONS(2471), + [anon_sym_ATpersist] = ACTIONS(2474), + [anon_sym_ATteleport] = ACTIONS(2477), + [anon_sym_ATvolt] = ACTIONS(2480), + [aux_sym_text_token1] = ACTIONS(2483), + [aux_sym_text_token2] = ACTIONS(2483), + [aux_sym_text_token3] = ACTIONS(2486), }, [121] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(590), [sym_comment] = STATE(121), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(64), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1330), + [sym_php_statement] = STATE(1330), + [sym__escaped] = STATE(1331), + [sym__unescaped] = STATE(1331), + [sym__raw] = STATE(1331), + [sym__inline_raw] = STATE(1332), + [sym__multi_line_raw] = STATE(1332), + [sym_attribute] = STATE(1330), + [sym__inline_directive] = STATE(1330), + [sym__nested_directive] = STATE(1330), + [sym_fragment] = STATE(1333), + [sym_section] = STATE(1333), + [sym_once] = STATE(1333), + [sym_verbatim] = STATE(1333), + [sym_stack] = STATE(1333), + [sym__push] = STATE(1334), + [sym__pushOnce] = STATE(1334), + [sym__pushIf] = STATE(1334), + [sym__prepend] = STATE(1334), + [sym__prependOnce] = STATE(1334), + [sym_conditional] = STATE(1333), + [sym_conditional_keyword] = STATE(590), + [sym__if] = STATE(1335), + [sym__unless] = STATE(1335), + [sym__isset] = STATE(1335), + [sym__empty] = STATE(1335), + [sym__auth] = STATE(1335), + [sym__guest] = STATE(1335), + [sym__production] = STATE(1335), + [sym__env] = STATE(1335), + [sym__hasSection] = STATE(1335), + [sym__sectionMissing] = STATE(1335), + [sym__error] = STATE(1335), + [sym__can] = STATE(1335), + [sym__cannot] = STATE(1335), + [sym__canany] = STATE(1335), + [sym__custom] = STATE(1335), + [sym_switch] = STATE(1333), + [sym_loop] = STATE(1333), + [sym_loop_operator] = STATE(1330), + [sym__for] = STATE(1336), + [sym__foreach] = STATE(1336), + [sym__forelse] = STATE(1336), + [sym__while] = STATE(1336), + [sym_livewire] = STATE(1333), + [sym__persist] = STATE(1337), + [sym__teleport] = STATE(1337), + [sym__volt] = STATE(1337), + [sym_text] = STATE(1338), + [aux_sym__if_statement_directive_body_repeat1] = STATE(121), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2489), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2492), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2495), + [anon_sym_ATphp] = ACTIONS(2498), + [aux_sym_attribute_token1] = ACTIONS(2501), + [aux_sym__inline_directive_token1] = ACTIONS(2504), + [anon_sym_ATfragment] = ACTIONS(2507), + [anon_sym_ATsection] = ACTIONS(2510), + [anon_sym_ATonce] = ACTIONS(2513), + [anon_sym_ATverbatim] = ACTIONS(2516), + [anon_sym_ATpush] = ACTIONS(2519), + [anon_sym_ATpushOnce] = ACTIONS(2522), + [anon_sym_ATpushIf] = ACTIONS(2525), + [anon_sym_ATprepend] = ACTIONS(2528), + [anon_sym_ATprependOnce] = ACTIONS(2531), + [anon_sym_ATelse] = ACTIONS(2534), + [aux_sym_conditional_keyword_token1] = ACTIONS(2537), + [anon_sym_ATif] = ACTIONS(2540), + [anon_sym_ATunless] = ACTIONS(2543), + [anon_sym_ATisset] = ACTIONS(2546), + [anon_sym_ATempty] = ACTIONS(2549), + [anon_sym_ATauth] = ACTIONS(2552), + [anon_sym_ATguest] = ACTIONS(2555), + [anon_sym_ATproduction] = ACTIONS(2558), + [anon_sym_ATenv] = ACTIONS(2561), + [anon_sym_ATendenv] = ACTIONS(804), + [anon_sym_AThasSection] = ACTIONS(2564), + [anon_sym_ATsectionMissing] = ACTIONS(2567), + [anon_sym_ATerror] = ACTIONS(2570), + [anon_sym_ATcan] = ACTIONS(2573), + [anon_sym_ATcannot] = ACTIONS(2576), + [anon_sym_ATcanany] = ACTIONS(2579), + [aux_sym__custom_token1] = ACTIONS(2582), + [aux_sym__custom_token2] = ACTIONS(2585), + [anon_sym_ATswitch] = ACTIONS(2588), + [aux_sym_loop_operator_token1] = ACTIONS(2591), + [anon_sym_ATfor] = ACTIONS(2594), + [anon_sym_ATforeach] = ACTIONS(2597), + [anon_sym_ATforelse] = ACTIONS(2600), + [anon_sym_ATwhile] = ACTIONS(2603), + [anon_sym_ATpersist] = ACTIONS(2606), + [anon_sym_ATteleport] = ACTIONS(2609), + [anon_sym_ATvolt] = ACTIONS(2612), + [aux_sym_text_token1] = ACTIONS(2615), + [aux_sym_text_token2] = ACTIONS(2615), + [aux_sym_text_token3] = ACTIONS(2618), }, [122] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(122), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2621), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [123] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1292), [sym_comment] = STATE(123), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(70), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(123), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2623), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2626), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2629), + [anon_sym_ATphp] = ACTIONS(2632), + [aux_sym_attribute_token1] = ACTIONS(2635), + [aux_sym__inline_directive_token1] = ACTIONS(2638), + [anon_sym_ATfragment] = ACTIONS(2641), + [anon_sym_ATsection] = ACTIONS(2644), + [anon_sym_ATonce] = ACTIONS(2647), + [anon_sym_ATverbatim] = ACTIONS(2650), + [anon_sym_ATpush] = ACTIONS(2653), + [anon_sym_ATpushOnce] = ACTIONS(2656), + [anon_sym_ATpushIf] = ACTIONS(2659), + [anon_sym_ATprepend] = ACTIONS(2662), + [anon_sym_ATprependOnce] = ACTIONS(2665), + [anon_sym_ATelse] = ACTIONS(2668), + [aux_sym_conditional_keyword_token1] = ACTIONS(2671), + [anon_sym_ATif] = ACTIONS(2674), + [anon_sym_ATunless] = ACTIONS(2677), + [anon_sym_ATisset] = ACTIONS(2680), + [anon_sym_ATempty] = ACTIONS(2683), + [anon_sym_ATauth] = ACTIONS(2686), + [anon_sym_ATendauth] = ACTIONS(804), + [anon_sym_ATguest] = ACTIONS(2689), + [anon_sym_ATproduction] = ACTIONS(2692), + [anon_sym_ATenv] = ACTIONS(2695), + [anon_sym_AThasSection] = ACTIONS(2698), + [anon_sym_ATsectionMissing] = ACTIONS(2701), + [anon_sym_ATerror] = ACTIONS(2704), + [anon_sym_ATcan] = ACTIONS(2707), + [anon_sym_ATcannot] = ACTIONS(2710), + [anon_sym_ATcanany] = ACTIONS(2713), + [aux_sym__custom_token1] = ACTIONS(2716), + [aux_sym__custom_token2] = ACTIONS(2719), + [anon_sym_ATswitch] = ACTIONS(2722), + [aux_sym_loop_operator_token1] = ACTIONS(2725), + [anon_sym_ATfor] = ACTIONS(2728), + [anon_sym_ATforeach] = ACTIONS(2731), + [anon_sym_ATforelse] = ACTIONS(2734), + [anon_sym_ATwhile] = ACTIONS(2737), + [anon_sym_ATpersist] = ACTIONS(2740), + [anon_sym_ATteleport] = ACTIONS(2743), + [anon_sym_ATvolt] = ACTIONS(2746), + [aux_sym_text_token1] = ACTIONS(2749), + [aux_sym_text_token2] = ACTIONS(2749), + [aux_sym_text_token3] = ACTIONS(2752), }, [124] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(124), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(63), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2755), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [125] = { - [sym__definition] = STATE(1092), + [sym__definition] = STATE(1264), [sym_comment] = STATE(125), - [sym_keyword] = STATE(599), - [sym_php_statement] = STATE(599), - [sym__escaped] = STATE(598), - [sym__unescaped] = STATE(598), - [sym__raw] = STATE(598), - [sym__inline_raw] = STATE(597), - [sym__multi_line_raw] = STATE(597), - [sym_attribute] = STATE(599), - [sym__inline_directive] = STATE(599), - [sym__nested_directive] = STATE(599), - [sym_fragment] = STATE(596), - [sym_section] = STATE(596), - [sym_once] = STATE(596), - [sym_verbatim] = STATE(596), - [sym_stack] = STATE(596), - [sym__push] = STATE(595), - [sym__pushOnce] = STATE(595), - [sym__pushIf] = STATE(595), - [sym__prepend] = STATE(595), - [sym__prependOnce] = STATE(595), - [sym_conditional] = STATE(596), - [sym_conditional_keyword] = STATE(1092), - [sym__if] = STATE(594), - [sym__unless] = STATE(594), - [sym__isset] = STATE(594), - [sym__empty] = STATE(594), - [sym__auth] = STATE(594), - [sym__guest] = STATE(594), - [sym__production] = STATE(594), - [sym__env] = STATE(594), - [sym__hasSection] = STATE(594), - [sym__sectionMissing] = STATE(594), - [sym__error] = STATE(594), - [sym__custom] = STATE(594), - [sym_switch] = STATE(596), - [sym_loop] = STATE(596), - [sym_loop_operator] = STATE(599), - [sym__for] = STATE(593), - [sym__foreach] = STATE(593), - [sym__forelse] = STATE(593), - [sym__while] = STATE(593), - [sym_livewire] = STATE(596), - [sym__persist] = STATE(592), - [sym__teleport] = STATE(592), - [sym__volt] = STATE(592), - [sym_text] = STATE(591), - [aux_sym__if_statement_directive_body_repeat1] = STATE(60), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2757), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [126] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1292), [sym_comment] = STATE(126), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(85), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(123), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATendauth] = ACTIONS(2215), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [127] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(735), [sym_comment] = STATE(127), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(65), - [sym_text] = STATE(481), + [sym_keyword] = STATE(982), + [sym_php_statement] = STATE(982), + [sym__escaped] = STATE(981), + [sym__unescaped] = STATE(981), + [sym__raw] = STATE(981), + [sym__inline_raw] = STATE(980), + [sym__multi_line_raw] = STATE(980), + [sym_attribute] = STATE(982), + [sym__inline_directive] = STATE(982), + [sym__nested_directive] = STATE(982), + [sym_fragment] = STATE(979), + [sym_section] = STATE(979), + [sym_once] = STATE(979), + [sym_verbatim] = STATE(979), + [sym_stack] = STATE(979), + [sym__push] = STATE(978), + [sym__pushOnce] = STATE(978), + [sym__pushIf] = STATE(978), + [sym__prepend] = STATE(978), + [sym__prependOnce] = STATE(978), + [sym_conditional] = STATE(979), + [sym_conditional_keyword] = STATE(735), + [sym__if] = STATE(977), + [sym__unless] = STATE(977), + [sym__isset] = STATE(977), + [sym__empty] = STATE(977), + [sym__auth] = STATE(977), + [sym__guest] = STATE(977), + [sym__production] = STATE(977), + [sym__env] = STATE(977), + [sym__hasSection] = STATE(977), + [sym__sectionMissing] = STATE(977), + [sym__error] = STATE(977), + [sym__can] = STATE(977), + [sym__cannot] = STATE(977), + [sym__canany] = STATE(977), + [sym__custom] = STATE(977), + [sym_switch] = STATE(979), + [sym_loop] = STATE(979), + [sym_loop_operator] = STATE(982), + [sym__for] = STATE(976), + [sym__foreach] = STATE(976), + [sym__forelse] = STATE(976), + [sym__while] = STATE(976), + [sym_livewire] = STATE(979), + [sym__persist] = STATE(975), + [sym__teleport] = STATE(975), + [sym__volt] = STATE(975), + [sym_text] = STATE(973), + [aux_sym__if_statement_directive_body_repeat1] = STATE(73), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2121), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2123), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2125), + [anon_sym_ATphp] = ACTIONS(2127), + [aux_sym_attribute_token1] = ACTIONS(2129), + [aux_sym__inline_directive_token1] = ACTIONS(2131), + [anon_sym_ATfragment] = ACTIONS(2133), + [anon_sym_ATsection] = ACTIONS(2135), + [anon_sym_ATonce] = ACTIONS(2137), + [anon_sym_ATverbatim] = ACTIONS(2139), + [anon_sym_ATpush] = ACTIONS(2141), + [anon_sym_ATpushOnce] = ACTIONS(2143), + [anon_sym_ATpushIf] = ACTIONS(2145), + [anon_sym_ATprepend] = ACTIONS(2147), + [anon_sym_ATprependOnce] = ACTIONS(2149), + [anon_sym_ATelse] = ACTIONS(2151), + [aux_sym_conditional_keyword_token1] = ACTIONS(2153), + [anon_sym_ATif] = ACTIONS(2155), + [anon_sym_ATunless] = ACTIONS(2157), + [anon_sym_ATisset] = ACTIONS(2159), + [anon_sym_ATempty] = ACTIONS(2161), + [anon_sym_ATauth] = ACTIONS(2163), + [anon_sym_ATguest] = ACTIONS(2165), + [anon_sym_ATproduction] = ACTIONS(2167), + [anon_sym_ATenv] = ACTIONS(2169), + [anon_sym_AThasSection] = ACTIONS(2171), + [anon_sym_ATsectionMissing] = ACTIONS(2173), + [anon_sym_ATerror] = ACTIONS(2175), + [anon_sym_ATcan] = ACTIONS(2177), + [anon_sym_ATendcan] = ACTIONS(489), + [anon_sym_ATcannot] = ACTIONS(2179), + [anon_sym_ATcanany] = ACTIONS(2181), + [aux_sym__custom_token1] = ACTIONS(2183), + [aux_sym__custom_token2] = ACTIONS(2185), + [anon_sym_ATswitch] = ACTIONS(2187), + [aux_sym_loop_operator_token1] = ACTIONS(2189), + [anon_sym_ATfor] = ACTIONS(2191), + [anon_sym_ATforeach] = ACTIONS(2193), + [anon_sym_ATforelse] = ACTIONS(2195), + [anon_sym_ATwhile] = ACTIONS(2197), + [anon_sym_ATpersist] = ACTIONS(2199), + [anon_sym_ATteleport] = ACTIONS(2201), + [anon_sym_ATvolt] = ACTIONS(2203), + [aux_sym_text_token1] = ACTIONS(2205), + [aux_sym_text_token2] = ACTIONS(2205), + [aux_sym_text_token3] = ACTIONS(2207), }, [128] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(590), [sym_comment] = STATE(128), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(116), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1330), + [sym_php_statement] = STATE(1330), + [sym__escaped] = STATE(1331), + [sym__unescaped] = STATE(1331), + [sym__raw] = STATE(1331), + [sym__inline_raw] = STATE(1332), + [sym__multi_line_raw] = STATE(1332), + [sym_attribute] = STATE(1330), + [sym__inline_directive] = STATE(1330), + [sym__nested_directive] = STATE(1330), + [sym_fragment] = STATE(1333), + [sym_section] = STATE(1333), + [sym_once] = STATE(1333), + [sym_verbatim] = STATE(1333), + [sym_stack] = STATE(1333), + [sym__push] = STATE(1334), + [sym__pushOnce] = STATE(1334), + [sym__pushIf] = STATE(1334), + [sym__prepend] = STATE(1334), + [sym__prependOnce] = STATE(1334), + [sym_conditional] = STATE(1333), + [sym_conditional_keyword] = STATE(590), + [sym__if] = STATE(1335), + [sym__unless] = STATE(1335), + [sym__isset] = STATE(1335), + [sym__empty] = STATE(1335), + [sym__auth] = STATE(1335), + [sym__guest] = STATE(1335), + [sym__production] = STATE(1335), + [sym__env] = STATE(1335), + [sym__hasSection] = STATE(1335), + [sym__sectionMissing] = STATE(1335), + [sym__error] = STATE(1335), + [sym__can] = STATE(1335), + [sym__cannot] = STATE(1335), + [sym__canany] = STATE(1335), + [sym__custom] = STATE(1335), + [sym_switch] = STATE(1333), + [sym_loop] = STATE(1333), + [sym_loop_operator] = STATE(1330), + [sym__for] = STATE(1336), + [sym__foreach] = STATE(1336), + [sym__forelse] = STATE(1336), + [sym__while] = STATE(1336), + [sym_livewire] = STATE(1333), + [sym__persist] = STATE(1337), + [sym__teleport] = STATE(1337), + [sym__volt] = STATE(1337), + [sym_text] = STATE(1338), + [aux_sym__if_statement_directive_body_repeat1] = STATE(121), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(269), + [anon_sym_LBRACE_LBRACE] = ACTIONS(271), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(273), + [anon_sym_ATphp] = ACTIONS(275), + [aux_sym_attribute_token1] = ACTIONS(277), + [aux_sym__inline_directive_token1] = ACTIONS(279), + [anon_sym_ATfragment] = ACTIONS(281), + [anon_sym_ATsection] = ACTIONS(283), + [anon_sym_ATonce] = ACTIONS(285), + [anon_sym_ATverbatim] = ACTIONS(287), + [anon_sym_ATpush] = ACTIONS(289), + [anon_sym_ATpushOnce] = ACTIONS(291), + [anon_sym_ATpushIf] = ACTIONS(293), + [anon_sym_ATprepend] = ACTIONS(295), + [anon_sym_ATprependOnce] = ACTIONS(297), + [anon_sym_ATelse] = ACTIONS(299), + [aux_sym_conditional_keyword_token1] = ACTIONS(301), + [anon_sym_ATif] = ACTIONS(303), + [anon_sym_ATunless] = ACTIONS(305), + [anon_sym_ATisset] = ACTIONS(307), + [anon_sym_ATempty] = ACTIONS(309), + [anon_sym_ATauth] = ACTIONS(311), + [anon_sym_ATguest] = ACTIONS(313), + [anon_sym_ATproduction] = ACTIONS(315), + [anon_sym_ATenv] = ACTIONS(317), + [anon_sym_ATendenv] = ACTIONS(489), + [anon_sym_AThasSection] = ACTIONS(321), + [anon_sym_ATsectionMissing] = ACTIONS(323), + [anon_sym_ATerror] = ACTIONS(325), + [anon_sym_ATcan] = ACTIONS(327), + [anon_sym_ATcannot] = ACTIONS(329), + [anon_sym_ATcanany] = ACTIONS(331), + [aux_sym__custom_token1] = ACTIONS(333), + [aux_sym__custom_token2] = ACTIONS(335), + [anon_sym_ATswitch] = ACTIONS(337), + [aux_sym_loop_operator_token1] = ACTIONS(339), + [anon_sym_ATfor] = ACTIONS(341), + [anon_sym_ATforeach] = ACTIONS(343), + [anon_sym_ATforelse] = ACTIONS(345), + [anon_sym_ATwhile] = ACTIONS(347), + [anon_sym_ATpersist] = ACTIONS(349), + [anon_sym_ATteleport] = ACTIONS(351), + [anon_sym_ATvolt] = ACTIONS(353), + [aux_sym_text_token1] = ACTIONS(355), + [aux_sym_text_token2] = ACTIONS(355), + [aux_sym_text_token3] = ACTIONS(357), }, [129] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(622), [sym_comment] = STATE(129), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(69), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1202), + [sym_php_statement] = STATE(1202), + [sym__escaped] = STATE(1203), + [sym__unescaped] = STATE(1203), + [sym__raw] = STATE(1203), + [sym__inline_raw] = STATE(1204), + [sym__multi_line_raw] = STATE(1204), + [sym_attribute] = STATE(1202), + [sym__inline_directive] = STATE(1202), + [sym__nested_directive] = STATE(1202), + [sym_fragment] = STATE(1205), + [sym_section] = STATE(1205), + [sym_once] = STATE(1205), + [sym_verbatim] = STATE(1205), + [sym_stack] = STATE(1205), + [sym__push] = STATE(1206), + [sym__pushOnce] = STATE(1206), + [sym__pushIf] = STATE(1206), + [sym__prepend] = STATE(1206), + [sym__prependOnce] = STATE(1206), + [sym_conditional] = STATE(1205), + [sym_conditional_keyword] = STATE(622), + [sym__if] = STATE(1207), + [sym__unless] = STATE(1207), + [sym__isset] = STATE(1207), + [sym__empty] = STATE(1207), + [sym__auth] = STATE(1207), + [sym__guest] = STATE(1207), + [sym__production] = STATE(1207), + [sym__env] = STATE(1207), + [sym__hasSection] = STATE(1207), + [sym__sectionMissing] = STATE(1207), + [sym__error] = STATE(1207), + [sym__can] = STATE(1207), + [sym__cannot] = STATE(1207), + [sym__canany] = STATE(1207), + [sym__custom] = STATE(1207), + [sym_switch] = STATE(1205), + [sym_loop] = STATE(1205), + [sym_loop_operator] = STATE(1202), + [sym__for] = STATE(1208), + [sym__foreach] = STATE(1208), + [sym__forelse] = STATE(1208), + [sym__while] = STATE(1208), + [sym_livewire] = STATE(1205), + [sym__persist] = STATE(1209), + [sym__teleport] = STATE(1209), + [sym__volt] = STATE(1209), + [sym_text] = STATE(1210), + [aux_sym__if_statement_directive_body_repeat1] = STATE(129), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2759), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2762), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2765), + [anon_sym_ATphp] = ACTIONS(2768), + [aux_sym_attribute_token1] = ACTIONS(2771), + [aux_sym__inline_directive_token1] = ACTIONS(2774), + [anon_sym_ATfragment] = ACTIONS(2777), + [anon_sym_ATsection] = ACTIONS(2780), + [anon_sym_ATonce] = ACTIONS(2783), + [anon_sym_ATverbatim] = ACTIONS(2786), + [anon_sym_ATpush] = ACTIONS(2789), + [anon_sym_ATpushOnce] = ACTIONS(2792), + [anon_sym_ATpushIf] = ACTIONS(2795), + [anon_sym_ATprepend] = ACTIONS(2798), + [anon_sym_ATprependOnce] = ACTIONS(2801), + [anon_sym_ATelse] = ACTIONS(2804), + [aux_sym_conditional_keyword_token1] = ACTIONS(2807), + [anon_sym_ATif] = ACTIONS(2810), + [anon_sym_ATunless] = ACTIONS(2813), + [anon_sym_ATisset] = ACTIONS(2816), + [anon_sym_ATendisset] = ACTIONS(804), + [anon_sym_ATempty] = ACTIONS(2819), + [anon_sym_ATauth] = ACTIONS(2822), + [anon_sym_ATguest] = ACTIONS(2825), + [anon_sym_ATproduction] = ACTIONS(2828), + [anon_sym_ATenv] = ACTIONS(2831), + [anon_sym_AThasSection] = ACTIONS(2834), + [anon_sym_ATsectionMissing] = ACTIONS(2837), + [anon_sym_ATerror] = ACTIONS(2840), + [anon_sym_ATcan] = ACTIONS(2843), + [anon_sym_ATcannot] = ACTIONS(2846), + [anon_sym_ATcanany] = ACTIONS(2849), + [aux_sym__custom_token1] = ACTIONS(2852), + [aux_sym__custom_token2] = ACTIONS(2855), + [anon_sym_ATswitch] = ACTIONS(2858), + [aux_sym_loop_operator_token1] = ACTIONS(2861), + [anon_sym_ATfor] = ACTIONS(2864), + [anon_sym_ATforeach] = ACTIONS(2867), + [anon_sym_ATforelse] = ACTIONS(2870), + [anon_sym_ATwhile] = ACTIONS(2873), + [anon_sym_ATpersist] = ACTIONS(2876), + [anon_sym_ATteleport] = ACTIONS(2879), + [anon_sym_ATvolt] = ACTIONS(2882), + [aux_sym_text_token1] = ACTIONS(2885), + [aux_sym_text_token2] = ACTIONS(2885), + [aux_sym_text_token3] = ACTIONS(2888), }, [130] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(130), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2891), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [131] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(131), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(109), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(2893), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [132] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1164), [sym_comment] = STATE(132), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(92), - [sym_text] = STATE(481), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(132), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(2895), + [anon_sym_LBRACE_LBRACE] = ACTIONS(2898), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(2901), + [anon_sym_ATphp] = ACTIONS(2904), + [aux_sym_attribute_token1] = ACTIONS(2907), + [aux_sym__inline_directive_token1] = ACTIONS(2910), + [anon_sym_ATfragment] = ACTIONS(2913), + [anon_sym_ATsection] = ACTIONS(2916), + [anon_sym_ATonce] = ACTIONS(2919), + [anon_sym_ATverbatim] = ACTIONS(2922), + [anon_sym_ATpush] = ACTIONS(2925), + [anon_sym_ATpushOnce] = ACTIONS(2928), + [anon_sym_ATpushIf] = ACTIONS(2931), + [anon_sym_ATprepend] = ACTIONS(2934), + [anon_sym_ATprependOnce] = ACTIONS(2937), + [anon_sym_ATelse] = ACTIONS(2940), + [aux_sym_conditional_keyword_token1] = ACTIONS(2943), + [anon_sym_ATif] = ACTIONS(2946), + [anon_sym_ATunless] = ACTIONS(2949), + [anon_sym_ATisset] = ACTIONS(2952), + [anon_sym_ATempty] = ACTIONS(2955), + [anon_sym_ATauth] = ACTIONS(2958), + [anon_sym_ATguest] = ACTIONS(2961), + [anon_sym_ATendguest] = ACTIONS(804), + [anon_sym_ATproduction] = ACTIONS(2964), + [anon_sym_ATenv] = ACTIONS(2967), + [anon_sym_AThasSection] = ACTIONS(2970), + [anon_sym_ATsectionMissing] = ACTIONS(2973), + [anon_sym_ATerror] = ACTIONS(2976), + [anon_sym_ATcan] = ACTIONS(2979), + [anon_sym_ATcannot] = ACTIONS(2982), + [anon_sym_ATcanany] = ACTIONS(2985), + [aux_sym__custom_token1] = ACTIONS(2988), + [aux_sym__custom_token2] = ACTIONS(2991), + [anon_sym_ATswitch] = ACTIONS(2994), + [aux_sym_loop_operator_token1] = ACTIONS(2997), + [anon_sym_ATfor] = ACTIONS(3000), + [anon_sym_ATforeach] = ACTIONS(3003), + [anon_sym_ATforelse] = ACTIONS(3006), + [anon_sym_ATwhile] = ACTIONS(3009), + [anon_sym_ATpersist] = ACTIONS(3012), + [anon_sym_ATteleport] = ACTIONS(3015), + [anon_sym_ATvolt] = ACTIONS(3018), + [aux_sym_text_token1] = ACTIONS(3021), + [aux_sym_text_token2] = ACTIONS(3021), + [aux_sym_text_token3] = ACTIONS(3024), }, [133] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1098), [sym_comment] = STATE(133), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(108), - [sym_text] = STATE(481), + [sym_keyword] = STATE(1070), + [sym_php_statement] = STATE(1070), + [sym__escaped] = STATE(1071), + [sym__unescaped] = STATE(1071), + [sym__raw] = STATE(1071), + [sym__inline_raw] = STATE(1072), + [sym__multi_line_raw] = STATE(1072), + [sym_attribute] = STATE(1070), + [sym__inline_directive] = STATE(1070), + [sym__nested_directive] = STATE(1070), + [sym_fragment] = STATE(1073), + [sym_section] = STATE(1073), + [sym_once] = STATE(1073), + [sym_verbatim] = STATE(1073), + [sym_stack] = STATE(1073), + [sym__push] = STATE(1074), + [sym__pushOnce] = STATE(1074), + [sym__pushIf] = STATE(1074), + [sym__prepend] = STATE(1074), + [sym__prependOnce] = STATE(1074), + [sym_conditional] = STATE(1073), + [sym_conditional_keyword] = STATE(1098), + [sym__if] = STATE(1075), + [sym__unless] = STATE(1075), + [sym__isset] = STATE(1075), + [sym__empty] = STATE(1075), + [sym__auth] = STATE(1075), + [sym__guest] = STATE(1075), + [sym__production] = STATE(1075), + [sym__env] = STATE(1075), + [sym__hasSection] = STATE(1075), + [sym__sectionMissing] = STATE(1075), + [sym__error] = STATE(1075), + [sym__can] = STATE(1075), + [sym__cannot] = STATE(1075), + [sym__canany] = STATE(1075), + [sym__custom] = STATE(1075), + [sym_switch] = STATE(1073), + [sym_loop] = STATE(1073), + [sym_loop_operator] = STATE(1070), + [sym__for] = STATE(1076), + [sym__foreach] = STATE(1076), + [sym__forelse] = STATE(1076), + [sym__while] = STATE(1076), + [sym_livewire] = STATE(1073), + [sym__persist] = STATE(1077), + [sym__teleport] = STATE(1077), + [sym__volt] = STATE(1077), + [sym_text] = STATE(1078), + [aux_sym__if_statement_directive_body_repeat1] = STATE(89), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(1429), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1431), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(1433), + [anon_sym_ATphp] = ACTIONS(1435), + [aux_sym_attribute_token1] = ACTIONS(1437), + [aux_sym__inline_directive_token1] = ACTIONS(1439), + [anon_sym_ATfragment] = ACTIONS(1441), + [anon_sym_ATsection] = ACTIONS(1443), + [anon_sym_ATonce] = ACTIONS(1445), + [anon_sym_ATverbatim] = ACTIONS(1447), + [anon_sym_ATpush] = ACTIONS(1449), + [anon_sym_ATpushOnce] = ACTIONS(1451), + [anon_sym_ATpushIf] = ACTIONS(1453), + [anon_sym_ATprepend] = ACTIONS(1455), + [anon_sym_ATprependOnce] = ACTIONS(1457), + [anon_sym_ATelse] = ACTIONS(1459), + [aux_sym_conditional_keyword_token1] = ACTIONS(1461), + [anon_sym_ATif] = ACTIONS(1463), + [anon_sym_ATendif] = ACTIONS(489), + [anon_sym_ATunless] = ACTIONS(1465), + [anon_sym_ATisset] = ACTIONS(1467), + [anon_sym_ATempty] = ACTIONS(1469), + [anon_sym_ATauth] = ACTIONS(1471), + [anon_sym_ATguest] = ACTIONS(1473), + [anon_sym_ATproduction] = ACTIONS(1475), + [anon_sym_ATenv] = ACTIONS(1477), + [anon_sym_AThasSection] = ACTIONS(1479), + [anon_sym_ATsectionMissing] = ACTIONS(1481), + [anon_sym_ATerror] = ACTIONS(1483), + [anon_sym_ATcan] = ACTIONS(1485), + [anon_sym_ATcannot] = ACTIONS(1487), + [anon_sym_ATcanany] = ACTIONS(1489), + [aux_sym__custom_token1] = ACTIONS(1491), + [aux_sym__custom_token2] = ACTIONS(1493), + [anon_sym_ATswitch] = ACTIONS(1495), + [aux_sym_loop_operator_token1] = ACTIONS(1497), + [anon_sym_ATfor] = ACTIONS(1499), + [anon_sym_ATforeach] = ACTIONS(1501), + [anon_sym_ATforelse] = ACTIONS(1503), + [anon_sym_ATwhile] = ACTIONS(1505), + [anon_sym_ATpersist] = ACTIONS(1507), + [anon_sym_ATteleport] = ACTIONS(1509), + [anon_sym_ATvolt] = ACTIONS(1511), + [aux_sym_text_token1] = ACTIONS(1513), + [aux_sym_text_token2] = ACTIONS(1513), + [aux_sym_text_token3] = ACTIONS(1515), }, [134] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(134), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(99), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(120), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATendproduction] = ACTIONS(3027), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [135] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(135), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(82), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(100), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [136] = { - [sym__definition] = STATE(1064), + [sym__definition] = STATE(1264), [sym_comment] = STATE(136), - [sym_keyword] = STATE(975), - [sym_php_statement] = STATE(975), - [sym__escaped] = STATE(840), - [sym__unescaped] = STATE(840), - [sym__raw] = STATE(840), - [sym__inline_raw] = STATE(966), - [sym__multi_line_raw] = STATE(966), - [sym_attribute] = STATE(975), - [sym__inline_directive] = STATE(975), - [sym__nested_directive] = STATE(975), - [sym_fragment] = STATE(956), - [sym_section] = STATE(956), - [sym_once] = STATE(956), - [sym_verbatim] = STATE(956), - [sym_stack] = STATE(956), - [sym__push] = STATE(945), - [sym__pushOnce] = STATE(945), - [sym__pushIf] = STATE(945), - [sym__prepend] = STATE(945), - [sym__prependOnce] = STATE(945), - [sym_conditional] = STATE(956), - [sym_conditional_keyword] = STATE(1064), - [sym__if] = STATE(938), - [sym__unless] = STATE(938), - [sym__isset] = STATE(938), - [sym__empty] = STATE(938), - [sym__auth] = STATE(938), - [sym__guest] = STATE(938), - [sym__production] = STATE(938), - [sym__env] = STATE(938), - [sym__hasSection] = STATE(938), - [sym__sectionMissing] = STATE(938), - [sym__error] = STATE(938), - [sym__custom] = STATE(938), - [sym_switch] = STATE(956), - [sym_loop] = STATE(956), - [sym_loop_operator] = STATE(975), - [sym__for] = STATE(910), - [sym__foreach] = STATE(910), - [sym__forelse] = STATE(910), - [sym__while] = STATE(910), - [sym_livewire] = STATE(956), - [sym__persist] = STATE(909), - [sym__teleport] = STATE(909), - [sym__volt] = STATE(909), - [sym_text] = STATE(906), - [aux_sym__if_statement_directive_body_repeat1] = STATE(98), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(103), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [137] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(137), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(67), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(93), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [138] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(138), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(103), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(102), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [139] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(139), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(88), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(90), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [140] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(140), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(75), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(113), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [141] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(141), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(115), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(104), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [142] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(142), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(86), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(85), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [143] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(143), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(111), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(80), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [144] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(144), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(107), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(105), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [145] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(145), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(113), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(124), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [146] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(146), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(78), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(81), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [147] = { - [sym__definition] = STATE(1065), + [sym__definition] = STATE(1264), [sym_comment] = STATE(147), - [sym_keyword] = STATE(543), - [sym_php_statement] = STATE(543), - [sym__escaped] = STATE(544), - [sym__unescaped] = STATE(544), - [sym__raw] = STATE(544), - [sym__inline_raw] = STATE(545), - [sym__multi_line_raw] = STATE(545), - [sym_attribute] = STATE(543), - [sym__inline_directive] = STATE(543), - [sym__nested_directive] = STATE(543), - [sym_fragment] = STATE(546), - [sym_section] = STATE(546), - [sym_once] = STATE(546), - [sym_verbatim] = STATE(546), - [sym_stack] = STATE(546), - [sym__push] = STATE(547), - [sym__pushOnce] = STATE(547), - [sym__pushIf] = STATE(547), - [sym__prepend] = STATE(547), - [sym__prependOnce] = STATE(547), - [sym_conditional] = STATE(546), - [sym_conditional_keyword] = STATE(1065), - [sym__if] = STATE(548), - [sym__unless] = STATE(548), - [sym__isset] = STATE(548), - [sym__empty] = STATE(548), - [sym__auth] = STATE(548), - [sym__guest] = STATE(548), - [sym__production] = STATE(548), - [sym__env] = STATE(548), - [sym__hasSection] = STATE(548), - [sym__sectionMissing] = STATE(548), - [sym__error] = STATE(548), - [sym__custom] = STATE(548), - [sym_switch] = STATE(546), - [sym_loop] = STATE(546), - [sym_loop_operator] = STATE(543), - [sym__for] = STATE(550), - [sym__foreach] = STATE(550), - [sym__forelse] = STATE(550), - [sym__while] = STATE(550), - [sym_livewire] = STATE(546), - [sym__persist] = STATE(790), - [sym__teleport] = STATE(790), - [sym__volt] = STATE(790), - [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(105), - [sym_text] = STATE(481), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(108), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [148] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1264), [sym_comment] = STATE(148), - [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(356), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(110), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [149] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1264), [sym_comment] = STATE(149), - [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(324), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(117), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [150] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(150), - [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), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(114), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [151] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(151), - [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(156), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(95), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [152] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(152), - [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), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(68), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [153] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(153), - [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(152), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(107), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [154] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(1264), [sym_comment] = STATE(154), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(118), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [155] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1264), [sym_comment] = STATE(155), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(112), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [156] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(156), - [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), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(122), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [157] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(157), - [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(158), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(130), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [158] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1164), [sym_comment] = STATE(158), - [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), + [sym_keyword] = STATE(642), + [sym_php_statement] = STATE(642), + [sym__escaped] = STATE(641), + [sym__unescaped] = STATE(641), + [sym__raw] = STATE(641), + [sym__inline_raw] = STATE(640), + [sym__multi_line_raw] = STATE(640), + [sym_attribute] = STATE(642), + [sym__inline_directive] = STATE(642), + [sym__nested_directive] = STATE(642), + [sym_fragment] = STATE(637), + [sym_section] = STATE(637), + [sym_once] = STATE(637), + [sym_verbatim] = STATE(637), + [sym_stack] = STATE(637), + [sym__push] = STATE(636), + [sym__pushOnce] = STATE(636), + [sym__pushIf] = STATE(636), + [sym__prepend] = STATE(636), + [sym__prependOnce] = STATE(636), + [sym_conditional] = STATE(637), + [sym_conditional_keyword] = STATE(1164), + [sym__if] = STATE(635), + [sym__unless] = STATE(635), + [sym__isset] = STATE(635), + [sym__empty] = STATE(635), + [sym__auth] = STATE(635), + [sym__guest] = STATE(635), + [sym__production] = STATE(635), + [sym__env] = STATE(635), + [sym__hasSection] = STATE(635), + [sym__sectionMissing] = STATE(635), + [sym__error] = STATE(635), + [sym__can] = STATE(635), + [sym__cannot] = STATE(635), + [sym__canany] = STATE(635), + [sym__custom] = STATE(635), + [sym_switch] = STATE(637), + [sym_loop] = STATE(637), + [sym_loop_operator] = STATE(642), + [sym__for] = STATE(634), + [sym__foreach] = STATE(634), + [sym__forelse] = STATE(634), + [sym__while] = STATE(634), + [sym_livewire] = STATE(637), + [sym__persist] = STATE(633), + [sym__teleport] = STATE(633), + [sym__volt] = STATE(633), + [sym_text] = STATE(632), + [aux_sym__if_statement_directive_body_repeat1] = STATE(115), [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(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), + [aux_sym_keyword_token1] = ACTIONS(91), + [anon_sym_LBRACE_LBRACE] = ACTIONS(93), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(95), + [anon_sym_ATphp] = ACTIONS(97), + [aux_sym_attribute_token1] = ACTIONS(99), + [aux_sym__inline_directive_token1] = ACTIONS(101), + [anon_sym_ATfragment] = ACTIONS(103), + [anon_sym_ATsection] = ACTIONS(105), + [anon_sym_ATonce] = ACTIONS(107), + [anon_sym_ATverbatim] = ACTIONS(109), + [anon_sym_ATpush] = ACTIONS(111), + [anon_sym_ATpushOnce] = ACTIONS(113), + [anon_sym_ATpushIf] = ACTIONS(115), + [anon_sym_ATprepend] = ACTIONS(117), + [anon_sym_ATprependOnce] = ACTIONS(119), + [anon_sym_ATelse] = ACTIONS(121), + [aux_sym_conditional_keyword_token1] = ACTIONS(123), + [anon_sym_ATif] = ACTIONS(125), + [anon_sym_ATunless] = ACTIONS(127), + [anon_sym_ATisset] = ACTIONS(129), + [anon_sym_ATempty] = ACTIONS(131), + [anon_sym_ATauth] = ACTIONS(133), + [anon_sym_ATguest] = ACTIONS(135), + [anon_sym_ATproduction] = ACTIONS(137), + [anon_sym_ATenv] = ACTIONS(139), + [anon_sym_AThasSection] = ACTIONS(141), + [anon_sym_ATsectionMissing] = ACTIONS(143), + [anon_sym_ATerror] = ACTIONS(145), + [anon_sym_ATcan] = ACTIONS(147), + [anon_sym_ATcannot] = ACTIONS(149), + [anon_sym_ATcanany] = ACTIONS(151), + [aux_sym__custom_token1] = ACTIONS(153), + [aux_sym__custom_token2] = ACTIONS(155), + [anon_sym_ATswitch] = ACTIONS(157), + [aux_sym_loop_operator_token1] = ACTIONS(159), + [anon_sym_ATfor] = ACTIONS(161), + [anon_sym_ATforeach] = ACTIONS(163), + [anon_sym_ATforelse] = ACTIONS(165), + [anon_sym_ATwhile] = ACTIONS(167), + [anon_sym_ATpersist] = ACTIONS(169), + [anon_sym_ATteleport] = ACTIONS(171), + [anon_sym_ATvolt] = ACTIONS(173), + [aux_sym_text_token1] = ACTIONS(177), + [aux_sym_text_token2] = ACTIONS(177), + [aux_sym_text_token3] = ACTIONS(179), }, [159] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1264), [sym_comment] = STATE(159), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(87), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [160] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(160), - [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(162), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(119), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [161] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(1292), [sym_comment] = STATE(161), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1068), + [sym_php_statement] = STATE(1068), + [sym__escaped] = STATE(1067), + [sym__unescaped] = STATE(1067), + [sym__raw] = STATE(1067), + [sym__inline_raw] = STATE(1057), + [sym__multi_line_raw] = STATE(1057), + [sym_attribute] = STATE(1068), + [sym__inline_directive] = STATE(1068), + [sym__nested_directive] = STATE(1068), + [sym_fragment] = STATE(1056), + [sym_section] = STATE(1056), + [sym_once] = STATE(1056), + [sym_verbatim] = STATE(1056), + [sym_stack] = STATE(1056), + [sym__push] = STATE(1031), + [sym__pushOnce] = STATE(1031), + [sym__pushIf] = STATE(1031), + [sym__prepend] = STATE(1031), + [sym__prependOnce] = STATE(1031), + [sym_conditional] = STATE(1056), + [sym_conditional_keyword] = STATE(1292), + [sym__if] = STATE(1028), + [sym__unless] = STATE(1028), + [sym__isset] = STATE(1028), + [sym__empty] = STATE(1028), + [sym__auth] = STATE(1028), + [sym__guest] = STATE(1028), + [sym__production] = STATE(1028), + [sym__env] = STATE(1028), + [sym__hasSection] = STATE(1028), + [sym__sectionMissing] = STATE(1028), + [sym__error] = STATE(1028), + [sym__can] = STATE(1028), + [sym__cannot] = STATE(1028), + [sym__canany] = STATE(1028), + [sym__custom] = STATE(1028), + [sym_switch] = STATE(1056), + [sym_loop] = STATE(1056), + [sym_loop_operator] = STATE(1068), + [sym__for] = STATE(1021), + [sym__foreach] = STATE(1021), + [sym__forelse] = STATE(1021), + [sym__while] = STATE(1021), + [sym_livewire] = STATE(1056), + [sym__persist] = STATE(1016), + [sym__teleport] = STATE(1016), + [sym__volt] = STATE(1016), + [sym_text] = STATE(985), + [aux_sym__if_statement_directive_body_repeat1] = STATE(126), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(181), + [anon_sym_LBRACE_LBRACE] = ACTIONS(183), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(185), + [anon_sym_ATphp] = ACTIONS(187), + [aux_sym_attribute_token1] = ACTIONS(189), + [aux_sym__inline_directive_token1] = ACTIONS(191), + [anon_sym_ATfragment] = ACTIONS(193), + [anon_sym_ATsection] = ACTIONS(195), + [anon_sym_ATonce] = ACTIONS(197), + [anon_sym_ATverbatim] = ACTIONS(199), + [anon_sym_ATpush] = ACTIONS(201), + [anon_sym_ATpushOnce] = ACTIONS(203), + [anon_sym_ATpushIf] = ACTIONS(205), + [anon_sym_ATprepend] = ACTIONS(207), + [anon_sym_ATprependOnce] = ACTIONS(209), + [anon_sym_ATelse] = ACTIONS(211), + [aux_sym_conditional_keyword_token1] = ACTIONS(213), + [anon_sym_ATif] = ACTIONS(215), + [anon_sym_ATunless] = ACTIONS(217), + [anon_sym_ATisset] = ACTIONS(219), + [anon_sym_ATempty] = ACTIONS(221), + [anon_sym_ATauth] = ACTIONS(223), + [anon_sym_ATguest] = ACTIONS(225), + [anon_sym_ATproduction] = ACTIONS(227), + [anon_sym_ATenv] = ACTIONS(229), + [anon_sym_AThasSection] = ACTIONS(231), + [anon_sym_ATsectionMissing] = ACTIONS(233), + [anon_sym_ATerror] = ACTIONS(235), + [anon_sym_ATcan] = ACTIONS(237), + [anon_sym_ATcannot] = ACTIONS(239), + [anon_sym_ATcanany] = ACTIONS(241), + [aux_sym__custom_token1] = ACTIONS(243), + [aux_sym__custom_token2] = ACTIONS(245), + [anon_sym_ATswitch] = ACTIONS(247), + [aux_sym_loop_operator_token1] = ACTIONS(249), + [anon_sym_ATfor] = ACTIONS(251), + [anon_sym_ATforeach] = ACTIONS(253), + [anon_sym_ATforelse] = ACTIONS(255), + [anon_sym_ATwhile] = ACTIONS(257), + [anon_sym_ATpersist] = ACTIONS(259), + [anon_sym_ATteleport] = ACTIONS(261), + [anon_sym_ATvolt] = ACTIONS(263), + [aux_sym_text_token1] = ACTIONS(265), + [aux_sym_text_token2] = ACTIONS(265), + [aux_sym_text_token3] = ACTIONS(267), }, [162] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(162), - [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), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(134), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [163] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(163), - [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), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(131), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [164] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(164), - [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(150), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(125), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [165] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1264), [sym_comment] = STATE(165), - [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(171), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(106), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [166] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1264), [sym_comment] = STATE(166), - [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(159), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(67), + [sym_text] = STATE(569), [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(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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [167] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(1264), [sym_comment] = STATE(167), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(161), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(99), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [168] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(1264), [sym_comment] = STATE(168), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(154), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(577), + [sym_php_statement] = STATE(577), + [sym__escaped] = STATE(576), + [sym__unescaped] = STATE(576), + [sym__raw] = STATE(576), + [sym__inline_raw] = STATE(575), + [sym__multi_line_raw] = STATE(575), + [sym_attribute] = STATE(577), + [sym__inline_directive] = STATE(577), + [sym__nested_directive] = STATE(577), + [sym_fragment] = STATE(574), + [sym_section] = STATE(574), + [sym_once] = STATE(574), + [sym_verbatim] = STATE(574), + [sym_stack] = STATE(574), + [sym__push] = STATE(573), + [sym__pushOnce] = STATE(573), + [sym__pushIf] = STATE(573), + [sym__prepend] = STATE(573), + [sym__prependOnce] = STATE(573), + [sym_conditional] = STATE(574), + [sym_conditional_keyword] = STATE(1264), + [sym__if] = STATE(572), + [sym__unless] = STATE(572), + [sym__isset] = STATE(572), + [sym__empty] = STATE(572), + [sym__auth] = STATE(572), + [sym__guest] = STATE(572), + [sym__production] = STATE(572), + [sym__env] = STATE(572), + [sym__hasSection] = STATE(572), + [sym__sectionMissing] = STATE(572), + [sym__error] = STATE(572), + [sym__can] = STATE(572), + [sym__cannot] = STATE(572), + [sym__canany] = STATE(572), + [sym__custom] = STATE(572), + [sym_switch] = STATE(574), + [sym_loop] = STATE(574), + [sym_loop_operator] = STATE(577), + [sym__for] = STATE(571), + [sym__foreach] = STATE(571), + [sym__forelse] = STATE(571), + [sym__while] = STATE(571), + [sym_livewire] = STATE(574), + [sym__persist] = STATE(570), + [sym__teleport] = STATE(570), + [sym__volt] = STATE(570), + [aux_sym__if_statement_directive_body_with_no_parameter] = STATE(83), + [sym_text] = STATE(569), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(359), + [anon_sym_LBRACE_LBRACE] = ACTIONS(361), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(363), + [anon_sym_ATphp] = ACTIONS(365), + [aux_sym_attribute_token1] = ACTIONS(367), + [aux_sym__inline_directive_token1] = ACTIONS(369), + [anon_sym_ATfragment] = ACTIONS(371), + [anon_sym_ATsection] = ACTIONS(373), + [anon_sym_ATonce] = ACTIONS(375), + [anon_sym_ATverbatim] = ACTIONS(377), + [anon_sym_ATpush] = ACTIONS(379), + [anon_sym_ATpushOnce] = ACTIONS(381), + [anon_sym_ATpushIf] = ACTIONS(383), + [anon_sym_ATprepend] = ACTIONS(385), + [anon_sym_ATprependOnce] = ACTIONS(387), + [anon_sym_ATelse] = ACTIONS(389), + [aux_sym_conditional_keyword_token1] = ACTIONS(391), + [anon_sym_ATif] = ACTIONS(393), + [anon_sym_ATunless] = ACTIONS(395), + [anon_sym_ATisset] = ACTIONS(397), + [anon_sym_ATempty] = ACTIONS(399), + [anon_sym_ATauth] = ACTIONS(401), + [anon_sym_ATguest] = ACTIONS(403), + [anon_sym_ATproduction] = ACTIONS(405), + [anon_sym_ATenv] = ACTIONS(409), + [anon_sym_AThasSection] = ACTIONS(411), + [anon_sym_ATsectionMissing] = ACTIONS(413), + [anon_sym_ATerror] = ACTIONS(415), + [anon_sym_ATcan] = ACTIONS(417), + [anon_sym_ATcannot] = ACTIONS(419), + [anon_sym_ATcanany] = ACTIONS(421), + [aux_sym__custom_token1] = ACTIONS(423), + [aux_sym__custom_token2] = ACTIONS(425), + [anon_sym_ATswitch] = ACTIONS(427), + [aux_sym_loop_operator_token1] = ACTIONS(429), + [anon_sym_ATfor] = ACTIONS(431), + [anon_sym_ATforeach] = ACTIONS(433), + [anon_sym_ATforelse] = ACTIONS(435), + [anon_sym_ATwhile] = ACTIONS(437), + [anon_sym_ATpersist] = ACTIONS(439), + [anon_sym_ATteleport] = ACTIONS(441), + [anon_sym_ATvolt] = ACTIONS(443), + [aux_sym_text_token1] = ACTIONS(445), + [aux_sym_text_token2] = ACTIONS(445), + [aux_sym_text_token3] = ACTIONS(447), }, [169] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(169), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(178), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(255), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3093), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [170] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(170), - [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(155), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(347), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3135), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [171] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(171), - [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(248), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3219), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [172] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(172), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3287), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [173] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(173), - [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(179), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3289), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [174] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(174), - [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(163), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(180), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3287), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [175] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(175), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(313), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3291), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [176] = { - [sym__definition] = STATE(1102), + [sym__definition] = STATE(2417), [sym_comment] = STATE(176), - [sym_keyword] = STATE(1724), - [sym_php_statement] = STATE(1724), - [sym__escaped] = STATE(1725), - [sym__unescaped] = STATE(1725), - [sym__raw] = STATE(1725), - [sym__inline_raw] = STATE(1726), - [sym__multi_line_raw] = STATE(1726), - [sym_attribute] = STATE(1724), - [sym__inline_directive] = STATE(1724), - [sym__nested_directive] = STATE(1724), - [sym_fragment] = STATE(1727), - [sym_section] = STATE(1727), - [sym_once] = STATE(1727), - [sym_verbatim] = STATE(1727), - [sym_stack] = STATE(1727), - [sym__push] = STATE(1728), - [sym__pushOnce] = STATE(1728), - [sym__pushIf] = STATE(1728), - [sym__prepend] = STATE(1728), - [sym__prependOnce] = STATE(1728), - [sym_conditional] = STATE(1727), - [sym__if] = STATE(1729), - [sym__unless] = STATE(1729), - [sym__isset] = STATE(1729), - [sym__empty] = STATE(1729), - [sym__auth] = STATE(1729), - [sym__guest] = STATE(1729), - [sym__production] = STATE(1729), - [sym__env] = STATE(1729), - [sym__hasSection] = STATE(1729), - [sym__sectionMissing] = STATE(1729), - [sym__error] = STATE(1729), - [sym__custom] = STATE(1729), - [sym_switch] = STATE(1727), - [sym_loop] = STATE(1727), - [sym_loop_operator] = STATE(1724), - [sym__for] = STATE(1730), - [sym__foreach] = STATE(1730), - [sym__forelse] = STATE(1730), - [sym__while] = STATE(1730), - [sym_livewire] = STATE(1727), - [sym__persist] = STATE(1731), - [sym__teleport] = STATE(1731), - [sym__volt] = STATE(1731), - [aux_sym__directive_body] = STATE(176), - [sym_text] = STATE(1732), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3293), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [177] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(177), - [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(172), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(175), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3295), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [178] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(178), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(176), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3297), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [179] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(179), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3299), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [180] = { - [sym__definition] = STATE(2142), + [sym__definition] = STATE(2443), [sym_comment] = STATE(180), - [sym_keyword] = STATE(2053), - [sym_php_statement] = STATE(2053), - [sym__escaped] = STATE(2052), - [sym__unescaped] = STATE(2052), - [sym__raw] = STATE(2052), - [sym__inline_raw] = STATE(2051), - [sym__multi_line_raw] = STATE(2051), - [sym_attribute] = STATE(2053), - [sym__inline_directive] = STATE(2053), - [sym__nested_directive] = STATE(2053), - [sym_fragment] = STATE(2050), - [sym_section] = STATE(2050), - [sym_once] = STATE(2050), - [sym_verbatim] = STATE(2050), - [sym_stack] = STATE(2050), - [sym__push] = STATE(2049), - [sym__pushOnce] = STATE(2049), - [sym__pushIf] = STATE(2049), - [sym__prepend] = STATE(2049), - [sym__prependOnce] = STATE(2049), - [sym_conditional] = STATE(2050), - [sym__if] = STATE(2048), - [sym__unless] = STATE(2048), - [sym__isset] = STATE(2048), - [sym__empty] = STATE(2048), - [sym__auth] = STATE(2048), - [sym__guest] = STATE(2048), - [sym__production] = STATE(2048), - [sym__env] = STATE(2048), - [sym__hasSection] = STATE(2048), - [sym__sectionMissing] = STATE(2048), - [sym__error] = STATE(2048), - [sym__custom] = STATE(2048), - [sym_switch] = STATE(2050), - [sym_loop] = STATE(2050), - [sym_loop_operator] = STATE(2053), - [sym__for] = STATE(2044), - [sym__foreach] = STATE(2044), - [sym__forelse] = STATE(2044), - [sym__while] = STATE(2044), - [sym_livewire] = STATE(2050), - [sym__persist] = STATE(2043), - [sym__teleport] = STATE(2043), - [sym__volt] = STATE(2043), - [aux_sym__directive_body] = STATE(295), - [sym_text] = STATE(2039), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3301), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [181] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(181), - [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(182), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(179), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3303), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [182] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(182), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3303), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [183] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(183), - [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(184), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(182), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3305), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [184] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(184), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3307), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [185] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(185), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(184), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3309), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [186] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(186), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3311), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [187] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(187), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(197), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(173), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3313), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [188] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(188), - [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(185), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(186), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3315), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [189] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(189), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3317), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [190] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(190), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(186), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3319), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [191] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(191), - [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(198), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3321), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [192] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(192), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(190), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3323), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [193] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(193), - [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(192), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(191), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3325), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [194] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(194), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3327), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [195] = { - [sym__definition] = STATE(2077), + [sym__definition] = STATE(2443), [sym_comment] = STATE(195), - [sym_keyword] = STATE(1898), - [sym_php_statement] = STATE(1898), - [sym__escaped] = STATE(1780), - [sym__unescaped] = STATE(1780), - [sym__raw] = STATE(1780), - [sym__inline_raw] = STATE(1862), - [sym__multi_line_raw] = STATE(1862), - [sym_attribute] = STATE(1898), - [sym__inline_directive] = STATE(1898), - [sym__nested_directive] = STATE(1898), - [sym_fragment] = STATE(1840), - [sym_section] = STATE(1840), - [sym_once] = STATE(1840), - [sym_verbatim] = STATE(1840), - [sym_stack] = STATE(1840), - [sym__push] = STATE(1839), - [sym__pushOnce] = STATE(1839), - [sym__pushIf] = STATE(1839), - [sym__prepend] = STATE(1839), - [sym__prependOnce] = STATE(1839), - [sym_conditional] = STATE(1840), - [sym__if] = STATE(1834), - [sym__unless] = STATE(1834), - [sym__isset] = STATE(1834), - [sym__empty] = STATE(1834), - [sym__auth] = STATE(1834), - [sym__guest] = STATE(1834), - [sym__production] = STATE(1834), - [sym__env] = STATE(1834), - [sym__hasSection] = STATE(1834), - [sym__sectionMissing] = STATE(1834), - [sym__error] = STATE(1834), - [sym__custom] = STATE(1834), - [sym_switch] = STATE(1840), - [sym_loop] = STATE(1840), - [sym_loop_operator] = STATE(1898), - [sym__for] = STATE(1803), - [sym__foreach] = STATE(1803), - [sym__forelse] = STATE(1803), - [sym__while] = STATE(1803), - [sym_livewire] = STATE(1840), - [sym__persist] = STATE(1781), - [sym__teleport] = STATE(1781), - [sym__volt] = STATE(1781), - [aux_sym__directive_body] = STATE(216), - [sym_text] = STATE(1662), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(194), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3329), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [196] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(196), - [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(194), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3329), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [197] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(197), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(196), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3331), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [198] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(198), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(189), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3333), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [199] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(199), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3333), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [200] = { - [sym__definition] = STATE(1207), + [sym__definition] = STATE(2443), [sym_comment] = STATE(200), - [sym_keyword] = STATE(1901), - [sym_php_statement] = STATE(1901), - [sym__escaped] = STATE(1902), - [sym__unescaped] = STATE(1902), - [sym__raw] = STATE(1902), - [sym__inline_raw] = STATE(1903), - [sym__multi_line_raw] = STATE(1903), - [sym_attribute] = STATE(1901), - [sym__inline_directive] = STATE(1901), - [sym__nested_directive] = STATE(1901), - [sym_fragment] = STATE(1904), - [sym_section] = STATE(1904), - [sym_once] = STATE(1904), - [sym_verbatim] = STATE(1904), - [sym_stack] = STATE(1904), - [sym__push] = STATE(1905), - [sym__pushOnce] = STATE(1905), - [sym__pushIf] = STATE(1905), - [sym__prepend] = STATE(1905), - [sym__prependOnce] = STATE(1905), - [sym_conditional] = STATE(1904), - [sym__if] = STATE(1906), - [sym__unless] = STATE(1906), - [sym__isset] = STATE(1906), - [sym__empty] = STATE(1906), - [sym__auth] = STATE(1906), - [sym__guest] = STATE(1906), - [sym__production] = STATE(1906), - [sym__env] = STATE(1906), - [sym__hasSection] = STATE(1906), - [sym__sectionMissing] = STATE(1906), - [sym__error] = STATE(1906), - [sym__custom] = STATE(1906), - [sym_switch] = STATE(1904), - [sym_loop] = STATE(1904), - [sym_loop_operator] = STATE(1901), - [sym__for] = STATE(1907), - [sym__foreach] = STATE(1907), - [sym__forelse] = STATE(1907), - [sym__while] = STATE(1907), - [sym_livewire] = STATE(1904), - [sym__persist] = STATE(1908), - [sym__teleport] = STATE(1908), - [sym__volt] = STATE(1908), - [aux_sym__directive_body] = STATE(344), - [sym_text] = STATE(1909), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(199), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3335), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [201] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(201), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(172), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3337), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [202] = { - [sym__definition] = STATE(1207), + [sym__definition] = STATE(2399), [sym_comment] = STATE(202), - [sym_keyword] = STATE(1901), - [sym_php_statement] = STATE(1901), - [sym__escaped] = STATE(1902), - [sym__unescaped] = STATE(1902), - [sym__raw] = STATE(1902), - [sym__inline_raw] = STATE(1903), - [sym__multi_line_raw] = STATE(1903), - [sym_attribute] = STATE(1901), - [sym__inline_directive] = STATE(1901), - [sym__nested_directive] = STATE(1901), - [sym_fragment] = STATE(1904), - [sym_section] = STATE(1904), - [sym_once] = STATE(1904), - [sym_verbatim] = STATE(1904), - [sym_stack] = STATE(1904), - [sym__push] = STATE(1905), - [sym__pushOnce] = STATE(1905), - [sym__pushIf] = STATE(1905), - [sym__prepend] = STATE(1905), - [sym__prependOnce] = STATE(1905), - [sym_conditional] = STATE(1904), - [sym__if] = STATE(1906), - [sym__unless] = STATE(1906), - [sym__isset] = STATE(1906), - [sym__empty] = STATE(1906), - [sym__auth] = STATE(1906), - [sym__guest] = STATE(1906), - [sym__production] = STATE(1906), - [sym__env] = STATE(1906), - [sym__hasSection] = STATE(1906), - [sym__sectionMissing] = STATE(1906), - [sym__error] = STATE(1906), - [sym__custom] = STATE(1906), - [sym_switch] = STATE(1904), - [sym_loop] = STATE(1904), - [sym_loop_operator] = STATE(1901), - [sym__for] = STATE(1907), - [sym__foreach] = STATE(1907), - [sym__forelse] = STATE(1907), - [sym__while] = STATE(1907), - [sym_livewire] = STATE(1904), - [sym__persist] = STATE(1908), - [sym__teleport] = STATE(1908), - [sym__volt] = STATE(1908), - [aux_sym__directive_body] = STATE(200), - [sym_text] = STATE(1909), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3339), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [203] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(203), - [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(189), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3341), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [204] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2452), [sym_comment] = STATE(204), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(199), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2341), + [sym_php_statement] = STATE(2341), + [sym__escaped] = STATE(2329), + [sym__unescaped] = STATE(2329), + [sym__raw] = STATE(2329), + [sym__inline_raw] = STATE(2252), + [sym__multi_line_raw] = STATE(2252), + [sym_attribute] = STATE(2341), + [sym__inline_directive] = STATE(2341), + [sym__nested_directive] = STATE(2341), + [sym_fragment] = STATE(2321), + [sym_section] = STATE(2321), + [sym_once] = STATE(2321), + [sym_verbatim] = STATE(2321), + [sym_stack] = STATE(2321), + [sym__push] = STATE(2320), + [sym__pushOnce] = STATE(2320), + [sym__pushIf] = STATE(2320), + [sym__prepend] = STATE(2320), + [sym__prependOnce] = STATE(2320), + [sym_conditional] = STATE(2321), + [sym__if] = STATE(2314), + [sym__unless] = STATE(2314), + [sym__isset] = STATE(2314), + [sym__empty] = STATE(2314), + [sym__auth] = STATE(2314), + [sym__guest] = STATE(2314), + [sym__production] = STATE(2314), + [sym__env] = STATE(2314), + [sym__hasSection] = STATE(2314), + [sym__sectionMissing] = STATE(2314), + [sym__error] = STATE(2314), + [sym__can] = STATE(2314), + [sym__cannot] = STATE(2314), + [sym__canany] = STATE(2314), + [sym__custom] = STATE(2314), + [sym_switch] = STATE(2321), + [sym_loop] = STATE(2321), + [sym_loop_operator] = STATE(2341), + [sym__for] = STATE(2312), + [sym__foreach] = STATE(2312), + [sym__forelse] = STATE(2312), + [sym__while] = STATE(2312), + [sym_livewire] = STATE(2321), + [sym__persist] = STATE(2311), + [sym__teleport] = STATE(2311), + [sym__volt] = STATE(2311), + [aux_sym__directive_body] = STATE(225), + [sym_text] = STATE(2308), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3343), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3345), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3347), + [anon_sym_ATphp] = ACTIONS(3349), + [aux_sym_attribute_token1] = ACTIONS(3351), + [aux_sym__inline_directive_token1] = ACTIONS(3353), + [anon_sym_ATfragment] = ACTIONS(3355), + [anon_sym_ATsection] = ACTIONS(3357), + [anon_sym_ATendsection] = ACTIONS(3359), + [anon_sym_ATonce] = ACTIONS(3361), + [anon_sym_ATverbatim] = ACTIONS(3363), + [anon_sym_ATpush] = ACTIONS(3365), + [anon_sym_ATpushOnce] = ACTIONS(3367), + [anon_sym_ATpushIf] = ACTIONS(3369), + [anon_sym_ATprepend] = ACTIONS(3371), + [anon_sym_ATprependOnce] = ACTIONS(3373), + [anon_sym_ATif] = ACTIONS(3375), + [anon_sym_ATunless] = ACTIONS(3377), + [anon_sym_ATisset] = ACTIONS(3379), + [anon_sym_ATempty] = ACTIONS(3381), + [anon_sym_ATauth] = ACTIONS(3383), + [anon_sym_ATguest] = ACTIONS(3385), + [anon_sym_ATproduction] = ACTIONS(3387), + [anon_sym_ATenv] = ACTIONS(3389), + [anon_sym_AThasSection] = ACTIONS(3391), + [anon_sym_ATsectionMissing] = ACTIONS(3393), + [anon_sym_ATerror] = ACTIONS(3395), + [anon_sym_ATcan] = ACTIONS(3397), + [anon_sym_ATcannot] = ACTIONS(3399), + [anon_sym_ATcanany] = ACTIONS(3401), + [aux_sym__custom_token1] = ACTIONS(3403), + [aux_sym__custom_token2] = ACTIONS(3405), + [anon_sym_ATswitch] = ACTIONS(3407), + [aux_sym_loop_operator_token1] = ACTIONS(3409), + [anon_sym_ATfor] = ACTIONS(3411), + [anon_sym_ATforeach] = ACTIONS(3413), + [anon_sym_ATforelse] = ACTIONS(3415), + [anon_sym_ATwhile] = ACTIONS(3417), + [anon_sym_ATpersist] = ACTIONS(3419), + [anon_sym_ATteleport] = ACTIONS(3421), + [anon_sym_ATvolt] = ACTIONS(3423), + [aux_sym_text_token1] = ACTIONS(3425), + [aux_sym_text_token2] = ACTIONS(3425), + [aux_sym_text_token3] = ACTIONS(3427), }, [205] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(205), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(202), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3429), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [206] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(206), - [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(203), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3431), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [207] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(207), - [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(208), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3433), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [208] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1377), [sym_comment] = STATE(208), - [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), + [sym_keyword] = STATE(2074), + [sym_php_statement] = STATE(2074), + [sym__escaped] = STATE(2075), + [sym__unescaped] = STATE(2075), + [sym__raw] = STATE(2075), + [sym__inline_raw] = STATE(2076), + [sym__multi_line_raw] = STATE(2076), + [sym_attribute] = STATE(2074), + [sym__inline_directive] = STATE(2074), + [sym__nested_directive] = STATE(2074), + [sym_fragment] = STATE(2077), + [sym_section] = STATE(2077), + [sym_once] = STATE(2077), + [sym_verbatim] = STATE(2077), + [sym_stack] = STATE(2077), + [sym__push] = STATE(2078), + [sym__pushOnce] = STATE(2078), + [sym__pushIf] = STATE(2078), + [sym__prepend] = STATE(2078), + [sym__prependOnce] = STATE(2078), + [sym_conditional] = STATE(2077), + [sym__if] = STATE(2079), + [sym__unless] = STATE(2079), + [sym__isset] = STATE(2079), + [sym__empty] = STATE(2079), + [sym__auth] = STATE(2079), + [sym__guest] = STATE(2079), + [sym__production] = STATE(2079), + [sym__env] = STATE(2079), + [sym__hasSection] = STATE(2079), + [sym__sectionMissing] = STATE(2079), + [sym__error] = STATE(2079), + [sym__can] = STATE(2079), + [sym__cannot] = STATE(2079), + [sym__canany] = STATE(2079), + [sym__custom] = STATE(2079), + [sym_switch] = STATE(2077), + [sym_loop] = STATE(2077), + [sym_loop_operator] = STATE(2074), + [sym__for] = STATE(2080), + [sym__foreach] = STATE(2080), + [sym__forelse] = STATE(2080), + [sym__while] = STATE(2080), + [sym_livewire] = STATE(2077), + [sym__persist] = STATE(2081), + [sym__teleport] = STATE(2081), + [sym__volt] = STATE(2081), + [aux_sym__directive_body] = STATE(208), + [sym_text] = STATE(2082), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3435), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3438), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3441), + [anon_sym_ATphp] = ACTIONS(3444), + [aux_sym_attribute_token1] = ACTIONS(3447), + [aux_sym__inline_directive_token1] = ACTIONS(3450), + [anon_sym_ATfragment] = ACTIONS(3453), + [anon_sym_ATsection] = ACTIONS(3456), + [anon_sym_ATonce] = ACTIONS(3459), + [anon_sym_ATverbatim] = ACTIONS(3462), + [anon_sym_ATpush] = ACTIONS(3465), + [anon_sym_ATpushOnce] = ACTIONS(3468), + [anon_sym_ATpushIf] = ACTIONS(3471), + [anon_sym_ATprepend] = ACTIONS(3474), + [anon_sym_ATprependOnce] = ACTIONS(3477), + [anon_sym_ATif] = ACTIONS(3480), + [anon_sym_ATunless] = ACTIONS(3483), + [anon_sym_ATisset] = ACTIONS(3486), + [anon_sym_ATempty] = ACTIONS(3489), + [anon_sym_ATauth] = ACTIONS(3492), + [anon_sym_ATguest] = ACTIONS(3495), + [anon_sym_ATproduction] = ACTIONS(3498), + [anon_sym_ATenv] = ACTIONS(3501), + [anon_sym_AThasSection] = ACTIONS(3504), + [anon_sym_ATsectionMissing] = ACTIONS(3507), + [anon_sym_ATerror] = ACTIONS(3510), + [anon_sym_ATcan] = ACTIONS(3513), + [anon_sym_ATcannot] = ACTIONS(3516), + [anon_sym_ATcanany] = ACTIONS(3519), + [aux_sym__custom_token1] = ACTIONS(3522), + [aux_sym__custom_token2] = ACTIONS(3525), + [anon_sym_ATswitch] = ACTIONS(3528), + [aux_sym_loop_operator_token1] = ACTIONS(3531), + [anon_sym_ATfor] = ACTIONS(3534), + [anon_sym_ATforeach] = ACTIONS(3537), + [anon_sym_ATforelse] = ACTIONS(3540), + [anon_sym_ATwhile] = ACTIONS(3543), + [anon_sym_ATpersist] = ACTIONS(3546), + [anon_sym_ATteleport] = ACTIONS(3549), + [anon_sym_ATvolt] = ACTIONS(3552), + [anon_sym_ATendvolt] = ACTIONS(3555), + [aux_sym_text_token1] = ACTIONS(3557), + [aux_sym_text_token2] = ACTIONS(3557), + [aux_sym_text_token3] = ACTIONS(3560), }, [209] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1379), [sym_comment] = STATE(209), - [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(210), + [sym_keyword] = STATE(2012), + [sym_php_statement] = STATE(2012), + [sym__escaped] = STATE(2013), + [sym__unescaped] = STATE(2013), + [sym__raw] = STATE(2013), + [sym__inline_raw] = STATE(2014), + [sym__multi_line_raw] = STATE(2014), + [sym_attribute] = STATE(2012), + [sym__inline_directive] = STATE(2012), + [sym__nested_directive] = STATE(2012), + [sym_fragment] = STATE(2015), + [sym_section] = STATE(2015), + [sym_once] = STATE(2015), + [sym_verbatim] = STATE(2015), + [sym_stack] = STATE(2015), + [sym__push] = STATE(2016), + [sym__pushOnce] = STATE(2016), + [sym__pushIf] = STATE(2016), + [sym__prepend] = STATE(2016), + [sym__prependOnce] = STATE(2016), + [sym_conditional] = STATE(2015), + [sym__if] = STATE(2017), + [sym__unless] = STATE(2017), + [sym__isset] = STATE(2017), + [sym__empty] = STATE(2017), + [sym__auth] = STATE(2017), + [sym__guest] = STATE(2017), + [sym__production] = STATE(2017), + [sym__env] = STATE(2017), + [sym__hasSection] = STATE(2017), + [sym__sectionMissing] = STATE(2017), + [sym__error] = STATE(2017), + [sym__can] = STATE(2017), + [sym__cannot] = STATE(2017), + [sym__canany] = STATE(2017), + [sym__custom] = STATE(2017), + [sym_switch] = STATE(2015), + [sym_loop] = STATE(2015), + [sym_loop_operator] = STATE(2012), + [sym__for] = STATE(2018), + [sym__foreach] = STATE(2018), + [sym__forelse] = STATE(2018), + [sym__while] = STATE(2018), + [sym_livewire] = STATE(2015), + [sym__persist] = STATE(2019), + [sym__teleport] = STATE(2019), + [sym__volt] = STATE(2019), + [aux_sym__directive_body] = STATE(209), + [sym_text] = STATE(2020), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3563), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3566), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3569), + [anon_sym_ATphp] = ACTIONS(3572), + [aux_sym_attribute_token1] = ACTIONS(3575), + [aux_sym__inline_directive_token1] = ACTIONS(3578), + [anon_sym_ATfragment] = ACTIONS(3581), + [anon_sym_ATsection] = ACTIONS(3584), + [anon_sym_ATonce] = ACTIONS(3587), + [anon_sym_ATverbatim] = ACTIONS(3590), + [anon_sym_ATpush] = ACTIONS(3593), + [anon_sym_ATpushOnce] = ACTIONS(3596), + [anon_sym_ATpushIf] = ACTIONS(3599), + [anon_sym_ATprepend] = ACTIONS(3602), + [anon_sym_ATprependOnce] = ACTIONS(3605), + [anon_sym_ATif] = ACTIONS(3608), + [anon_sym_ATunless] = ACTIONS(3611), + [anon_sym_ATisset] = ACTIONS(3614), + [anon_sym_ATempty] = ACTIONS(3617), + [anon_sym_ATauth] = ACTIONS(3620), + [anon_sym_ATguest] = ACTIONS(3623), + [anon_sym_ATproduction] = ACTIONS(3626), + [anon_sym_ATenv] = ACTIONS(3629), + [anon_sym_AThasSection] = ACTIONS(3632), + [anon_sym_ATsectionMissing] = ACTIONS(3635), + [anon_sym_ATerror] = ACTIONS(3638), + [anon_sym_ATcan] = ACTIONS(3641), + [anon_sym_ATcannot] = ACTIONS(3644), + [anon_sym_ATcanany] = ACTIONS(3647), + [aux_sym__custom_token1] = ACTIONS(3650), + [aux_sym__custom_token2] = ACTIONS(3653), + [anon_sym_ATswitch] = ACTIONS(3656), + [aux_sym_loop_operator_token1] = ACTIONS(3659), + [anon_sym_ATfor] = ACTIONS(3662), + [anon_sym_ATforeach] = ACTIONS(3665), + [anon_sym_ATforelse] = ACTIONS(3668), + [anon_sym_ATwhile] = ACTIONS(3671), + [anon_sym_ATpersist] = ACTIONS(3674), + [anon_sym_ATteleport] = ACTIONS(3677), + [anon_sym_ATendteleport] = ACTIONS(3555), + [anon_sym_ATvolt] = ACTIONS(3680), + [aux_sym_text_token1] = ACTIONS(3683), + [aux_sym_text_token2] = ACTIONS(3683), + [aux_sym_text_token3] = ACTIONS(3686), }, [210] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(210), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3309), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [211] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2481), [sym_comment] = STATE(211), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2198), + [sym_php_statement] = STATE(2198), + [sym__escaped] = STATE(2199), + [sym__unescaped] = STATE(2199), + [sym__raw] = STATE(2199), + [sym__inline_raw] = STATE(2200), + [sym__multi_line_raw] = STATE(2200), + [sym_attribute] = STATE(2198), + [sym__inline_directive] = STATE(2198), + [sym__nested_directive] = STATE(2198), + [sym_fragment] = STATE(2201), + [sym_section] = STATE(2201), + [sym_once] = STATE(2201), + [sym_verbatim] = STATE(2201), + [sym_stack] = STATE(2201), + [sym__push] = STATE(2202), + [sym__pushOnce] = STATE(2202), + [sym__pushIf] = STATE(2202), + [sym__prepend] = STATE(2202), + [sym__prependOnce] = STATE(2202), + [sym_conditional] = STATE(2201), + [sym__if] = STATE(2203), + [sym__unless] = STATE(2203), + [sym__isset] = STATE(2203), + [sym__empty] = STATE(2203), + [sym__auth] = STATE(2203), + [sym__guest] = STATE(2203), + [sym__production] = STATE(2203), + [sym__env] = STATE(2203), + [sym__hasSection] = STATE(2203), + [sym__sectionMissing] = STATE(2203), + [sym__error] = STATE(2203), + [sym__can] = STATE(2203), + [sym__cannot] = STATE(2203), + [sym__canany] = STATE(2203), + [sym__custom] = STATE(2203), + [sym_switch] = STATE(2201), + [sym_loop] = STATE(2201), + [sym_loop_operator] = STATE(2198), + [sym__for] = STATE(2204), + [sym__foreach] = STATE(2204), + [sym__forelse] = STATE(2204), + [sym__while] = STATE(2204), + [sym_livewire] = STATE(2201), + [sym__persist] = STATE(2205), + [sym__teleport] = STATE(2205), + [sym__volt] = STATE(2205), + [aux_sym__directive_body] = STATE(331), + [sym_text] = STATE(2206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3689), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3691), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3693), + [anon_sym_ATphp] = ACTIONS(3695), + [aux_sym_attribute_token1] = ACTIONS(3697), + [aux_sym__inline_directive_token1] = ACTIONS(3699), + [anon_sym_ATfragment] = ACTIONS(3701), + [anon_sym_ATsection] = ACTIONS(3703), + [anon_sym_ATonce] = ACTIONS(3705), + [anon_sym_ATverbatim] = ACTIONS(3707), + [anon_sym_ATpush] = ACTIONS(3709), + [anon_sym_ATpushOnce] = ACTIONS(3711), + [anon_sym_ATpushIf] = ACTIONS(3713), + [anon_sym_ATprepend] = ACTIONS(3715), + [anon_sym_ATprependOnce] = ACTIONS(3717), + [anon_sym_ATif] = ACTIONS(3719), + [anon_sym_ATunless] = ACTIONS(3721), + [anon_sym_ATisset] = ACTIONS(3723), + [anon_sym_ATempty] = ACTIONS(3725), + [anon_sym_ATauth] = ACTIONS(3727), + [anon_sym_ATguest] = ACTIONS(3729), + [anon_sym_ATproduction] = ACTIONS(3731), + [anon_sym_ATenv] = ACTIONS(3733), + [anon_sym_AThasSection] = ACTIONS(3735), + [anon_sym_ATsectionMissing] = ACTIONS(3737), + [anon_sym_ATerror] = ACTIONS(3739), + [anon_sym_ATcan] = ACTIONS(3741), + [anon_sym_ATcannot] = ACTIONS(3743), + [anon_sym_ATcanany] = ACTIONS(3745), + [aux_sym__custom_token1] = ACTIONS(3747), + [aux_sym__custom_token2] = ACTIONS(3749), + [anon_sym_ATswitch] = ACTIONS(3751), + [anon_sym_ATbreak] = ACTIONS(3753), + [aux_sym_loop_operator_token1] = ACTIONS(3755), + [anon_sym_ATfor] = ACTIONS(3757), + [anon_sym_ATforeach] = ACTIONS(3759), + [anon_sym_ATforelse] = ACTIONS(3761), + [anon_sym_ATwhile] = ACTIONS(3763), + [anon_sym_ATpersist] = ACTIONS(3765), + [anon_sym_ATteleport] = ACTIONS(3767), + [anon_sym_ATvolt] = ACTIONS(3769), + [aux_sym_text_token1] = ACTIONS(3771), + [aux_sym_text_token2] = ACTIONS(3771), + [aux_sym_text_token3] = ACTIONS(3773), }, [212] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(212), - [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(205), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3775), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [213] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(213), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(212), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3777), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [214] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(214), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(218), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(207), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3779), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [215] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(215), - [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(220), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3781), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3784), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3787), + [anon_sym_ATphp] = ACTIONS(3790), + [aux_sym_attribute_token1] = ACTIONS(3793), + [aux_sym__inline_directive_token1] = ACTIONS(3796), + [anon_sym_ATfragment] = ACTIONS(3799), + [anon_sym_ATsection] = ACTIONS(3802), + [anon_sym_ATonce] = ACTIONS(3805), + [anon_sym_ATverbatim] = ACTIONS(3808), + [anon_sym_ATpush] = ACTIONS(3811), + [anon_sym_ATpushOnce] = ACTIONS(3814), + [anon_sym_ATpushIf] = ACTIONS(3817), + [anon_sym_ATprepend] = ACTIONS(3820), + [anon_sym_ATprependOnce] = ACTIONS(3823), + [anon_sym_ATif] = ACTIONS(3826), + [anon_sym_ATunless] = ACTIONS(3829), + [anon_sym_ATisset] = ACTIONS(3832), + [anon_sym_ATempty] = ACTIONS(3835), + [anon_sym_ATauth] = ACTIONS(3838), + [anon_sym_ATguest] = ACTIONS(3841), + [anon_sym_ATproduction] = ACTIONS(3844), + [anon_sym_ATenv] = ACTIONS(3847), + [anon_sym_AThasSection] = ACTIONS(3850), + [anon_sym_ATsectionMissing] = ACTIONS(3853), + [anon_sym_ATerror] = ACTIONS(3856), + [anon_sym_ATcan] = ACTIONS(3859), + [anon_sym_ATcannot] = ACTIONS(3862), + [anon_sym_ATcanany] = ACTIONS(3865), + [aux_sym__custom_token1] = ACTIONS(3868), + [aux_sym__custom_token2] = ACTIONS(3871), + [anon_sym_ATswitch] = ACTIONS(3874), + [anon_sym_ATendswitch] = ACTIONS(3877), + [aux_sym_loop_operator_token1] = ACTIONS(3879), + [anon_sym_ATfor] = ACTIONS(3882), + [anon_sym_ATforeach] = ACTIONS(3885), + [anon_sym_ATforelse] = ACTIONS(3888), + [anon_sym_ATwhile] = ACTIONS(3891), + [anon_sym_ATpersist] = ACTIONS(3894), + [anon_sym_ATteleport] = ACTIONS(3897), + [anon_sym_ATvolt] = ACTIONS(3900), + [aux_sym_text_token1] = ACTIONS(3903), + [aux_sym_text_token2] = ACTIONS(3903), + [aux_sym_text_token3] = ACTIONS(3906), }, [216] = { - [sym__definition] = STATE(2077), + [sym__definition] = STATE(2443), [sym_comment] = STATE(216), - [sym_keyword] = STATE(1898), - [sym_php_statement] = STATE(1898), - [sym__escaped] = STATE(1780), - [sym__unescaped] = STATE(1780), - [sym__raw] = STATE(1780), - [sym__inline_raw] = STATE(1862), - [sym__multi_line_raw] = STATE(1862), - [sym_attribute] = STATE(1898), - [sym__inline_directive] = STATE(1898), - [sym__nested_directive] = STATE(1898), - [sym_fragment] = STATE(1840), - [sym_section] = STATE(1840), - [sym_once] = STATE(1840), - [sym_verbatim] = STATE(1840), - [sym_stack] = STATE(1840), - [sym__push] = STATE(1839), - [sym__pushOnce] = STATE(1839), - [sym__pushIf] = STATE(1839), - [sym__prepend] = STATE(1839), - [sym__prependOnce] = STATE(1839), - [sym_conditional] = STATE(1840), - [sym__if] = STATE(1834), - [sym__unless] = STATE(1834), - [sym__isset] = STATE(1834), - [sym__empty] = STATE(1834), - [sym__auth] = STATE(1834), - [sym__guest] = STATE(1834), - [sym__production] = STATE(1834), - [sym__env] = STATE(1834), - [sym__hasSection] = STATE(1834), - [sym__sectionMissing] = STATE(1834), - [sym__error] = STATE(1834), - [sym__custom] = STATE(1834), - [sym_switch] = STATE(1840), - [sym_loop] = STATE(1840), - [sym_loop_operator] = STATE(1898), - [sym__for] = STATE(1803), - [sym__foreach] = STATE(1803), - [sym__forelse] = STATE(1803), - [sym__while] = STATE(1803), - [sym_livewire] = STATE(1840), - [sym__persist] = STATE(1781), - [sym__teleport] = STATE(1781), - [sym__volt] = STATE(1781), - [aux_sym__directive_body] = STATE(365), - [sym_text] = STATE(1662), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3779), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [217] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(217), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(216), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3909), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [218] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(218), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(251), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3911), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [219] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(219), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3913), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [220] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(220), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3915), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [221] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(221), - [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(213), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3917), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [222] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(222), - [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(223), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3919), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [223] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(223), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(219), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3921), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [224] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(224), - [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(225), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(221), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(3923), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [225] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2452), [sym_comment] = STATE(225), - [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), + [sym_keyword] = STATE(2341), + [sym_php_statement] = STATE(2341), + [sym__escaped] = STATE(2329), + [sym__unescaped] = STATE(2329), + [sym__raw] = STATE(2329), + [sym__inline_raw] = STATE(2252), + [sym__multi_line_raw] = STATE(2252), + [sym_attribute] = STATE(2341), + [sym__inline_directive] = STATE(2341), + [sym__nested_directive] = STATE(2341), + [sym_fragment] = STATE(2321), + [sym_section] = STATE(2321), + [sym_once] = STATE(2321), + [sym_verbatim] = STATE(2321), + [sym_stack] = STATE(2321), + [sym__push] = STATE(2320), + [sym__pushOnce] = STATE(2320), + [sym__pushIf] = STATE(2320), + [sym__prepend] = STATE(2320), + [sym__prependOnce] = STATE(2320), + [sym_conditional] = STATE(2321), + [sym__if] = STATE(2314), + [sym__unless] = STATE(2314), + [sym__isset] = STATE(2314), + [sym__empty] = STATE(2314), + [sym__auth] = STATE(2314), + [sym__guest] = STATE(2314), + [sym__production] = STATE(2314), + [sym__env] = STATE(2314), + [sym__hasSection] = STATE(2314), + [sym__sectionMissing] = STATE(2314), + [sym__error] = STATE(2314), + [sym__can] = STATE(2314), + [sym__cannot] = STATE(2314), + [sym__canany] = STATE(2314), + [sym__custom] = STATE(2314), + [sym_switch] = STATE(2321), + [sym_loop] = STATE(2321), + [sym_loop_operator] = STATE(2341), + [sym__for] = STATE(2312), + [sym__foreach] = STATE(2312), + [sym__forelse] = STATE(2312), + [sym__while] = STATE(2312), + [sym_livewire] = STATE(2321), + [sym__persist] = STATE(2311), + [sym__teleport] = STATE(2311), + [sym__volt] = STATE(2311), + [aux_sym__directive_body] = STATE(380), + [sym_text] = STATE(2308), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3343), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3345), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3347), + [anon_sym_ATphp] = ACTIONS(3349), + [aux_sym_attribute_token1] = ACTIONS(3351), + [aux_sym__inline_directive_token1] = ACTIONS(3353), + [anon_sym_ATfragment] = ACTIONS(3355), + [anon_sym_ATsection] = ACTIONS(3357), + [anon_sym_ATendsection] = ACTIONS(3753), + [anon_sym_ATonce] = ACTIONS(3361), + [anon_sym_ATverbatim] = ACTIONS(3363), + [anon_sym_ATpush] = ACTIONS(3365), + [anon_sym_ATpushOnce] = ACTIONS(3367), + [anon_sym_ATpushIf] = ACTIONS(3369), + [anon_sym_ATprepend] = ACTIONS(3371), + [anon_sym_ATprependOnce] = ACTIONS(3373), + [anon_sym_ATif] = ACTIONS(3375), + [anon_sym_ATunless] = ACTIONS(3377), + [anon_sym_ATisset] = ACTIONS(3379), + [anon_sym_ATempty] = ACTIONS(3381), + [anon_sym_ATauth] = ACTIONS(3383), + [anon_sym_ATguest] = ACTIONS(3385), + [anon_sym_ATproduction] = ACTIONS(3387), + [anon_sym_ATenv] = ACTIONS(3389), + [anon_sym_AThasSection] = ACTIONS(3391), + [anon_sym_ATsectionMissing] = ACTIONS(3393), + [anon_sym_ATerror] = ACTIONS(3395), + [anon_sym_ATcan] = ACTIONS(3397), + [anon_sym_ATcannot] = ACTIONS(3399), + [anon_sym_ATcanany] = ACTIONS(3401), + [aux_sym__custom_token1] = ACTIONS(3403), + [aux_sym__custom_token2] = ACTIONS(3405), + [anon_sym_ATswitch] = ACTIONS(3407), + [aux_sym_loop_operator_token1] = ACTIONS(3409), + [anon_sym_ATfor] = ACTIONS(3411), + [anon_sym_ATforeach] = ACTIONS(3413), + [anon_sym_ATforelse] = ACTIONS(3415), + [anon_sym_ATwhile] = ACTIONS(3417), + [anon_sym_ATpersist] = ACTIONS(3419), + [anon_sym_ATteleport] = ACTIONS(3421), + [anon_sym_ATvolt] = ACTIONS(3423), + [aux_sym_text_token1] = ACTIONS(3425), + [aux_sym_text_token2] = ACTIONS(3425), + [aux_sym_text_token3] = ACTIONS(3427), }, [226] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(226), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(222), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(3925), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [227] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(227), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3927), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [228] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(228), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3929), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3932), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3935), + [anon_sym_ATphp] = ACTIONS(3938), + [aux_sym_attribute_token1] = ACTIONS(3941), + [aux_sym__inline_directive_token1] = ACTIONS(3944), + [anon_sym_ATfragment] = ACTIONS(3947), + [anon_sym_ATsection] = ACTIONS(3950), + [anon_sym_ATonce] = ACTIONS(3953), + [anon_sym_ATverbatim] = ACTIONS(3956), + [anon_sym_ATendverbatim] = ACTIONS(3555), + [anon_sym_ATpush] = ACTIONS(3959), + [anon_sym_ATpushOnce] = ACTIONS(3962), + [anon_sym_ATpushIf] = ACTIONS(3965), + [anon_sym_ATprepend] = ACTIONS(3968), + [anon_sym_ATprependOnce] = ACTIONS(3971), + [anon_sym_ATif] = ACTIONS(3974), + [anon_sym_ATunless] = ACTIONS(3977), + [anon_sym_ATisset] = ACTIONS(3980), + [anon_sym_ATempty] = ACTIONS(3983), + [anon_sym_ATauth] = ACTIONS(3986), + [anon_sym_ATguest] = ACTIONS(3989), + [anon_sym_ATproduction] = ACTIONS(3992), + [anon_sym_ATenv] = ACTIONS(3995), + [anon_sym_AThasSection] = ACTIONS(3998), + [anon_sym_ATsectionMissing] = ACTIONS(4001), + [anon_sym_ATerror] = ACTIONS(4004), + [anon_sym_ATcan] = ACTIONS(4007), + [anon_sym_ATcannot] = ACTIONS(4010), + [anon_sym_ATcanany] = ACTIONS(4013), + [aux_sym__custom_token1] = ACTIONS(4016), + [aux_sym__custom_token2] = ACTIONS(4019), + [anon_sym_ATswitch] = ACTIONS(4022), + [aux_sym_loop_operator_token1] = ACTIONS(4025), + [anon_sym_ATfor] = ACTIONS(4028), + [anon_sym_ATforeach] = ACTIONS(4031), + [anon_sym_ATforelse] = ACTIONS(4034), + [anon_sym_ATwhile] = ACTIONS(4037), + [anon_sym_ATpersist] = ACTIONS(4040), + [anon_sym_ATteleport] = ACTIONS(4043), + [anon_sym_ATvolt] = ACTIONS(4046), + [aux_sym_text_token1] = ACTIONS(4049), + [aux_sym_text_token2] = ACTIONS(4049), + [aux_sym_text_token3] = ACTIONS(4052), }, [229] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(229), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(240), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(227), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4055), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [230] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(230), - [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(241), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4055), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [231] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(231), - [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(201), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(230), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4057), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [232] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(232), - [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(226), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(220), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4059), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [233] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(233), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4061), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [234] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(234), - [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(249), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4063), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [235] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(235), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(228), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4065), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [236] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(236), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(233), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4067), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [237] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(237), - [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(236), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4067), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [238] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(238), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(237), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4069), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [239] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(239), - [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(238), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(234), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4071), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [240] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2481), [sym_comment] = STATE(240), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), + [sym_keyword] = STATE(2198), + [sym_php_statement] = STATE(2198), + [sym__escaped] = STATE(2199), + [sym__unescaped] = STATE(2199), + [sym__raw] = STATE(2199), + [sym__inline_raw] = STATE(2200), + [sym__multi_line_raw] = STATE(2200), + [sym_attribute] = STATE(2198), + [sym__inline_directive] = STATE(2198), + [sym__nested_directive] = STATE(2198), + [sym_fragment] = STATE(2201), + [sym_section] = STATE(2201), + [sym_once] = STATE(2201), + [sym_verbatim] = STATE(2201), + [sym_stack] = STATE(2201), + [sym__push] = STATE(2202), + [sym__pushOnce] = STATE(2202), + [sym__pushIf] = STATE(2202), + [sym__prepend] = STATE(2202), + [sym__prependOnce] = STATE(2202), + [sym_conditional] = STATE(2201), + [sym__if] = STATE(2203), + [sym__unless] = STATE(2203), + [sym__isset] = STATE(2203), + [sym__empty] = STATE(2203), + [sym__auth] = STATE(2203), + [sym__guest] = STATE(2203), + [sym__production] = STATE(2203), + [sym__env] = STATE(2203), + [sym__hasSection] = STATE(2203), + [sym__sectionMissing] = STATE(2203), + [sym__error] = STATE(2203), + [sym__can] = STATE(2203), + [sym__cannot] = STATE(2203), + [sym__canany] = STATE(2203), + [sym__custom] = STATE(2203), + [sym_switch] = STATE(2201), + [sym_loop] = STATE(2201), + [sym_loop_operator] = STATE(2198), + [sym__for] = STATE(2204), + [sym__foreach] = STATE(2204), + [sym__forelse] = STATE(2204), + [sym__while] = STATE(2204), + [sym_livewire] = STATE(2201), + [sym__persist] = STATE(2205), + [sym__teleport] = STATE(2205), + [sym__volt] = STATE(2205), [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_text] = STATE(2206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3689), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3691), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3693), + [anon_sym_ATphp] = ACTIONS(3695), + [aux_sym_attribute_token1] = ACTIONS(3697), + [aux_sym__inline_directive_token1] = ACTIONS(3699), + [anon_sym_ATfragment] = ACTIONS(3701), + [anon_sym_ATsection] = ACTIONS(3703), + [anon_sym_ATonce] = ACTIONS(3705), + [anon_sym_ATverbatim] = ACTIONS(3707), + [anon_sym_ATpush] = ACTIONS(3709), + [anon_sym_ATpushOnce] = ACTIONS(3711), + [anon_sym_ATpushIf] = ACTIONS(3713), + [anon_sym_ATprepend] = ACTIONS(3715), + [anon_sym_ATprependOnce] = ACTIONS(3717), + [anon_sym_ATif] = ACTIONS(3719), + [anon_sym_ATunless] = ACTIONS(3721), + [anon_sym_ATisset] = ACTIONS(3723), + [anon_sym_ATempty] = ACTIONS(3725), + [anon_sym_ATauth] = ACTIONS(3727), + [anon_sym_ATguest] = ACTIONS(3729), + [anon_sym_ATproduction] = ACTIONS(3731), + [anon_sym_ATenv] = ACTIONS(3733), + [anon_sym_AThasSection] = ACTIONS(3735), + [anon_sym_ATsectionMissing] = ACTIONS(3737), + [anon_sym_ATerror] = ACTIONS(3739), + [anon_sym_ATcan] = ACTIONS(3741), + [anon_sym_ATcannot] = ACTIONS(3743), + [anon_sym_ATcanany] = ACTIONS(3745), + [aux_sym__custom_token1] = ACTIONS(3747), + [aux_sym__custom_token2] = ACTIONS(3749), + [anon_sym_ATswitch] = ACTIONS(3751), + [anon_sym_ATbreak] = ACTIONS(3359), + [aux_sym_loop_operator_token1] = ACTIONS(3755), + [anon_sym_ATfor] = ACTIONS(3757), + [anon_sym_ATforeach] = ACTIONS(3759), + [anon_sym_ATforelse] = ACTIONS(3761), + [anon_sym_ATwhile] = ACTIONS(3763), + [anon_sym_ATpersist] = ACTIONS(3765), + [anon_sym_ATteleport] = ACTIONS(3767), + [anon_sym_ATvolt] = ACTIONS(3769), + [aux_sym_text_token1] = ACTIONS(3771), + [aux_sym_text_token2] = ACTIONS(3771), + [aux_sym_text_token3] = ACTIONS(3773), }, [241] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(241), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(235), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4073), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [242] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(242), - [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(227), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3777), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [243] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(243), - [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(244), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(260), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4075), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [244] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(244), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4077), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [245] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(245), - [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(246), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(244), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4079), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [246] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(246), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4079), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [247] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(247), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(250), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(246), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4081), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [248] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(248), - [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), [aux_sym__directive_body] = STATE(252), - [sym_text] = STATE(2155), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4083), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [249] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(249), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4085), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [250] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(250), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4087), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [251] = { - [sym__definition] = STATE(1966), + [sym__definition] = STATE(2399), [sym_comment] = STATE(251), - [sym_keyword] = STATE(1971), - [sym_php_statement] = STATE(1971), - [sym__escaped] = STATE(1972), - [sym__unescaped] = STATE(1972), - [sym__raw] = STATE(1972), - [sym__inline_raw] = STATE(1974), - [sym__multi_line_raw] = STATE(1974), - [sym_attribute] = STATE(1971), - [sym__inline_directive] = STATE(1971), - [sym__nested_directive] = STATE(1971), - [sym_fragment] = STATE(1979), - [sym_section] = STATE(1979), - [sym_once] = STATE(1979), - [sym_verbatim] = STATE(1979), - [sym_stack] = STATE(1979), - [sym__push] = STATE(1980), - [sym__pushOnce] = STATE(1980), - [sym__pushIf] = STATE(1980), - [sym__prepend] = STATE(1980), - [sym__prependOnce] = STATE(1980), - [sym_conditional] = STATE(1979), - [sym__if] = STATE(1981), - [sym__unless] = STATE(1981), - [sym__isset] = STATE(1981), - [sym__empty] = STATE(1981), - [sym__auth] = STATE(1981), - [sym__guest] = STATE(1981), - [sym__production] = STATE(1981), - [sym__env] = STATE(1981), - [sym__hasSection] = STATE(1981), - [sym__sectionMissing] = STATE(1981), - [sym__error] = STATE(1981), - [sym__custom] = STATE(1981), - [sym_switch] = STATE(1979), - [sym_loop] = STATE(1979), - [sym_loop_operator] = STATE(1971), - [sym__for] = STATE(1984), - [sym__foreach] = STATE(1984), - [sym__forelse] = STATE(1984), - [sym__while] = STATE(1984), - [sym_livewire] = STATE(1979), - [sym__persist] = STATE(1985), - [sym__teleport] = STATE(1985), - [sym__volt] = STATE(1985), - [sym_text] = STATE(1986), - [aux_sym_blade_repeat1] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(2979), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4089), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [252] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(252), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(4091), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4094), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4097), + [anon_sym_ATphp] = ACTIONS(4100), + [aux_sym_attribute_token1] = ACTIONS(4103), + [aux_sym__inline_directive_token1] = ACTIONS(4106), + [anon_sym_ATfragment] = ACTIONS(4109), + [anon_sym_ATsection] = ACTIONS(4112), + [anon_sym_ATonce] = ACTIONS(4115), + [anon_sym_ATendonce] = ACTIONS(3555), + [anon_sym_ATverbatim] = ACTIONS(4118), + [anon_sym_ATpush] = ACTIONS(4121), + [anon_sym_ATpushOnce] = ACTIONS(4124), + [anon_sym_ATpushIf] = ACTIONS(4127), + [anon_sym_ATprepend] = ACTIONS(4130), + [anon_sym_ATprependOnce] = ACTIONS(4133), + [anon_sym_ATif] = ACTIONS(4136), + [anon_sym_ATunless] = ACTIONS(4139), + [anon_sym_ATisset] = ACTIONS(4142), + [anon_sym_ATempty] = ACTIONS(4145), + [anon_sym_ATauth] = ACTIONS(4148), + [anon_sym_ATguest] = ACTIONS(4151), + [anon_sym_ATproduction] = ACTIONS(4154), + [anon_sym_ATenv] = ACTIONS(4157), + [anon_sym_AThasSection] = ACTIONS(4160), + [anon_sym_ATsectionMissing] = ACTIONS(4163), + [anon_sym_ATerror] = ACTIONS(4166), + [anon_sym_ATcan] = ACTIONS(4169), + [anon_sym_ATcannot] = ACTIONS(4172), + [anon_sym_ATcanany] = ACTIONS(4175), + [aux_sym__custom_token1] = ACTIONS(4178), + [aux_sym__custom_token2] = ACTIONS(4181), + [anon_sym_ATswitch] = ACTIONS(4184), + [aux_sym_loop_operator_token1] = ACTIONS(4187), + [anon_sym_ATfor] = ACTIONS(4190), + [anon_sym_ATforeach] = ACTIONS(4193), + [anon_sym_ATforelse] = ACTIONS(4196), + [anon_sym_ATwhile] = ACTIONS(4199), + [anon_sym_ATpersist] = ACTIONS(4202), + [anon_sym_ATteleport] = ACTIONS(4205), + [anon_sym_ATvolt] = ACTIONS(4208), + [aux_sym_text_token1] = ACTIONS(4211), + [aux_sym_text_token2] = ACTIONS(4211), + [aux_sym_text_token3] = ACTIONS(4214), }, [253] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(253), - [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(281), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(249), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4217), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [254] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(254), - [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(250), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4219), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [255] = { - [sym__definition] = STATE(1104), + [sym__definition] = STATE(2443), [sym_comment] = STATE(255), - [sym_keyword] = STATE(1665), - [sym_php_statement] = STATE(1665), - [sym__escaped] = STATE(1666), - [sym__unescaped] = STATE(1666), - [sym__raw] = STATE(1666), - [sym__inline_raw] = STATE(1667), - [sym__multi_line_raw] = STATE(1667), - [sym_attribute] = STATE(1665), - [sym__inline_directive] = STATE(1665), - [sym__nested_directive] = STATE(1665), - [sym_fragment] = STATE(1668), - [sym_section] = STATE(1668), - [sym_once] = STATE(1668), - [sym_verbatim] = STATE(1668), - [sym_stack] = STATE(1668), - [sym__push] = STATE(1669), - [sym__pushOnce] = STATE(1669), - [sym__pushIf] = STATE(1669), - [sym__prepend] = STATE(1669), - [sym__prependOnce] = STATE(1669), - [sym_conditional] = STATE(1668), - [sym__if] = STATE(1670), - [sym__unless] = STATE(1670), - [sym__isset] = STATE(1670), - [sym__empty] = STATE(1670), - [sym__auth] = STATE(1670), - [sym__guest] = STATE(1670), - [sym__production] = STATE(1670), - [sym__env] = STATE(1670), - [sym__hasSection] = STATE(1670), - [sym__sectionMissing] = STATE(1670), - [sym__error] = STATE(1670), - [sym__custom] = STATE(1670), - [sym_switch] = STATE(1668), - [sym_loop] = STATE(1668), - [sym_loop_operator] = STATE(1665), - [sym__for] = STATE(1671), - [sym__foreach] = STATE(1671), - [sym__forelse] = STATE(1671), - [sym__while] = STATE(1671), - [sym_livewire] = STATE(1668), - [sym__persist] = STATE(1672), - [sym__teleport] = STATE(1672), - [sym__volt] = STATE(1672), - [aux_sym__directive_body] = STATE(255), - [sym_text] = STATE(1673), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4221), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [256] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2298), [sym_comment] = STATE(256), - [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(257), + [sym_keyword] = STATE(2483), + [sym_php_statement] = STATE(2483), + [sym__escaped] = STATE(2484), + [sym__unescaped] = STATE(2484), + [sym__raw] = STATE(2484), + [sym__inline_raw] = STATE(2490), + [sym__multi_line_raw] = STATE(2490), + [sym_attribute] = STATE(2483), + [sym__inline_directive] = STATE(2483), + [sym__nested_directive] = STATE(2483), + [sym_fragment] = STATE(2491), + [sym_section] = STATE(2491), + [sym_once] = STATE(2491), + [sym_verbatim] = STATE(2491), + [sym_stack] = STATE(2491), + [sym__push] = STATE(2502), + [sym__pushOnce] = STATE(2502), + [sym__pushIf] = STATE(2502), + [sym__prepend] = STATE(2502), + [sym__prependOnce] = STATE(2502), + [sym_conditional] = STATE(2491), + [sym__if] = STATE(2503), + [sym__unless] = STATE(2503), + [sym__isset] = STATE(2503), + [sym__empty] = STATE(2503), + [sym__auth] = STATE(2503), + [sym__guest] = STATE(2503), + [sym__production] = STATE(2503), + [sym__env] = STATE(2503), + [sym__hasSection] = STATE(2503), + [sym__sectionMissing] = STATE(2503), + [sym__error] = STATE(2503), + [sym__can] = STATE(2503), + [sym__cannot] = STATE(2503), + [sym__canany] = STATE(2503), + [sym__custom] = STATE(2503), + [sym_switch] = STATE(2491), + [sym_loop] = STATE(2491), + [sym_loop_operator] = STATE(2483), + [sym__for] = STATE(2504), + [sym__foreach] = STATE(2504), + [sym__forelse] = STATE(2504), + [sym__while] = STATE(2504), + [sym_livewire] = STATE(2491), + [sym__persist] = STATE(2505), + [sym__teleport] = STATE(2505), + [sym__volt] = STATE(2505), + [aux_sym__directive_body] = STATE(307), + [sym_text] = STATE(2512), [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(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), + [aux_sym_keyword_token1] = ACTIONS(4223), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4225), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4227), + [anon_sym_ATphp] = ACTIONS(4229), + [aux_sym_attribute_token1] = ACTIONS(4231), + [aux_sym__inline_directive_token1] = ACTIONS(4233), + [anon_sym_ATfragment] = ACTIONS(4235), + [anon_sym_ATendfragment] = ACTIONS(3753), + [anon_sym_ATsection] = ACTIONS(4237), + [anon_sym_ATonce] = ACTIONS(4239), + [anon_sym_ATverbatim] = ACTIONS(4241), + [anon_sym_ATpush] = ACTIONS(4243), + [anon_sym_ATpushOnce] = ACTIONS(4245), + [anon_sym_ATpushIf] = ACTIONS(4247), + [anon_sym_ATprepend] = ACTIONS(4249), + [anon_sym_ATprependOnce] = ACTIONS(4251), + [anon_sym_ATif] = ACTIONS(4253), + [anon_sym_ATunless] = ACTIONS(4255), + [anon_sym_ATisset] = ACTIONS(4257), + [anon_sym_ATempty] = ACTIONS(4259), + [anon_sym_ATauth] = ACTIONS(4261), + [anon_sym_ATguest] = ACTIONS(4263), + [anon_sym_ATproduction] = ACTIONS(4265), + [anon_sym_ATenv] = ACTIONS(4267), + [anon_sym_AThasSection] = ACTIONS(4269), + [anon_sym_ATsectionMissing] = ACTIONS(4271), + [anon_sym_ATerror] = ACTIONS(4273), + [anon_sym_ATcan] = ACTIONS(4275), + [anon_sym_ATcannot] = ACTIONS(4277), + [anon_sym_ATcanany] = ACTIONS(4279), + [aux_sym__custom_token1] = ACTIONS(4281), + [aux_sym__custom_token2] = ACTIONS(4283), + [anon_sym_ATswitch] = ACTIONS(4285), + [aux_sym_loop_operator_token1] = ACTIONS(4287), + [anon_sym_ATfor] = ACTIONS(4289), + [anon_sym_ATforeach] = ACTIONS(4291), + [anon_sym_ATforelse] = ACTIONS(4293), + [anon_sym_ATwhile] = ACTIONS(4295), + [anon_sym_ATpersist] = ACTIONS(4297), + [anon_sym_ATteleport] = ACTIONS(4299), + [anon_sym_ATvolt] = ACTIONS(4301), + [aux_sym_text_token1] = ACTIONS(4303), + [aux_sym_text_token2] = ACTIONS(4303), + [aux_sym_text_token3] = ACTIONS(4305), }, [257] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(257), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(3093), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [258] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(257), [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4307), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [259] = { - [sym__definition] = STATE(1146), + [sym__definition] = STATE(2298), [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), + [sym_keyword] = STATE(2483), + [sym_php_statement] = STATE(2483), + [sym__escaped] = STATE(2484), + [sym__unescaped] = STATE(2484), + [sym__raw] = STATE(2484), + [sym__inline_raw] = STATE(2490), + [sym__multi_line_raw] = STATE(2490), + [sym_attribute] = STATE(2483), + [sym__inline_directive] = STATE(2483), + [sym__nested_directive] = STATE(2483), + [sym_fragment] = STATE(2491), + [sym_section] = STATE(2491), + [sym_once] = STATE(2491), + [sym_verbatim] = STATE(2491), + [sym_stack] = STATE(2491), + [sym__push] = STATE(2502), + [sym__pushOnce] = STATE(2502), + [sym__pushIf] = STATE(2502), + [sym__prepend] = STATE(2502), + [sym__prependOnce] = STATE(2502), + [sym_conditional] = STATE(2491), + [sym__if] = STATE(2503), + [sym__unless] = STATE(2503), + [sym__isset] = STATE(2503), + [sym__empty] = STATE(2503), + [sym__auth] = STATE(2503), + [sym__guest] = STATE(2503), + [sym__production] = STATE(2503), + [sym__env] = STATE(2503), + [sym__hasSection] = STATE(2503), + [sym__sectionMissing] = STATE(2503), + [sym__error] = STATE(2503), + [sym__can] = STATE(2503), + [sym__cannot] = STATE(2503), + [sym__canany] = STATE(2503), + [sym__custom] = STATE(2503), + [sym_switch] = STATE(2491), + [sym_loop] = STATE(2491), + [sym_loop_operator] = STATE(2483), + [sym__for] = STATE(2504), + [sym__foreach] = STATE(2504), + [sym__forelse] = STATE(2504), + [sym__while] = STATE(2504), + [sym_livewire] = STATE(2491), + [sym__persist] = STATE(2505), + [sym__teleport] = STATE(2505), + [sym__volt] = STATE(2505), + [aux_sym__directive_body] = STATE(256), + [sym_text] = STATE(2512), [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), + [aux_sym_keyword_token1] = ACTIONS(4223), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4225), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4227), + [anon_sym_ATphp] = ACTIONS(4229), + [aux_sym_attribute_token1] = ACTIONS(4231), + [aux_sym__inline_directive_token1] = ACTIONS(4233), + [anon_sym_ATfragment] = ACTIONS(4235), + [anon_sym_ATendfragment] = ACTIONS(3359), + [anon_sym_ATsection] = ACTIONS(4237), + [anon_sym_ATonce] = ACTIONS(4239), + [anon_sym_ATverbatim] = ACTIONS(4241), + [anon_sym_ATpush] = ACTIONS(4243), + [anon_sym_ATpushOnce] = ACTIONS(4245), + [anon_sym_ATpushIf] = ACTIONS(4247), + [anon_sym_ATprepend] = ACTIONS(4249), + [anon_sym_ATprependOnce] = ACTIONS(4251), + [anon_sym_ATif] = ACTIONS(4253), + [anon_sym_ATunless] = ACTIONS(4255), + [anon_sym_ATisset] = ACTIONS(4257), + [anon_sym_ATempty] = ACTIONS(4259), + [anon_sym_ATauth] = ACTIONS(4261), + [anon_sym_ATguest] = ACTIONS(4263), + [anon_sym_ATproduction] = ACTIONS(4265), + [anon_sym_ATenv] = ACTIONS(4267), + [anon_sym_AThasSection] = ACTIONS(4269), + [anon_sym_ATsectionMissing] = ACTIONS(4271), + [anon_sym_ATerror] = ACTIONS(4273), + [anon_sym_ATcan] = ACTIONS(4275), + [anon_sym_ATcannot] = ACTIONS(4277), + [anon_sym_ATcanany] = ACTIONS(4279), + [aux_sym__custom_token1] = ACTIONS(4281), + [aux_sym__custom_token2] = ACTIONS(4283), + [anon_sym_ATswitch] = ACTIONS(4285), + [aux_sym_loop_operator_token1] = ACTIONS(4287), + [anon_sym_ATfor] = ACTIONS(4289), + [anon_sym_ATforeach] = ACTIONS(4291), + [anon_sym_ATforelse] = ACTIONS(4293), + [anon_sym_ATwhile] = ACTIONS(4295), + [anon_sym_ATpersist] = ACTIONS(4297), + [anon_sym_ATteleport] = ACTIONS(4299), + [anon_sym_ATvolt] = ACTIONS(4301), + [aux_sym_text_token1] = ACTIONS(4303), + [aux_sym_text_token2] = ACTIONS(4303), + [aux_sym_text_token3] = ACTIONS(4305), }, [260] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4309), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [261] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4311), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [262] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4313), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [263] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(263), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(272), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4309), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [264] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(264), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(261), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4315), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [265] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(265), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(273), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(262), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4317), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [266] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(266), - [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(275), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4319), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [267] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(267), - [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(263), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(266), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4321), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [268] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(268), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(264), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4321), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [269] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(269), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(268), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4323), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [270] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2462), [sym_comment] = STATE(270), - [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(269), + [sym_keyword] = STATE(1621), + [sym_php_statement] = STATE(1621), + [sym__escaped] = STATE(1620), + [sym__unescaped] = STATE(1620), + [sym__raw] = STATE(1620), + [sym__inline_raw] = STATE(1619), + [sym__multi_line_raw] = STATE(1619), + [sym_attribute] = STATE(1621), + [sym__inline_directive] = STATE(1621), + [sym__nested_directive] = STATE(1621), + [sym_fragment] = STATE(1618), + [sym_section] = STATE(1618), + [sym_once] = STATE(1618), + [sym_verbatim] = STATE(1618), + [sym_stack] = STATE(1618), + [sym__push] = STATE(1617), + [sym__pushOnce] = STATE(1617), + [sym__pushIf] = STATE(1617), + [sym__prepend] = STATE(1617), + [sym__prependOnce] = STATE(1617), + [sym_conditional] = STATE(1618), + [sym__if] = STATE(1616), + [sym__unless] = STATE(1616), + [sym__isset] = STATE(1616), + [sym__empty] = STATE(1616), + [sym__auth] = STATE(1616), + [sym__guest] = STATE(1616), + [sym__production] = STATE(1616), + [sym__env] = STATE(1616), + [sym__hasSection] = STATE(1616), + [sym__sectionMissing] = STATE(1616), + [sym__error] = STATE(1616), + [sym__can] = STATE(1616), + [sym__cannot] = STATE(1616), + [sym__canany] = STATE(1616), + [sym__custom] = STATE(1616), + [sym_switch] = STATE(1618), + [sym_loop] = STATE(1618), + [sym_loop_operator] = STATE(1621), + [sym__for] = STATE(1615), + [sym__foreach] = STATE(1615), + [sym__forelse] = STATE(1615), + [sym__while] = STATE(1615), + [sym_livewire] = STATE(1618), + [sym__persist] = STATE(1614), + [sym__teleport] = STATE(1614), + [sym__volt] = STATE(1614), + [aux_sym__directive_body] = STATE(270), + [sym_text] = STATE(1613), [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(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), + [aux_sym_keyword_token1] = ACTIONS(4325), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4328), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4331), + [anon_sym_ATphp] = ACTIONS(4334), + [aux_sym_attribute_token1] = ACTIONS(4337), + [aux_sym__inline_directive_token1] = ACTIONS(4340), + [anon_sym_ATfragment] = ACTIONS(4343), + [anon_sym_ATsection] = ACTIONS(4346), + [anon_sym_ATonce] = ACTIONS(4349), + [anon_sym_ATverbatim] = ACTIONS(4352), + [anon_sym_ATpush] = ACTIONS(4355), + [anon_sym_ATpushOnce] = ACTIONS(4358), + [anon_sym_ATendPushOnce] = ACTIONS(3555), + [anon_sym_ATpushIf] = ACTIONS(4361), + [anon_sym_ATprepend] = ACTIONS(4364), + [anon_sym_ATprependOnce] = ACTIONS(4367), + [anon_sym_ATif] = ACTIONS(4370), + [anon_sym_ATunless] = ACTIONS(4373), + [anon_sym_ATisset] = ACTIONS(4376), + [anon_sym_ATempty] = ACTIONS(4379), + [anon_sym_ATauth] = ACTIONS(4382), + [anon_sym_ATguest] = ACTIONS(4385), + [anon_sym_ATproduction] = ACTIONS(4388), + [anon_sym_ATenv] = ACTIONS(4391), + [anon_sym_AThasSection] = ACTIONS(4394), + [anon_sym_ATsectionMissing] = ACTIONS(4397), + [anon_sym_ATerror] = ACTIONS(4400), + [anon_sym_ATcan] = ACTIONS(4403), + [anon_sym_ATcannot] = ACTIONS(4406), + [anon_sym_ATcanany] = ACTIONS(4409), + [aux_sym__custom_token1] = ACTIONS(4412), + [aux_sym__custom_token2] = ACTIONS(4415), + [anon_sym_ATswitch] = ACTIONS(4418), + [aux_sym_loop_operator_token1] = ACTIONS(4421), + [anon_sym_ATfor] = ACTIONS(4424), + [anon_sym_ATforeach] = ACTIONS(4427), + [anon_sym_ATforelse] = ACTIONS(4430), + [anon_sym_ATwhile] = ACTIONS(4433), + [anon_sym_ATpersist] = ACTIONS(4436), + [anon_sym_ATteleport] = ACTIONS(4439), + [anon_sym_ATvolt] = ACTIONS(4442), + [aux_sym_text_token1] = ACTIONS(4445), + [aux_sym_text_token2] = ACTIONS(4445), + [aux_sym_text_token3] = ACTIONS(4448), }, [271] = { - [sym__definition] = STATE(1146), + [sym__definition] = STATE(2269), [sym_comment] = STATE(271), - [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(259), - [sym_text] = STATE(1791), + [sym_keyword] = STATE(1499), + [sym_php_statement] = STATE(1499), + [sym__escaped] = STATE(1498), + [sym__unescaped] = STATE(1498), + [sym__raw] = STATE(1498), + [sym__inline_raw] = STATE(1497), + [sym__multi_line_raw] = STATE(1497), + [sym_attribute] = STATE(1499), + [sym__inline_directive] = STATE(1499), + [sym__nested_directive] = STATE(1499), + [sym_fragment] = STATE(1496), + [sym_section] = STATE(1496), + [sym_once] = STATE(1496), + [sym_verbatim] = STATE(1496), + [sym_stack] = STATE(1496), + [sym__push] = STATE(1495), + [sym__pushOnce] = STATE(1495), + [sym__pushIf] = STATE(1495), + [sym__prepend] = STATE(1495), + [sym__prependOnce] = STATE(1495), + [sym_conditional] = STATE(1496), + [sym__if] = STATE(1494), + [sym__unless] = STATE(1494), + [sym__isset] = STATE(1494), + [sym__empty] = STATE(1494), + [sym__auth] = STATE(1494), + [sym__guest] = STATE(1494), + [sym__production] = STATE(1494), + [sym__env] = STATE(1494), + [sym__hasSection] = STATE(1494), + [sym__sectionMissing] = STATE(1494), + [sym__error] = STATE(1494), + [sym__can] = STATE(1494), + [sym__cannot] = STATE(1494), + [sym__canany] = STATE(1494), + [sym__custom] = STATE(1494), + [sym_switch] = STATE(1496), + [sym_loop] = STATE(1496), + [sym_loop_operator] = STATE(1499), + [sym__for] = STATE(1493), + [sym__foreach] = STATE(1493), + [sym__forelse] = STATE(1493), + [sym__while] = STATE(1493), + [sym_livewire] = STATE(1496), + [sym__persist] = STATE(1492), + [sym__teleport] = STATE(1492), + [sym__volt] = STATE(1492), + [aux_sym__directive_body] = STATE(387), + [sym_text] = STATE(1491), [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(2734), - [aux_sym_text_token1] = ACTIONS(3633), - [aux_sym_text_token2] = ACTIONS(3633), - [aux_sym_text_token3] = ACTIONS(3635), + [aux_sym_keyword_token1] = ACTIONS(4451), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4453), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4455), + [anon_sym_ATphp] = ACTIONS(4457), + [aux_sym_attribute_token1] = ACTIONS(4459), + [aux_sym__inline_directive_token1] = ACTIONS(4461), + [anon_sym_ATfragment] = ACTIONS(4463), + [anon_sym_ATsection] = ACTIONS(4465), + [anon_sym_ATonce] = ACTIONS(4467), + [anon_sym_ATverbatim] = ACTIONS(4469), + [anon_sym_ATpush] = ACTIONS(4471), + [anon_sym_ATpushOnce] = ACTIONS(4473), + [anon_sym_ATpushIf] = ACTIONS(4475), + [anon_sym_ATprepend] = ACTIONS(4477), + [anon_sym_ATendprepend] = ACTIONS(3359), + [anon_sym_ATprependOnce] = ACTIONS(4479), + [anon_sym_ATif] = ACTIONS(4481), + [anon_sym_ATunless] = ACTIONS(4483), + [anon_sym_ATisset] = ACTIONS(4485), + [anon_sym_ATempty] = ACTIONS(4487), + [anon_sym_ATauth] = ACTIONS(4489), + [anon_sym_ATguest] = ACTIONS(4491), + [anon_sym_ATproduction] = ACTIONS(4493), + [anon_sym_ATenv] = ACTIONS(4495), + [anon_sym_AThasSection] = ACTIONS(4497), + [anon_sym_ATsectionMissing] = ACTIONS(4499), + [anon_sym_ATerror] = ACTIONS(4501), + [anon_sym_ATcan] = ACTIONS(4503), + [anon_sym_ATcannot] = ACTIONS(4505), + [anon_sym_ATcanany] = ACTIONS(4507), + [aux_sym__custom_token1] = ACTIONS(4509), + [aux_sym__custom_token2] = ACTIONS(4511), + [anon_sym_ATswitch] = ACTIONS(4513), + [aux_sym_loop_operator_token1] = ACTIONS(4515), + [anon_sym_ATfor] = ACTIONS(4517), + [anon_sym_ATforeach] = ACTIONS(4519), + [anon_sym_ATforelse] = ACTIONS(4521), + [anon_sym_ATwhile] = ACTIONS(4523), + [anon_sym_ATpersist] = ACTIONS(4525), + [anon_sym_ATteleport] = ACTIONS(4527), + [anon_sym_ATvolt] = ACTIONS(4529), + [aux_sym_text_token1] = ACTIONS(4531), + [aux_sym_text_token2] = ACTIONS(4531), + [aux_sym_text_token3] = ACTIONS(4533), }, [272] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(272), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4535), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [273] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(273), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(283), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4537), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [274] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(274), - [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(272), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(284), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4539), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [275] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(275), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4541), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [276] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(276), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4543), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [277] = { - [sym__definition] = STATE(2071), + [sym__definition] = STATE(2399), [sym_comment] = STATE(277), - [sym_keyword] = STATE(1391), - [sym_php_statement] = STATE(1391), - [sym__escaped] = STATE(1389), - [sym__unescaped] = STATE(1389), - [sym__raw] = STATE(1389), - [sym__inline_raw] = STATE(1388), - [sym__multi_line_raw] = STATE(1388), - [sym_attribute] = STATE(1391), - [sym__inline_directive] = STATE(1391), - [sym__nested_directive] = STATE(1391), - [sym_fragment] = STATE(1387), - [sym_section] = STATE(1387), - [sym_once] = STATE(1387), - [sym_verbatim] = STATE(1387), - [sym_stack] = STATE(1387), - [sym__push] = STATE(1386), - [sym__pushOnce] = STATE(1386), - [sym__pushIf] = STATE(1386), - [sym__prepend] = STATE(1386), - [sym__prependOnce] = STATE(1386), - [sym_conditional] = STATE(1387), - [sym__if] = STATE(1385), - [sym__unless] = STATE(1385), - [sym__isset] = STATE(1385), - [sym__empty] = STATE(1385), - [sym__auth] = STATE(1385), - [sym__guest] = STATE(1385), - [sym__production] = STATE(1385), - [sym__env] = STATE(1385), - [sym__hasSection] = STATE(1385), - [sym__sectionMissing] = STATE(1385), - [sym__error] = STATE(1385), - [sym__custom] = STATE(1385), - [sym_switch] = STATE(1387), - [sym_loop] = STATE(1387), - [sym_loop_operator] = STATE(1391), - [sym__for] = STATE(1384), - [sym__foreach] = STATE(1384), - [sym__forelse] = STATE(1384), - [sym__while] = STATE(1384), - [sym_livewire] = STATE(1387), - [sym__persist] = STATE(1383), - [sym__teleport] = STATE(1383), - [sym__volt] = STATE(1383), - [aux_sym__directive_body] = STATE(292), - [sym_text] = STATE(1382), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(275), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4545), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [278] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(278), - [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(279), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(276), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4547), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [279] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(279), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4549), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [280] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(280), - [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(285), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(279), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4551), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [281] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(281), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4551), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [282] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(282), - [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(284), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(281), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4553), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [283] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(283), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4555), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [284] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(284), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4557), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [285] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2333), [sym_comment] = STATE(285), - [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), + [sym_keyword] = STATE(2334), + [sym_php_statement] = STATE(2334), + [sym__escaped] = STATE(2338), + [sym__unescaped] = STATE(2338), + [sym__raw] = STATE(2338), + [sym__inline_raw] = STATE(2339), + [sym__multi_line_raw] = STATE(2339), + [sym_attribute] = STATE(2334), + [sym__inline_directive] = STATE(2334), + [sym__nested_directive] = STATE(2334), + [sym_fragment] = STATE(2340), + [sym_section] = STATE(2340), + [sym_once] = STATE(2340), + [sym_verbatim] = STATE(2340), + [sym_stack] = STATE(2340), + [sym__push] = STATE(2347), + [sym__pushOnce] = STATE(2347), + [sym__pushIf] = STATE(2347), + [sym__prepend] = STATE(2347), + [sym__prependOnce] = STATE(2347), + [sym_conditional] = STATE(2340), + [sym__if] = STATE(2351), + [sym__unless] = STATE(2351), + [sym__isset] = STATE(2351), + [sym__empty] = STATE(2351), + [sym__auth] = STATE(2351), + [sym__guest] = STATE(2351), + [sym__production] = STATE(2351), + [sym__env] = STATE(2351), + [sym__hasSection] = STATE(2351), + [sym__sectionMissing] = STATE(2351), + [sym__error] = STATE(2351), + [sym__can] = STATE(2351), + [sym__cannot] = STATE(2351), + [sym__canany] = STATE(2351), + [sym__custom] = STATE(2351), + [sym_switch] = STATE(2340), + [sym_loop] = STATE(2340), + [sym_loop_operator] = STATE(2334), + [sym__for] = STATE(2352), + [sym__foreach] = STATE(2352), + [sym__forelse] = STATE(2352), + [sym__while] = STATE(2352), + [sym_livewire] = STATE(2340), + [sym__persist] = STATE(2353), + [sym__teleport] = STATE(2353), + [sym__volt] = STATE(2353), + [sym_text] = STATE(2354), + [aux_sym_blade_repeat1] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(3877), [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(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), + [aux_sym_keyword_token1] = ACTIONS(4559), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4562), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4565), + [anon_sym_ATphp] = ACTIONS(4568), + [aux_sym_attribute_token1] = ACTIONS(4571), + [aux_sym__inline_directive_token1] = ACTIONS(4574), + [anon_sym_ATfragment] = ACTIONS(4577), + [anon_sym_ATsection] = ACTIONS(4580), + [anon_sym_ATonce] = ACTIONS(4583), + [anon_sym_ATverbatim] = ACTIONS(4586), + [anon_sym_ATpush] = ACTIONS(4589), + [anon_sym_ATpushOnce] = ACTIONS(4592), + [anon_sym_ATpushIf] = ACTIONS(4595), + [anon_sym_ATprepend] = ACTIONS(4598), + [anon_sym_ATprependOnce] = ACTIONS(4601), + [anon_sym_ATif] = ACTIONS(4604), + [anon_sym_ATunless] = ACTIONS(4607), + [anon_sym_ATisset] = ACTIONS(4610), + [anon_sym_ATempty] = ACTIONS(4613), + [anon_sym_ATauth] = ACTIONS(4616), + [anon_sym_ATguest] = ACTIONS(4619), + [anon_sym_ATproduction] = ACTIONS(4622), + [anon_sym_ATenv] = ACTIONS(4625), + [anon_sym_AThasSection] = ACTIONS(4628), + [anon_sym_ATsectionMissing] = ACTIONS(4631), + [anon_sym_ATerror] = ACTIONS(4634), + [anon_sym_ATcan] = ACTIONS(4637), + [anon_sym_ATcannot] = ACTIONS(4640), + [anon_sym_ATcanany] = ACTIONS(4643), + [aux_sym__custom_token1] = ACTIONS(4646), + [aux_sym__custom_token2] = ACTIONS(4649), + [anon_sym_ATswitch] = ACTIONS(4652), + [aux_sym_loop_operator_token1] = ACTIONS(4655), + [anon_sym_ATfor] = ACTIONS(4658), + [anon_sym_ATforeach] = ACTIONS(4661), + [anon_sym_ATforelse] = ACTIONS(4664), + [anon_sym_ATwhile] = ACTIONS(4667), + [anon_sym_ATpersist] = ACTIONS(4670), + [anon_sym_ATteleport] = ACTIONS(4673), + [anon_sym_ATvolt] = ACTIONS(4676), + [aux_sym_text_token1] = ACTIONS(4679), + [aux_sym_text_token2] = ACTIONS(4679), + [aux_sym_text_token3] = ACTIONS(4682), }, [286] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(286), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(289), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(293), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4685), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [287] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(287), - [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(290), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4687), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [288] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(288), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4689), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [289] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2454), [sym_comment] = STATE(289), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1681), + [sym_php_statement] = STATE(1681), + [sym__escaped] = STATE(1680), + [sym__unescaped] = STATE(1680), + [sym__raw] = STATE(1680), + [sym__inline_raw] = STATE(1679), + [sym__multi_line_raw] = STATE(1679), + [sym_attribute] = STATE(1681), + [sym__inline_directive] = STATE(1681), + [sym__nested_directive] = STATE(1681), + [sym_fragment] = STATE(1678), + [sym_section] = STATE(1678), + [sym_once] = STATE(1678), + [sym_verbatim] = STATE(1678), + [sym_stack] = STATE(1678), + [sym__push] = STATE(1677), + [sym__pushOnce] = STATE(1677), + [sym__pushIf] = STATE(1677), + [sym__prepend] = STATE(1677), + [sym__prependOnce] = STATE(1677), + [sym_conditional] = STATE(1678), + [sym__if] = STATE(1676), + [sym__unless] = STATE(1676), + [sym__isset] = STATE(1676), + [sym__empty] = STATE(1676), + [sym__auth] = STATE(1676), + [sym__guest] = STATE(1676), + [sym__production] = STATE(1676), + [sym__env] = STATE(1676), + [sym__hasSection] = STATE(1676), + [sym__sectionMissing] = STATE(1676), + [sym__error] = STATE(1676), + [sym__can] = STATE(1676), + [sym__cannot] = STATE(1676), + [sym__canany] = STATE(1676), + [sym__custom] = STATE(1676), + [sym_switch] = STATE(1678), + [sym_loop] = STATE(1678), + [sym_loop_operator] = STATE(1681), + [sym__for] = STATE(1675), + [sym__foreach] = STATE(1675), + [sym__forelse] = STATE(1675), + [sym__while] = STATE(1675), + [sym_livewire] = STATE(1678), + [sym__persist] = STATE(1674), + [sym__teleport] = STATE(1674), + [sym__volt] = STATE(1674), + [aux_sym__directive_body] = STATE(304), + [sym_text] = STATE(1673), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(4691), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4693), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4695), + [anon_sym_ATphp] = ACTIONS(4697), + [aux_sym_attribute_token1] = ACTIONS(4699), + [aux_sym__inline_directive_token1] = ACTIONS(4701), + [anon_sym_ATfragment] = ACTIONS(4703), + [anon_sym_ATsection] = ACTIONS(4705), + [anon_sym_ATonce] = ACTIONS(4707), + [anon_sym_ATverbatim] = ACTIONS(4709), + [anon_sym_ATpush] = ACTIONS(4711), + [anon_sym_ATendpush] = ACTIONS(3359), + [anon_sym_ATpushOnce] = ACTIONS(4713), + [anon_sym_ATpushIf] = ACTIONS(4715), + [anon_sym_ATprepend] = ACTIONS(4717), + [anon_sym_ATprependOnce] = ACTIONS(4719), + [anon_sym_ATif] = ACTIONS(4721), + [anon_sym_ATunless] = ACTIONS(4723), + [anon_sym_ATisset] = ACTIONS(4725), + [anon_sym_ATempty] = ACTIONS(4727), + [anon_sym_ATauth] = ACTIONS(4729), + [anon_sym_ATguest] = ACTIONS(4731), + [anon_sym_ATproduction] = ACTIONS(4733), + [anon_sym_ATenv] = ACTIONS(4735), + [anon_sym_AThasSection] = ACTIONS(4737), + [anon_sym_ATsectionMissing] = ACTIONS(4739), + [anon_sym_ATerror] = ACTIONS(4741), + [anon_sym_ATcan] = ACTIONS(4743), + [anon_sym_ATcannot] = ACTIONS(4745), + [anon_sym_ATcanany] = ACTIONS(4747), + [aux_sym__custom_token1] = ACTIONS(4749), + [aux_sym__custom_token2] = ACTIONS(4751), + [anon_sym_ATswitch] = ACTIONS(4753), + [aux_sym_loop_operator_token1] = ACTIONS(4755), + [anon_sym_ATfor] = ACTIONS(4757), + [anon_sym_ATforeach] = ACTIONS(4759), + [anon_sym_ATforelse] = ACTIONS(4761), + [anon_sym_ATwhile] = ACTIONS(4763), + [anon_sym_ATpersist] = ACTIONS(4765), + [anon_sym_ATteleport] = ACTIONS(4767), + [anon_sym_ATvolt] = ACTIONS(4769), + [aux_sym_text_token1] = ACTIONS(4771), + [aux_sym_text_token2] = ACTIONS(4771), + [aux_sym_text_token3] = ACTIONS(4773), }, [290] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(290), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(287), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(4775), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [291] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(291), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(233), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(288), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(4777), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [292] = { - [sym__definition] = STATE(2071), + [sym__definition] = STATE(2443), [sym_comment] = STATE(292), - [sym_keyword] = STATE(1391), - [sym_php_statement] = STATE(1391), - [sym__escaped] = STATE(1389), - [sym__unescaped] = STATE(1389), - [sym__raw] = STATE(1389), - [sym__inline_raw] = STATE(1388), - [sym__multi_line_raw] = STATE(1388), - [sym_attribute] = STATE(1391), - [sym__inline_directive] = STATE(1391), - [sym__nested_directive] = STATE(1391), - [sym_fragment] = STATE(1387), - [sym_section] = STATE(1387), - [sym_once] = STATE(1387), - [sym_verbatim] = STATE(1387), - [sym_stack] = STATE(1387), - [sym__push] = STATE(1386), - [sym__pushOnce] = STATE(1386), - [sym__pushIf] = STATE(1386), - [sym__prepend] = STATE(1386), - [sym__prependOnce] = STATE(1386), - [sym_conditional] = STATE(1387), - [sym__if] = STATE(1385), - [sym__unless] = STATE(1385), - [sym__isset] = STATE(1385), - [sym__empty] = STATE(1385), - [sym__auth] = STATE(1385), - [sym__guest] = STATE(1385), - [sym__production] = STATE(1385), - [sym__env] = STATE(1385), - [sym__hasSection] = STATE(1385), - [sym__sectionMissing] = STATE(1385), - [sym__error] = STATE(1385), - [sym__custom] = STATE(1385), - [sym_switch] = STATE(1387), - [sym_loop] = STATE(1387), - [sym_loop_operator] = STATE(1391), - [sym__for] = STATE(1384), - [sym__foreach] = STATE(1384), - [sym__forelse] = STATE(1384), - [sym__while] = STATE(1384), - [sym_livewire] = STATE(1387), - [sym__persist] = STATE(1383), - [sym__teleport] = STATE(1383), - [sym__volt] = STATE(1383), - [aux_sym__directive_body] = STATE(390), - [sym_text] = STATE(1382), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4779), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [293] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(293), - [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(294), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4781), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [294] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1381), [sym_comment] = STATE(294), - [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), + [sym_keyword] = STATE(1950), + [sym_php_statement] = STATE(1950), + [sym__escaped] = STATE(1951), + [sym__unescaped] = STATE(1951), + [sym__raw] = STATE(1951), + [sym__inline_raw] = STATE(1952), + [sym__multi_line_raw] = STATE(1952), + [sym_attribute] = STATE(1950), + [sym__inline_directive] = STATE(1950), + [sym__nested_directive] = STATE(1950), + [sym_fragment] = STATE(1953), + [sym_section] = STATE(1953), + [sym_once] = STATE(1953), + [sym_verbatim] = STATE(1953), + [sym_stack] = STATE(1953), + [sym__push] = STATE(1954), + [sym__pushOnce] = STATE(1954), + [sym__pushIf] = STATE(1954), + [sym__prepend] = STATE(1954), + [sym__prependOnce] = STATE(1954), + [sym_conditional] = STATE(1953), + [sym__if] = STATE(1955), + [sym__unless] = STATE(1955), + [sym__isset] = STATE(1955), + [sym__empty] = STATE(1955), + [sym__auth] = STATE(1955), + [sym__guest] = STATE(1955), + [sym__production] = STATE(1955), + [sym__env] = STATE(1955), + [sym__hasSection] = STATE(1955), + [sym__sectionMissing] = STATE(1955), + [sym__error] = STATE(1955), + [sym__can] = STATE(1955), + [sym__cannot] = STATE(1955), + [sym__canany] = STATE(1955), + [sym__custom] = STATE(1955), + [sym_switch] = STATE(1953), + [sym_loop] = STATE(1953), + [sym_loop_operator] = STATE(1950), + [sym__for] = STATE(1956), + [sym__foreach] = STATE(1956), + [sym__forelse] = STATE(1956), + [sym__while] = STATE(1956), + [sym_livewire] = STATE(1953), + [sym__persist] = STATE(1957), + [sym__teleport] = STATE(1957), + [sym__volt] = STATE(1957), + [aux_sym__directive_body] = STATE(294), + [sym_text] = STATE(1958), [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(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), + [aux_sym_keyword_token1] = ACTIONS(4783), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4786), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4789), + [anon_sym_ATphp] = ACTIONS(4792), + [aux_sym_attribute_token1] = ACTIONS(4795), + [aux_sym__inline_directive_token1] = ACTIONS(4798), + [anon_sym_ATfragment] = ACTIONS(4801), + [anon_sym_ATsection] = ACTIONS(4804), + [anon_sym_ATonce] = ACTIONS(4807), + [anon_sym_ATverbatim] = ACTIONS(4810), + [anon_sym_ATpush] = ACTIONS(4813), + [anon_sym_ATpushOnce] = ACTIONS(4816), + [anon_sym_ATpushIf] = ACTIONS(4819), + [anon_sym_ATprepend] = ACTIONS(4822), + [anon_sym_ATprependOnce] = ACTIONS(4825), + [anon_sym_ATif] = ACTIONS(4828), + [anon_sym_ATunless] = ACTIONS(4831), + [anon_sym_ATisset] = ACTIONS(4834), + [anon_sym_ATempty] = ACTIONS(4837), + [anon_sym_ATauth] = ACTIONS(4840), + [anon_sym_ATguest] = ACTIONS(4843), + [anon_sym_ATproduction] = ACTIONS(4846), + [anon_sym_ATenv] = ACTIONS(4849), + [anon_sym_AThasSection] = ACTIONS(4852), + [anon_sym_ATsectionMissing] = ACTIONS(4855), + [anon_sym_ATerror] = ACTIONS(4858), + [anon_sym_ATcan] = ACTIONS(4861), + [anon_sym_ATcannot] = ACTIONS(4864), + [anon_sym_ATcanany] = ACTIONS(4867), + [aux_sym__custom_token1] = ACTIONS(4870), + [aux_sym__custom_token2] = ACTIONS(4873), + [anon_sym_ATswitch] = ACTIONS(4876), + [aux_sym_loop_operator_token1] = ACTIONS(4879), + [anon_sym_ATfor] = ACTIONS(4882), + [anon_sym_ATforeach] = ACTIONS(4885), + [anon_sym_ATforelse] = ACTIONS(4888), + [anon_sym_ATwhile] = ACTIONS(4891), + [anon_sym_ATpersist] = ACTIONS(4894), + [anon_sym_ATendpersist] = ACTIONS(3555), + [anon_sym_ATteleport] = ACTIONS(4897), + [anon_sym_ATvolt] = ACTIONS(4900), + [aux_sym_text_token1] = ACTIONS(4903), + [aux_sym_text_token2] = ACTIONS(4903), + [aux_sym_text_token3] = ACTIONS(4906), }, [295] = { - [sym__definition] = STATE(2142), + [sym__definition] = STATE(2443), [sym_comment] = STATE(295), - [sym_keyword] = STATE(2053), - [sym_php_statement] = STATE(2053), - [sym__escaped] = STATE(2052), - [sym__unescaped] = STATE(2052), - [sym__raw] = STATE(2052), - [sym__inline_raw] = STATE(2051), - [sym__multi_line_raw] = STATE(2051), - [sym_attribute] = STATE(2053), - [sym__inline_directive] = STATE(2053), - [sym__nested_directive] = STATE(2053), - [sym_fragment] = STATE(2050), - [sym_section] = STATE(2050), - [sym_once] = STATE(2050), - [sym_verbatim] = STATE(2050), - [sym_stack] = STATE(2050), - [sym__push] = STATE(2049), - [sym__pushOnce] = STATE(2049), - [sym__pushIf] = STATE(2049), - [sym__prepend] = STATE(2049), - [sym__prependOnce] = STATE(2049), - [sym_conditional] = STATE(2050), - [sym__if] = STATE(2048), - [sym__unless] = STATE(2048), - [sym__isset] = STATE(2048), - [sym__empty] = STATE(2048), - [sym__auth] = STATE(2048), - [sym__guest] = STATE(2048), - [sym__production] = STATE(2048), - [sym__env] = STATE(2048), - [sym__hasSection] = STATE(2048), - [sym__sectionMissing] = STATE(2048), - [sym__error] = STATE(2048), - [sym__custom] = STATE(2048), - [sym_switch] = STATE(2050), - [sym_loop] = STATE(2050), - [sym_loop_operator] = STATE(2053), - [sym__for] = STATE(2044), - [sym__foreach] = STATE(2044), - [sym__forelse] = STATE(2044), - [sym__while] = STATE(2044), - [sym_livewire] = STATE(2050), - [sym__persist] = STATE(2043), - [sym__teleport] = STATE(2043), - [sym__volt] = STATE(2043), - [aux_sym__directive_body] = STATE(295), - [sym_text] = STATE(2039), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(210), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4909), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [296] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1377), [sym_comment] = STATE(296), - [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(297), + [sym_keyword] = STATE(2074), + [sym_php_statement] = STATE(2074), + [sym__escaped] = STATE(2075), + [sym__unescaped] = STATE(2075), + [sym__raw] = STATE(2075), + [sym__inline_raw] = STATE(2076), + [sym__multi_line_raw] = STATE(2076), + [sym_attribute] = STATE(2074), + [sym__inline_directive] = STATE(2074), + [sym__nested_directive] = STATE(2074), + [sym_fragment] = STATE(2077), + [sym_section] = STATE(2077), + [sym_once] = STATE(2077), + [sym_verbatim] = STATE(2077), + [sym_stack] = STATE(2077), + [sym__push] = STATE(2078), + [sym__pushOnce] = STATE(2078), + [sym__pushIf] = STATE(2078), + [sym__prepend] = STATE(2078), + [sym__prependOnce] = STATE(2078), + [sym_conditional] = STATE(2077), + [sym__if] = STATE(2079), + [sym__unless] = STATE(2079), + [sym__isset] = STATE(2079), + [sym__empty] = STATE(2079), + [sym__auth] = STATE(2079), + [sym__guest] = STATE(2079), + [sym__production] = STATE(2079), + [sym__env] = STATE(2079), + [sym__hasSection] = STATE(2079), + [sym__sectionMissing] = STATE(2079), + [sym__error] = STATE(2079), + [sym__can] = STATE(2079), + [sym__cannot] = STATE(2079), + [sym__canany] = STATE(2079), + [sym__custom] = STATE(2079), + [sym_switch] = STATE(2077), + [sym_loop] = STATE(2077), + [sym_loop_operator] = STATE(2074), + [sym__for] = STATE(2080), + [sym__foreach] = STATE(2080), + [sym__forelse] = STATE(2080), + [sym__while] = STATE(2080), + [sym_livewire] = STATE(2077), + [sym__persist] = STATE(2081), + [sym__teleport] = STATE(2081), + [sym__volt] = STATE(2081), + [aux_sym__directive_body] = STATE(208), + [sym_text] = STATE(2082), [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(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), + [aux_sym_keyword_token1] = ACTIONS(4911), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4913), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4915), + [anon_sym_ATphp] = ACTIONS(4917), + [aux_sym_attribute_token1] = ACTIONS(4919), + [aux_sym__inline_directive_token1] = ACTIONS(4921), + [anon_sym_ATfragment] = ACTIONS(4923), + [anon_sym_ATsection] = ACTIONS(4925), + [anon_sym_ATonce] = ACTIONS(4927), + [anon_sym_ATverbatim] = ACTIONS(4929), + [anon_sym_ATpush] = ACTIONS(4931), + [anon_sym_ATpushOnce] = ACTIONS(4933), + [anon_sym_ATpushIf] = ACTIONS(4935), + [anon_sym_ATprepend] = ACTIONS(4937), + [anon_sym_ATprependOnce] = ACTIONS(4939), + [anon_sym_ATif] = ACTIONS(4941), + [anon_sym_ATunless] = ACTIONS(4943), + [anon_sym_ATisset] = ACTIONS(4945), + [anon_sym_ATempty] = ACTIONS(4947), + [anon_sym_ATauth] = ACTIONS(4949), + [anon_sym_ATguest] = ACTIONS(4951), + [anon_sym_ATproduction] = ACTIONS(4953), + [anon_sym_ATenv] = ACTIONS(4955), + [anon_sym_AThasSection] = ACTIONS(4957), + [anon_sym_ATsectionMissing] = ACTIONS(4959), + [anon_sym_ATerror] = ACTIONS(4961), + [anon_sym_ATcan] = ACTIONS(4963), + [anon_sym_ATcannot] = ACTIONS(4965), + [anon_sym_ATcanany] = ACTIONS(4967), + [aux_sym__custom_token1] = ACTIONS(4969), + [aux_sym__custom_token2] = ACTIONS(4971), + [anon_sym_ATswitch] = ACTIONS(4973), + [aux_sym_loop_operator_token1] = ACTIONS(4975), + [anon_sym_ATfor] = ACTIONS(4977), + [anon_sym_ATforeach] = ACTIONS(4979), + [anon_sym_ATforelse] = ACTIONS(4981), + [anon_sym_ATwhile] = ACTIONS(4983), + [anon_sym_ATpersist] = ACTIONS(4985), + [anon_sym_ATteleport] = ACTIONS(4987), + [anon_sym_ATvolt] = ACTIONS(4989), + [anon_sym_ATendvolt] = ACTIONS(3753), + [aux_sym_text_token1] = ACTIONS(4991), + [aux_sym_text_token2] = ACTIONS(4991), + [aux_sym_text_token3] = ACTIONS(4993), }, [297] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(297), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(292), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4995), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [298] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(298), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(305), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4995), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [299] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(299), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(298), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4997), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [300] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(300), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(301), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4781), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [301] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(301), - [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(311), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(4999), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [302] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(302), - [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(299), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(314), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5001), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [303] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(303), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(321), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(315), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5003), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [304] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2454), [sym_comment] = STATE(304), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(300), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1681), + [sym_php_statement] = STATE(1681), + [sym__escaped] = STATE(1680), + [sym__unescaped] = STATE(1680), + [sym__raw] = STATE(1680), + [sym__inline_raw] = STATE(1679), + [sym__multi_line_raw] = STATE(1679), + [sym_attribute] = STATE(1681), + [sym__inline_directive] = STATE(1681), + [sym__nested_directive] = STATE(1681), + [sym_fragment] = STATE(1678), + [sym_section] = STATE(1678), + [sym_once] = STATE(1678), + [sym_verbatim] = STATE(1678), + [sym_stack] = STATE(1678), + [sym__push] = STATE(1677), + [sym__pushOnce] = STATE(1677), + [sym__pushIf] = STATE(1677), + [sym__prepend] = STATE(1677), + [sym__prependOnce] = STATE(1677), + [sym_conditional] = STATE(1678), + [sym__if] = STATE(1676), + [sym__unless] = STATE(1676), + [sym__isset] = STATE(1676), + [sym__empty] = STATE(1676), + [sym__auth] = STATE(1676), + [sym__guest] = STATE(1676), + [sym__production] = STATE(1676), + [sym__env] = STATE(1676), + [sym__hasSection] = STATE(1676), + [sym__sectionMissing] = STATE(1676), + [sym__error] = STATE(1676), + [sym__can] = STATE(1676), + [sym__cannot] = STATE(1676), + [sym__canany] = STATE(1676), + [sym__custom] = STATE(1676), + [sym_switch] = STATE(1678), + [sym_loop] = STATE(1678), + [sym_loop_operator] = STATE(1681), + [sym__for] = STATE(1675), + [sym__foreach] = STATE(1675), + [sym__forelse] = STATE(1675), + [sym__while] = STATE(1675), + [sym_livewire] = STATE(1678), + [sym__persist] = STATE(1674), + [sym__teleport] = STATE(1674), + [sym__volt] = STATE(1674), + [aux_sym__directive_body] = STATE(453), + [sym_text] = STATE(1673), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(4691), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4693), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4695), + [anon_sym_ATphp] = ACTIONS(4697), + [aux_sym_attribute_token1] = ACTIONS(4699), + [aux_sym__inline_directive_token1] = ACTIONS(4701), + [anon_sym_ATfragment] = ACTIONS(4703), + [anon_sym_ATsection] = ACTIONS(4705), + [anon_sym_ATonce] = ACTIONS(4707), + [anon_sym_ATverbatim] = ACTIONS(4709), + [anon_sym_ATpush] = ACTIONS(4711), + [anon_sym_ATendpush] = ACTIONS(3753), + [anon_sym_ATpushOnce] = ACTIONS(4713), + [anon_sym_ATpushIf] = ACTIONS(4715), + [anon_sym_ATprepend] = ACTIONS(4717), + [anon_sym_ATprependOnce] = ACTIONS(4719), + [anon_sym_ATif] = ACTIONS(4721), + [anon_sym_ATunless] = ACTIONS(4723), + [anon_sym_ATisset] = ACTIONS(4725), + [anon_sym_ATempty] = ACTIONS(4727), + [anon_sym_ATauth] = ACTIONS(4729), + [anon_sym_ATguest] = ACTIONS(4731), + [anon_sym_ATproduction] = ACTIONS(4733), + [anon_sym_ATenv] = ACTIONS(4735), + [anon_sym_AThasSection] = ACTIONS(4737), + [anon_sym_ATsectionMissing] = ACTIONS(4739), + [anon_sym_ATerror] = ACTIONS(4741), + [anon_sym_ATcan] = ACTIONS(4743), + [anon_sym_ATcannot] = ACTIONS(4745), + [anon_sym_ATcanany] = ACTIONS(4747), + [aux_sym__custom_token1] = ACTIONS(4749), + [aux_sym__custom_token2] = ACTIONS(4751), + [anon_sym_ATswitch] = ACTIONS(4753), + [aux_sym_loop_operator_token1] = ACTIONS(4755), + [anon_sym_ATfor] = ACTIONS(4757), + [anon_sym_ATforeach] = ACTIONS(4759), + [anon_sym_ATforelse] = ACTIONS(4761), + [anon_sym_ATwhile] = ACTIONS(4763), + [anon_sym_ATpersist] = ACTIONS(4765), + [anon_sym_ATteleport] = ACTIONS(4767), + [anon_sym_ATvolt] = ACTIONS(4769), + [aux_sym_text_token1] = ACTIONS(4771), + [aux_sym_text_token2] = ACTIONS(4771), + [aux_sym_text_token3] = ACTIONS(4773), }, [305] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(305), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5005), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [306] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(306), - [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5007), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [307] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2298), [sym_comment] = STATE(307), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2483), + [sym_php_statement] = STATE(2483), + [sym__escaped] = STATE(2484), + [sym__unescaped] = STATE(2484), + [sym__raw] = STATE(2484), + [sym__inline_raw] = STATE(2490), + [sym__multi_line_raw] = STATE(2490), + [sym_attribute] = STATE(2483), + [sym__inline_directive] = STATE(2483), + [sym__nested_directive] = STATE(2483), + [sym_fragment] = STATE(2491), + [sym_section] = STATE(2491), + [sym_once] = STATE(2491), + [sym_verbatim] = STATE(2491), + [sym_stack] = STATE(2491), + [sym__push] = STATE(2502), + [sym__pushOnce] = STATE(2502), + [sym__pushIf] = STATE(2502), + [sym__prepend] = STATE(2502), + [sym__prependOnce] = STATE(2502), + [sym_conditional] = STATE(2491), + [sym__if] = STATE(2503), + [sym__unless] = STATE(2503), + [sym__isset] = STATE(2503), + [sym__empty] = STATE(2503), + [sym__auth] = STATE(2503), + [sym__guest] = STATE(2503), + [sym__production] = STATE(2503), + [sym__env] = STATE(2503), + [sym__hasSection] = STATE(2503), + [sym__sectionMissing] = STATE(2503), + [sym__error] = STATE(2503), + [sym__can] = STATE(2503), + [sym__cannot] = STATE(2503), + [sym__canany] = STATE(2503), + [sym__custom] = STATE(2503), + [sym_switch] = STATE(2491), + [sym_loop] = STATE(2491), + [sym_loop_operator] = STATE(2483), + [sym__for] = STATE(2504), + [sym__foreach] = STATE(2504), + [sym__forelse] = STATE(2504), + [sym__while] = STATE(2504), + [sym_livewire] = STATE(2491), + [sym__persist] = STATE(2505), + [sym__teleport] = STATE(2505), + [sym__volt] = STATE(2505), + [aux_sym__directive_body] = STATE(307), + [sym_text] = STATE(2512), [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(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), + [aux_sym_keyword_token1] = ACTIONS(5009), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5012), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5015), + [anon_sym_ATphp] = ACTIONS(5018), + [aux_sym_attribute_token1] = ACTIONS(5021), + [aux_sym__inline_directive_token1] = ACTIONS(5024), + [anon_sym_ATfragment] = ACTIONS(5027), + [anon_sym_ATendfragment] = ACTIONS(3555), + [anon_sym_ATsection] = ACTIONS(5030), + [anon_sym_ATonce] = ACTIONS(5033), + [anon_sym_ATverbatim] = ACTIONS(5036), + [anon_sym_ATpush] = ACTIONS(5039), + [anon_sym_ATpushOnce] = ACTIONS(5042), + [anon_sym_ATpushIf] = ACTIONS(5045), + [anon_sym_ATprepend] = ACTIONS(5048), + [anon_sym_ATprependOnce] = ACTIONS(5051), + [anon_sym_ATif] = ACTIONS(5054), + [anon_sym_ATunless] = ACTIONS(5057), + [anon_sym_ATisset] = ACTIONS(5060), + [anon_sym_ATempty] = ACTIONS(5063), + [anon_sym_ATauth] = ACTIONS(5066), + [anon_sym_ATguest] = ACTIONS(5069), + [anon_sym_ATproduction] = ACTIONS(5072), + [anon_sym_ATenv] = ACTIONS(5075), + [anon_sym_AThasSection] = ACTIONS(5078), + [anon_sym_ATsectionMissing] = ACTIONS(5081), + [anon_sym_ATerror] = ACTIONS(5084), + [anon_sym_ATcan] = ACTIONS(5087), + [anon_sym_ATcannot] = ACTIONS(5090), + [anon_sym_ATcanany] = ACTIONS(5093), + [aux_sym__custom_token1] = ACTIONS(5096), + [aux_sym__custom_token2] = ACTIONS(5099), + [anon_sym_ATswitch] = ACTIONS(5102), + [aux_sym_loop_operator_token1] = ACTIONS(5105), + [anon_sym_ATfor] = ACTIONS(5108), + [anon_sym_ATforeach] = ACTIONS(5111), + [anon_sym_ATforelse] = ACTIONS(5114), + [anon_sym_ATwhile] = ACTIONS(5117), + [anon_sym_ATpersist] = ACTIONS(5120), + [anon_sym_ATteleport] = ACTIONS(5123), + [anon_sym_ATvolt] = ACTIONS(5126), + [aux_sym_text_token1] = ACTIONS(5129), + [aux_sym_text_token2] = ACTIONS(5129), + [aux_sym_text_token3] = ACTIONS(5132), }, [308] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(308), - [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(306), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(305), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5135), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [309] = { - [sym__definition] = STATE(2142), + [sym__definition] = STATE(2417), [sym_comment] = STATE(309), - [sym_keyword] = STATE(2053), - [sym_php_statement] = STATE(2053), - [sym__escaped] = STATE(2052), - [sym__unescaped] = STATE(2052), - [sym__raw] = STATE(2052), - [sym__inline_raw] = STATE(2051), - [sym__multi_line_raw] = STATE(2051), - [sym_attribute] = STATE(2053), - [sym__inline_directive] = STATE(2053), - [sym__nested_directive] = STATE(2053), - [sym_fragment] = STATE(2050), - [sym_section] = STATE(2050), - [sym_once] = STATE(2050), - [sym_verbatim] = STATE(2050), - [sym_stack] = STATE(2050), - [sym__push] = STATE(2049), - [sym__pushOnce] = STATE(2049), - [sym__pushIf] = STATE(2049), - [sym__prepend] = STATE(2049), - [sym__prependOnce] = STATE(2049), - [sym_conditional] = STATE(2050), - [sym__if] = STATE(2048), - [sym__unless] = STATE(2048), - [sym__isset] = STATE(2048), - [sym__empty] = STATE(2048), - [sym__auth] = STATE(2048), - [sym__guest] = STATE(2048), - [sym__production] = STATE(2048), - [sym__env] = STATE(2048), - [sym__hasSection] = STATE(2048), - [sym__sectionMissing] = STATE(2048), - [sym__error] = STATE(2048), - [sym__custom] = STATE(2048), - [sym_switch] = STATE(2050), - [sym_loop] = STATE(2050), - [sym_loop_operator] = STATE(2053), - [sym__for] = STATE(2044), - [sym__foreach] = STATE(2044), - [sym__forelse] = STATE(2044), - [sym__while] = STATE(2044), - [sym_livewire] = STATE(2050), - [sym__persist] = STATE(2043), - [sym__teleport] = STATE(2043), - [sym__volt] = STATE(2043), - [aux_sym__directive_body] = STATE(180), - [sym_text] = STATE(2039), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(306), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5137), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [310] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(310), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5139), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [311] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(311), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(310), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5141), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [312] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(312), - [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(310), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5141), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [313] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(313), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(312), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5143), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [314] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(314), - [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(315), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5145), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [315] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(315), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5147), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [316] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(316), - [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(317), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(318), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5149), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [317] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(317), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5151), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [318] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(318), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(322), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5153), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [319] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1377), [sym_comment] = STATE(319), - [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(323), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2074), + [sym_php_statement] = STATE(2074), + [sym__escaped] = STATE(2075), + [sym__unescaped] = STATE(2075), + [sym__raw] = STATE(2075), + [sym__inline_raw] = STATE(2076), + [sym__multi_line_raw] = STATE(2076), + [sym_attribute] = STATE(2074), + [sym__inline_directive] = STATE(2074), + [sym__nested_directive] = STATE(2074), + [sym_fragment] = STATE(2077), + [sym_section] = STATE(2077), + [sym_once] = STATE(2077), + [sym_verbatim] = STATE(2077), + [sym_stack] = STATE(2077), + [sym__push] = STATE(2078), + [sym__pushOnce] = STATE(2078), + [sym__pushIf] = STATE(2078), + [sym__prepend] = STATE(2078), + [sym__prependOnce] = STATE(2078), + [sym_conditional] = STATE(2077), + [sym__if] = STATE(2079), + [sym__unless] = STATE(2079), + [sym__isset] = STATE(2079), + [sym__empty] = STATE(2079), + [sym__auth] = STATE(2079), + [sym__guest] = STATE(2079), + [sym__production] = STATE(2079), + [sym__env] = STATE(2079), + [sym__hasSection] = STATE(2079), + [sym__sectionMissing] = STATE(2079), + [sym__error] = STATE(2079), + [sym__can] = STATE(2079), + [sym__cannot] = STATE(2079), + [sym__canany] = STATE(2079), + [sym__custom] = STATE(2079), + [sym_switch] = STATE(2077), + [sym_loop] = STATE(2077), + [sym_loop_operator] = STATE(2074), + [sym__for] = STATE(2080), + [sym__foreach] = STATE(2080), + [sym__forelse] = STATE(2080), + [sym__while] = STATE(2080), + [sym_livewire] = STATE(2077), + [sym__persist] = STATE(2081), + [sym__teleport] = STATE(2081), + [sym__volt] = STATE(2081), + [aux_sym__directive_body] = STATE(296), + [sym_text] = STATE(2082), [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(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), + [aux_sym_keyword_token1] = ACTIONS(4911), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4913), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4915), + [anon_sym_ATphp] = ACTIONS(4917), + [aux_sym_attribute_token1] = ACTIONS(4919), + [aux_sym__inline_directive_token1] = ACTIONS(4921), + [anon_sym_ATfragment] = ACTIONS(4923), + [anon_sym_ATsection] = ACTIONS(4925), + [anon_sym_ATonce] = ACTIONS(4927), + [anon_sym_ATverbatim] = ACTIONS(4929), + [anon_sym_ATpush] = ACTIONS(4931), + [anon_sym_ATpushOnce] = ACTIONS(4933), + [anon_sym_ATpushIf] = ACTIONS(4935), + [anon_sym_ATprepend] = ACTIONS(4937), + [anon_sym_ATprependOnce] = ACTIONS(4939), + [anon_sym_ATif] = ACTIONS(4941), + [anon_sym_ATunless] = ACTIONS(4943), + [anon_sym_ATisset] = ACTIONS(4945), + [anon_sym_ATempty] = ACTIONS(4947), + [anon_sym_ATauth] = ACTIONS(4949), + [anon_sym_ATguest] = ACTIONS(4951), + [anon_sym_ATproduction] = ACTIONS(4953), + [anon_sym_ATenv] = ACTIONS(4955), + [anon_sym_AThasSection] = ACTIONS(4957), + [anon_sym_ATsectionMissing] = ACTIONS(4959), + [anon_sym_ATerror] = ACTIONS(4961), + [anon_sym_ATcan] = ACTIONS(4963), + [anon_sym_ATcannot] = ACTIONS(4965), + [anon_sym_ATcanany] = ACTIONS(4967), + [aux_sym__custom_token1] = ACTIONS(4969), + [aux_sym__custom_token2] = ACTIONS(4971), + [anon_sym_ATswitch] = ACTIONS(4973), + [aux_sym_loop_operator_token1] = ACTIONS(4975), + [anon_sym_ATfor] = ACTIONS(4977), + [anon_sym_ATforeach] = ACTIONS(4979), + [anon_sym_ATforelse] = ACTIONS(4981), + [anon_sym_ATwhile] = ACTIONS(4983), + [anon_sym_ATpersist] = ACTIONS(4985), + [anon_sym_ATteleport] = ACTIONS(4987), + [anon_sym_ATvolt] = ACTIONS(4989), + [anon_sym_ATendvolt] = ACTIONS(3359), + [aux_sym_text_token1] = ACTIONS(4991), + [aux_sym_text_token2] = ACTIONS(4991), + [aux_sym_text_token3] = ACTIONS(4993), }, [320] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(320), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5155), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [321] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(321), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(332), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5153), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [322] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(322), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5157), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [323] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(323), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(320), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5159), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [324] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(324), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(322), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5161), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [325] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(325), - [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(326), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5163), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [326] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(326), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(325), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5165), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [327] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(327), - [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(328), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5165), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [328] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(328), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(327), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5167), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [329] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(329), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(367), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5169), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [330] = { - [sym__definition] = STATE(2061), + [sym__definition] = STATE(2399), [sym_comment] = STATE(330), - [sym_keyword] = STATE(1334), - [sym_php_statement] = STATE(1334), - [sym__escaped] = STATE(1333), - [sym__unescaped] = STATE(1333), - [sym__raw] = STATE(1333), - [sym__inline_raw] = STATE(1332), - [sym__multi_line_raw] = STATE(1332), - [sym_attribute] = STATE(1334), - [sym__inline_directive] = STATE(1334), - [sym__nested_directive] = STATE(1334), - [sym_fragment] = STATE(1330), - [sym_section] = STATE(1330), - [sym_once] = STATE(1330), - [sym_verbatim] = STATE(1330), - [sym_stack] = STATE(1330), - [sym__push] = STATE(1329), - [sym__pushOnce] = STATE(1329), - [sym__pushIf] = STATE(1329), - [sym__prepend] = STATE(1329), - [sym__prependOnce] = STATE(1329), - [sym_conditional] = STATE(1330), - [sym__if] = STATE(1328), - [sym__unless] = STATE(1328), - [sym__isset] = STATE(1328), - [sym__empty] = STATE(1328), - [sym__auth] = STATE(1328), - [sym__guest] = STATE(1328), - [sym__production] = STATE(1328), - [sym__env] = STATE(1328), - [sym__hasSection] = STATE(1328), - [sym__sectionMissing] = STATE(1328), - [sym__error] = STATE(1328), - [sym__custom] = STATE(1328), - [sym_switch] = STATE(1330), - [sym_loop] = STATE(1330), - [sym_loop_operator] = STATE(1334), - [sym__for] = STATE(1327), - [sym__foreach] = STATE(1327), - [sym__forelse] = STATE(1327), - [sym__while] = STATE(1327), - [sym_livewire] = STATE(1330), - [sym__persist] = STATE(1326), - [sym__teleport] = STATE(1326), - [sym__volt] = STATE(1326), - [aux_sym__directive_body] = STATE(330), - [sym_text] = STATE(1325), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(357), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5171), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [331] = { - [sym__definition] = STATE(1546), + [sym__definition] = STATE(2481), [sym_comment] = STATE(331), - [sym_keyword] = STATE(1219), - [sym_php_statement] = STATE(1219), - [sym__escaped] = STATE(1218), - [sym__unescaped] = STATE(1218), - [sym__raw] = STATE(1218), - [sym__inline_raw] = STATE(1217), - [sym__multi_line_raw] = STATE(1217), - [sym_attribute] = STATE(1219), - [sym__inline_directive] = STATE(1219), - [sym__nested_directive] = STATE(1219), - [sym_fragment] = STATE(1216), - [sym_section] = STATE(1216), - [sym_once] = STATE(1216), - [sym_verbatim] = STATE(1216), - [sym_stack] = STATE(1216), - [sym__push] = STATE(1215), - [sym__pushOnce] = STATE(1215), - [sym__pushIf] = STATE(1215), - [sym__prepend] = STATE(1215), - [sym__prependOnce] = STATE(1215), - [sym_conditional] = STATE(1216), - [sym__if] = STATE(1214), - [sym__unless] = STATE(1214), - [sym__isset] = STATE(1214), - [sym__empty] = STATE(1214), - [sym__auth] = STATE(1214), - [sym__guest] = STATE(1214), - [sym__production] = STATE(1214), - [sym__env] = STATE(1214), - [sym__hasSection] = STATE(1214), - [sym__sectionMissing] = STATE(1214), - [sym__error] = STATE(1214), - [sym__custom] = STATE(1214), - [sym_switch] = STATE(1216), - [sym_loop] = STATE(1216), - [sym_loop_operator] = STATE(1219), - [sym__for] = STATE(1213), - [sym__foreach] = STATE(1213), - [sym__forelse] = STATE(1213), - [sym__while] = STATE(1213), - [sym_livewire] = STATE(1216), - [sym__persist] = STATE(1212), - [sym__teleport] = STATE(1212), - [sym__volt] = STATE(1212), - [aux_sym__directive_body] = STATE(377), - [sym_text] = STATE(1211), + [sym_keyword] = STATE(2198), + [sym_php_statement] = STATE(2198), + [sym__escaped] = STATE(2199), + [sym__unescaped] = STATE(2199), + [sym__raw] = STATE(2199), + [sym__inline_raw] = STATE(2200), + [sym__multi_line_raw] = STATE(2200), + [sym_attribute] = STATE(2198), + [sym__inline_directive] = STATE(2198), + [sym__nested_directive] = STATE(2198), + [sym_fragment] = STATE(2201), + [sym_section] = STATE(2201), + [sym_once] = STATE(2201), + [sym_verbatim] = STATE(2201), + [sym_stack] = STATE(2201), + [sym__push] = STATE(2202), + [sym__pushOnce] = STATE(2202), + [sym__pushIf] = STATE(2202), + [sym__prepend] = STATE(2202), + [sym__prependOnce] = STATE(2202), + [sym_conditional] = STATE(2201), + [sym__if] = STATE(2203), + [sym__unless] = STATE(2203), + [sym__isset] = STATE(2203), + [sym__empty] = STATE(2203), + [sym__auth] = STATE(2203), + [sym__guest] = STATE(2203), + [sym__production] = STATE(2203), + [sym__env] = STATE(2203), + [sym__hasSection] = STATE(2203), + [sym__sectionMissing] = STATE(2203), + [sym__error] = STATE(2203), + [sym__can] = STATE(2203), + [sym__cannot] = STATE(2203), + [sym__canany] = STATE(2203), + [sym__custom] = STATE(2203), + [sym_switch] = STATE(2201), + [sym_loop] = STATE(2201), + [sym_loop_operator] = STATE(2198), + [sym__for] = STATE(2204), + [sym__foreach] = STATE(2204), + [sym__forelse] = STATE(2204), + [sym__while] = STATE(2204), + [sym_livewire] = STATE(2201), + [sym__persist] = STATE(2205), + [sym__teleport] = STATE(2205), + [sym__volt] = STATE(2205), + [aux_sym__directive_body] = STATE(331), + [sym_text] = STATE(2206), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(5173), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5176), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5179), + [anon_sym_ATphp] = ACTIONS(5182), + [aux_sym_attribute_token1] = ACTIONS(5185), + [aux_sym__inline_directive_token1] = ACTIONS(5188), + [anon_sym_ATfragment] = ACTIONS(5191), + [anon_sym_ATsection] = ACTIONS(5194), + [anon_sym_ATonce] = ACTIONS(5197), + [anon_sym_ATverbatim] = ACTIONS(5200), + [anon_sym_ATpush] = ACTIONS(5203), + [anon_sym_ATpushOnce] = ACTIONS(5206), + [anon_sym_ATpushIf] = ACTIONS(5209), + [anon_sym_ATprepend] = ACTIONS(5212), + [anon_sym_ATprependOnce] = ACTIONS(5215), + [anon_sym_ATif] = ACTIONS(5218), + [anon_sym_ATunless] = ACTIONS(5221), + [anon_sym_ATisset] = ACTIONS(5224), + [anon_sym_ATempty] = ACTIONS(5227), + [anon_sym_ATauth] = ACTIONS(5230), + [anon_sym_ATguest] = ACTIONS(5233), + [anon_sym_ATproduction] = ACTIONS(5236), + [anon_sym_ATenv] = ACTIONS(5239), + [anon_sym_AThasSection] = ACTIONS(5242), + [anon_sym_ATsectionMissing] = ACTIONS(5245), + [anon_sym_ATerror] = ACTIONS(5248), + [anon_sym_ATcan] = ACTIONS(5251), + [anon_sym_ATcannot] = ACTIONS(5254), + [anon_sym_ATcanany] = ACTIONS(5257), + [aux_sym__custom_token1] = ACTIONS(5260), + [aux_sym__custom_token2] = ACTIONS(5263), + [anon_sym_ATswitch] = ACTIONS(5266), + [anon_sym_ATbreak] = ACTIONS(3555), + [aux_sym_loop_operator_token1] = ACTIONS(5269), + [anon_sym_ATfor] = ACTIONS(5272), + [anon_sym_ATforeach] = ACTIONS(5275), + [anon_sym_ATforelse] = ACTIONS(5278), + [anon_sym_ATwhile] = ACTIONS(5281), + [anon_sym_ATpersist] = ACTIONS(5284), + [anon_sym_ATteleport] = ACTIONS(5287), + [anon_sym_ATvolt] = ACTIONS(5290), + [aux_sym_text_token1] = ACTIONS(5293), + [aux_sym_text_token2] = ACTIONS(5293), + [aux_sym_text_token3] = ACTIONS(5296), }, [332] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(332), - [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(320), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5299), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [333] = { - [sym__definition] = STATE(1144), + [sym__definition] = STATE(2399), [sym_comment] = STATE(333), - [sym_keyword] = STATE(1606), - [sym_php_statement] = STATE(1606), - [sym__escaped] = STATE(1607), - [sym__unescaped] = STATE(1607), - [sym__raw] = STATE(1607), - [sym__inline_raw] = STATE(1608), - [sym__multi_line_raw] = STATE(1608), - [sym_attribute] = STATE(1606), - [sym__inline_directive] = STATE(1606), - [sym__nested_directive] = STATE(1606), - [sym_fragment] = STATE(1609), - [sym_section] = STATE(1609), - [sym_once] = STATE(1609), - [sym_verbatim] = STATE(1609), - [sym_stack] = STATE(1609), - [sym__push] = STATE(1610), - [sym__pushOnce] = STATE(1610), - [sym__pushIf] = STATE(1610), - [sym__prepend] = STATE(1610), - [sym__prependOnce] = STATE(1610), - [sym_conditional] = STATE(1609), - [sym__if] = STATE(1611), - [sym__unless] = STATE(1611), - [sym__isset] = STATE(1611), - [sym__empty] = STATE(1611), - [sym__auth] = STATE(1611), - [sym__guest] = STATE(1611), - [sym__production] = STATE(1611), - [sym__env] = STATE(1611), - [sym__hasSection] = STATE(1611), - [sym__sectionMissing] = STATE(1611), - [sym__error] = STATE(1611), - [sym__custom] = STATE(1611), - [sym_switch] = STATE(1609), - [sym_loop] = STATE(1609), - [sym_loop_operator] = STATE(1606), - [sym__for] = STATE(1612), - [sym__foreach] = STATE(1612), - [sym__forelse] = STATE(1612), - [sym__while] = STATE(1612), - [sym_livewire] = STATE(1609), - [sym__persist] = STATE(1613), - [sym__teleport] = STATE(1613), - [sym__volt] = STATE(1613), - [aux_sym__directive_body] = STATE(333), - [sym_text] = STATE(1614), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5301), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [334] = { - [sym__definition] = STATE(1102), + [sym__definition] = STATE(2417), [sym_comment] = STATE(334), - [sym_keyword] = STATE(1724), - [sym_php_statement] = STATE(1724), - [sym__escaped] = STATE(1725), - [sym__unescaped] = STATE(1725), - [sym__raw] = STATE(1725), - [sym__inline_raw] = STATE(1726), - [sym__multi_line_raw] = STATE(1726), - [sym_attribute] = STATE(1724), - [sym__inline_directive] = STATE(1724), - [sym__nested_directive] = STATE(1724), - [sym_fragment] = STATE(1727), - [sym_section] = STATE(1727), - [sym_once] = STATE(1727), - [sym_verbatim] = STATE(1727), - [sym_stack] = STATE(1727), - [sym__push] = STATE(1728), - [sym__pushOnce] = STATE(1728), - [sym__pushIf] = STATE(1728), - [sym__prepend] = STATE(1728), - [sym__prependOnce] = STATE(1728), - [sym_conditional] = STATE(1727), - [sym__if] = STATE(1729), - [sym__unless] = STATE(1729), - [sym__isset] = STATE(1729), - [sym__empty] = STATE(1729), - [sym__auth] = STATE(1729), - [sym__guest] = STATE(1729), - [sym__production] = STATE(1729), - [sym__env] = STATE(1729), - [sym__hasSection] = STATE(1729), - [sym__sectionMissing] = STATE(1729), - [sym__error] = STATE(1729), - [sym__custom] = STATE(1729), - [sym_switch] = STATE(1727), - [sym_loop] = STATE(1727), - [sym_loop_operator] = STATE(1724), - [sym__for] = STATE(1730), - [sym__foreach] = STATE(1730), - [sym__forelse] = STATE(1730), - [sym__while] = STATE(1730), - [sym_livewire] = STATE(1727), - [sym__persist] = STATE(1731), - [sym__teleport] = STATE(1731), - [sym__volt] = STATE(1731), - [aux_sym__directive_body] = STATE(176), - [sym_text] = STATE(1732), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5303), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [335] = { - [sym__definition] = STATE(1102), + [sym__definition] = STATE(2399), [sym_comment] = STATE(335), - [sym_keyword] = STATE(1724), - [sym_php_statement] = STATE(1724), - [sym__escaped] = STATE(1725), - [sym__unescaped] = STATE(1725), - [sym__raw] = STATE(1725), - [sym__inline_raw] = STATE(1726), - [sym__multi_line_raw] = STATE(1726), - [sym_attribute] = STATE(1724), - [sym__inline_directive] = STATE(1724), - [sym__nested_directive] = STATE(1724), - [sym_fragment] = STATE(1727), - [sym_section] = STATE(1727), - [sym_once] = STATE(1727), - [sym_verbatim] = STATE(1727), - [sym_stack] = STATE(1727), - [sym__push] = STATE(1728), - [sym__pushOnce] = STATE(1728), - [sym__pushIf] = STATE(1728), - [sym__prepend] = STATE(1728), - [sym__prependOnce] = STATE(1728), - [sym_conditional] = STATE(1727), - [sym__if] = STATE(1729), - [sym__unless] = STATE(1729), - [sym__isset] = STATE(1729), - [sym__empty] = STATE(1729), - [sym__auth] = STATE(1729), - [sym__guest] = STATE(1729), - [sym__production] = STATE(1729), - [sym__env] = STATE(1729), - [sym__hasSection] = STATE(1729), - [sym__sectionMissing] = STATE(1729), - [sym__error] = STATE(1729), - [sym__custom] = STATE(1729), - [sym_switch] = STATE(1727), - [sym_loop] = STATE(1727), - [sym_loop_operator] = STATE(1724), - [sym__for] = STATE(1730), - [sym__foreach] = STATE(1730), - [sym__forelse] = STATE(1730), - [sym__while] = STATE(1730), - [sym_livewire] = STATE(1727), - [sym__persist] = STATE(1731), - [sym__teleport] = STATE(1731), - [sym__volt] = STATE(1731), - [aux_sym__directive_body] = STATE(334), - [sym_text] = STATE(1732), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(333), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5305), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [336] = { - [sym__definition] = STATE(1146), + [sym__definition] = STATE(2417), [sym_comment] = STATE(336), - [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(334), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5307), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [337] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(337), - [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(339), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5309), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [338] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(338), - [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(376), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(337), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5311), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [339] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(339), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5311), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [340] = { - [sym__definition] = STATE(1202), + [sym__definition] = STATE(2443), [sym_comment] = STATE(340), - [sym_keyword] = STATE(1547), - [sym_php_statement] = STATE(1547), - [sym__escaped] = STATE(1548), - [sym__unescaped] = STATE(1548), - [sym__raw] = STATE(1548), - [sym__inline_raw] = STATE(1549), - [sym__multi_line_raw] = STATE(1549), - [sym_attribute] = STATE(1547), - [sym__inline_directive] = STATE(1547), - [sym__nested_directive] = STATE(1547), - [sym_fragment] = STATE(1550), - [sym_section] = STATE(1550), - [sym_once] = STATE(1550), - [sym_verbatim] = STATE(1550), - [sym_stack] = STATE(1550), - [sym__push] = STATE(1551), - [sym__pushOnce] = STATE(1551), - [sym__pushIf] = STATE(1551), - [sym__prepend] = STATE(1551), - [sym__prependOnce] = STATE(1551), - [sym_conditional] = STATE(1550), - [sym__if] = STATE(1552), - [sym__unless] = STATE(1552), - [sym__isset] = STATE(1552), - [sym__empty] = STATE(1552), - [sym__auth] = STATE(1552), - [sym__guest] = STATE(1552), - [sym__production] = STATE(1552), - [sym__env] = STATE(1552), - [sym__hasSection] = STATE(1552), - [sym__sectionMissing] = STATE(1552), - [sym__error] = STATE(1552), - [sym__custom] = STATE(1552), - [sym_switch] = STATE(1550), - [sym_loop] = STATE(1550), - [sym_loop_operator] = STATE(1547), - [sym__for] = STATE(1553), - [sym__foreach] = STATE(1553), - [sym__forelse] = STATE(1553), - [sym__while] = STATE(1553), - [sym_livewire] = STATE(1550), - [sym__persist] = STATE(1554), - [sym__teleport] = STATE(1554), - [sym__volt] = STATE(1554), - [aux_sym__directive_body] = STATE(340), - [sym_text] = STATE(1555), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(339), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5313), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [341] = { - [sym__definition] = STATE(1104), + [sym__definition] = STATE(2417), [sym_comment] = STATE(341), - [sym_keyword] = STATE(1665), - [sym_php_statement] = STATE(1665), - [sym__escaped] = STATE(1666), - [sym__unescaped] = STATE(1666), - [sym__raw] = STATE(1666), - [sym__inline_raw] = STATE(1667), - [sym__multi_line_raw] = STATE(1667), - [sym_attribute] = STATE(1665), - [sym__inline_directive] = STATE(1665), - [sym__nested_directive] = STATE(1665), - [sym_fragment] = STATE(1668), - [sym_section] = STATE(1668), - [sym_once] = STATE(1668), - [sym_verbatim] = STATE(1668), - [sym_stack] = STATE(1668), - [sym__push] = STATE(1669), - [sym__pushOnce] = STATE(1669), - [sym__pushIf] = STATE(1669), - [sym__prepend] = STATE(1669), - [sym__prependOnce] = STATE(1669), - [sym_conditional] = STATE(1668), - [sym__if] = STATE(1670), - [sym__unless] = STATE(1670), - [sym__isset] = STATE(1670), - [sym__empty] = STATE(1670), - [sym__auth] = STATE(1670), - [sym__guest] = STATE(1670), - [sym__production] = STATE(1670), - [sym__env] = STATE(1670), - [sym__hasSection] = STATE(1670), - [sym__sectionMissing] = STATE(1670), - [sym__error] = STATE(1670), - [sym__custom] = STATE(1670), - [sym_switch] = STATE(1668), - [sym_loop] = STATE(1668), - [sym_loop_operator] = STATE(1665), - [sym__for] = STATE(1671), - [sym__foreach] = STATE(1671), - [sym__forelse] = STATE(1671), - [sym__while] = STATE(1671), - [sym_livewire] = STATE(1668), - [sym__persist] = STATE(1672), - [sym__teleport] = STATE(1672), - [sym__volt] = STATE(1672), - [aux_sym__directive_body] = STATE(255), - [sym_text] = STATE(1673), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(343), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5315), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [342] = { - [sym__definition] = STATE(1104), + [sym__definition] = STATE(2443), [sym_comment] = STATE(342), - [sym_keyword] = STATE(1665), - [sym_php_statement] = STATE(1665), - [sym__escaped] = STATE(1666), - [sym__unescaped] = STATE(1666), - [sym__raw] = STATE(1666), - [sym__inline_raw] = STATE(1667), - [sym__multi_line_raw] = STATE(1667), - [sym_attribute] = STATE(1665), - [sym__inline_directive] = STATE(1665), - [sym__nested_directive] = STATE(1665), - [sym_fragment] = STATE(1668), - [sym_section] = STATE(1668), - [sym_once] = STATE(1668), - [sym_verbatim] = STATE(1668), - [sym_stack] = STATE(1668), - [sym__push] = STATE(1669), - [sym__pushOnce] = STATE(1669), - [sym__pushIf] = STATE(1669), - [sym__prepend] = STATE(1669), - [sym__prependOnce] = STATE(1669), - [sym_conditional] = STATE(1668), - [sym__if] = STATE(1670), - [sym__unless] = STATE(1670), - [sym__isset] = STATE(1670), - [sym__empty] = STATE(1670), - [sym__auth] = STATE(1670), - [sym__guest] = STATE(1670), - [sym__production] = STATE(1670), - [sym__env] = STATE(1670), - [sym__hasSection] = STATE(1670), - [sym__sectionMissing] = STATE(1670), - [sym__error] = STATE(1670), - [sym__custom] = STATE(1670), - [sym_switch] = STATE(1668), - [sym_loop] = STATE(1668), - [sym_loop_operator] = STATE(1665), - [sym__for] = STATE(1671), - [sym__foreach] = STATE(1671), - [sym__forelse] = STATE(1671), - [sym__while] = STATE(1671), - [sym_livewire] = STATE(1668), - [sym__persist] = STATE(1672), - [sym__teleport] = STATE(1672), - [sym__volt] = STATE(1672), - [aux_sym__directive_body] = STATE(341), - [sym_text] = STATE(1673), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(242), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5317), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [343] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(343), - [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5319), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [344] = { - [sym__definition] = STATE(1207), + [sym__definition] = STATE(2399), [sym_comment] = STATE(344), - [sym_keyword] = STATE(1901), - [sym_php_statement] = STATE(1901), - [sym__escaped] = STATE(1902), - [sym__unescaped] = STATE(1902), - [sym__raw] = STATE(1902), - [sym__inline_raw] = STATE(1903), - [sym__multi_line_raw] = STATE(1903), - [sym_attribute] = STATE(1901), - [sym__inline_directive] = STATE(1901), - [sym__nested_directive] = STATE(1901), - [sym_fragment] = STATE(1904), - [sym_section] = STATE(1904), - [sym_once] = STATE(1904), - [sym_verbatim] = STATE(1904), - [sym_stack] = STATE(1904), - [sym__push] = STATE(1905), - [sym__pushOnce] = STATE(1905), - [sym__pushIf] = STATE(1905), - [sym__prepend] = STATE(1905), - [sym__prependOnce] = STATE(1905), - [sym_conditional] = STATE(1904), - [sym__if] = STATE(1906), - [sym__unless] = STATE(1906), - [sym__isset] = STATE(1906), - [sym__empty] = STATE(1906), - [sym__auth] = STATE(1906), - [sym__guest] = STATE(1906), - [sym__production] = STATE(1906), - [sym__env] = STATE(1906), - [sym__hasSection] = STATE(1906), - [sym__sectionMissing] = STATE(1906), - [sym__error] = STATE(1906), - [sym__custom] = STATE(1906), - [sym_switch] = STATE(1904), - [sym_loop] = STATE(1904), - [sym_loop_operator] = STATE(1901), - [sym__for] = STATE(1907), - [sym__foreach] = STATE(1907), - [sym__forelse] = STATE(1907), - [sym__while] = STATE(1907), - [sym_livewire] = STATE(1904), - [sym__persist] = STATE(1908), - [sym__teleport] = STATE(1908), - [sym__volt] = STATE(1908), - [aux_sym__directive_body] = STATE(344), - [sym_text] = STATE(1909), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5321), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [345] = { - [sym__definition] = STATE(1546), + [sym__definition] = STATE(2417), [sym_comment] = STATE(345), - [sym_keyword] = STATE(1219), - [sym_php_statement] = STATE(1219), - [sym__escaped] = STATE(1218), - [sym__unescaped] = STATE(1218), - [sym__raw] = STATE(1218), - [sym__inline_raw] = STATE(1217), - [sym__multi_line_raw] = STATE(1217), - [sym_attribute] = STATE(1219), - [sym__inline_directive] = STATE(1219), - [sym__nested_directive] = STATE(1219), - [sym_fragment] = STATE(1216), - [sym_section] = STATE(1216), - [sym_once] = STATE(1216), - [sym_verbatim] = STATE(1216), - [sym_stack] = STATE(1216), - [sym__push] = STATE(1215), - [sym__pushOnce] = STATE(1215), - [sym__pushIf] = STATE(1215), - [sym__prepend] = STATE(1215), - [sym__prependOnce] = STATE(1215), - [sym_conditional] = STATE(1216), - [sym__if] = STATE(1214), - [sym__unless] = STATE(1214), - [sym__isset] = STATE(1214), - [sym__empty] = STATE(1214), - [sym__auth] = STATE(1214), - [sym__guest] = STATE(1214), - [sym__production] = STATE(1214), - [sym__env] = STATE(1214), - [sym__hasSection] = STATE(1214), - [sym__sectionMissing] = STATE(1214), - [sym__error] = STATE(1214), - [sym__custom] = STATE(1214), - [sym_switch] = STATE(1216), - [sym_loop] = STATE(1216), - [sym_loop_operator] = STATE(1219), - [sym__for] = STATE(1213), - [sym__foreach] = STATE(1213), - [sym__forelse] = STATE(1213), - [sym__while] = STATE(1213), - [sym_livewire] = STATE(1216), - [sym__persist] = STATE(1212), - [sym__teleport] = STATE(1212), - [sym__volt] = STATE(1212), - [aux_sym__directive_body] = STATE(331), - [sym_text] = STATE(1211), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5323), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [346] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(346), - [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(343), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(344), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5325), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [347] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(347), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5327), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [348] = { - [sym__definition] = STATE(2061), + [sym__definition] = STATE(2417), [sym_comment] = STATE(348), - [sym_keyword] = STATE(1334), - [sym_php_statement] = STATE(1334), - [sym__escaped] = STATE(1333), - [sym__unescaped] = STATE(1333), - [sym__raw] = STATE(1333), - [sym__inline_raw] = STATE(1332), - [sym__multi_line_raw] = STATE(1332), - [sym_attribute] = STATE(1334), - [sym__inline_directive] = STATE(1334), - [sym__nested_directive] = STATE(1334), - [sym_fragment] = STATE(1330), - [sym_section] = STATE(1330), - [sym_once] = STATE(1330), - [sym_verbatim] = STATE(1330), - [sym_stack] = STATE(1330), - [sym__push] = STATE(1329), - [sym__pushOnce] = STATE(1329), - [sym__pushIf] = STATE(1329), - [sym__prepend] = STATE(1329), - [sym__prependOnce] = STATE(1329), - [sym_conditional] = STATE(1330), - [sym__if] = STATE(1328), - [sym__unless] = STATE(1328), - [sym__isset] = STATE(1328), - [sym__empty] = STATE(1328), - [sym__auth] = STATE(1328), - [sym__guest] = STATE(1328), - [sym__production] = STATE(1328), - [sym__env] = STATE(1328), - [sym__hasSection] = STATE(1328), - [sym__sectionMissing] = STATE(1328), - [sym__error] = STATE(1328), - [sym__custom] = STATE(1328), - [sym_switch] = STATE(1330), - [sym_loop] = STATE(1330), - [sym_loop_operator] = STATE(1334), - [sym__for] = STATE(1327), - [sym__foreach] = STATE(1327), - [sym__forelse] = STATE(1327), - [sym__while] = STATE(1327), - [sym_livewire] = STATE(1330), - [sym__persist] = STATE(1326), - [sym__teleport] = STATE(1326), - [sym__volt] = STATE(1326), - [aux_sym__directive_body] = STATE(362), - [sym_text] = STATE(1325), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(345), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5329), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [349] = { - [sym__definition] = STATE(1259), + [sym__definition] = STATE(2443), [sym_comment] = STATE(349), - [sym_keyword] = STATE(1488), - [sym_php_statement] = STATE(1488), - [sym__escaped] = STATE(1489), - [sym__unescaped] = STATE(1489), - [sym__raw] = STATE(1489), - [sym__inline_raw] = STATE(1490), - [sym__multi_line_raw] = STATE(1490), - [sym_attribute] = STATE(1488), - [sym__inline_directive] = STATE(1488), - [sym__nested_directive] = STATE(1488), - [sym_fragment] = STATE(1491), - [sym_section] = STATE(1491), - [sym_once] = STATE(1491), - [sym_verbatim] = STATE(1491), - [sym_stack] = STATE(1491), - [sym__push] = STATE(1492), - [sym__pushOnce] = STATE(1492), - [sym__pushIf] = STATE(1492), - [sym__prepend] = STATE(1492), - [sym__prependOnce] = STATE(1492), - [sym_conditional] = STATE(1491), - [sym__if] = STATE(1493), - [sym__unless] = STATE(1493), - [sym__isset] = STATE(1493), - [sym__empty] = STATE(1493), - [sym__auth] = STATE(1493), - [sym__guest] = STATE(1493), - [sym__production] = STATE(1493), - [sym__env] = STATE(1493), - [sym__hasSection] = STATE(1493), - [sym__sectionMissing] = STATE(1493), - [sym__error] = STATE(1493), - [sym__custom] = STATE(1493), - [sym_switch] = STATE(1491), - [sym_loop] = STATE(1491), - [sym_loop_operator] = STATE(1488), - [sym__for] = STATE(1494), - [sym__foreach] = STATE(1494), - [sym__forelse] = STATE(1494), - [sym__while] = STATE(1494), - [sym_livewire] = STATE(1491), - [sym__persist] = STATE(1495), - [sym__teleport] = STATE(1495), - [sym__volt] = STATE(1495), - [aux_sym__directive_body] = STATE(349), - [sym_text] = STATE(1496), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5331), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [350] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(350), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(347), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(349), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5333), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [351] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(1423), [sym_comment] = STATE(351), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(395), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1888), + [sym_php_statement] = STATE(1888), + [sym__escaped] = STATE(1889), + [sym__unescaped] = STATE(1889), + [sym__raw] = STATE(1889), + [sym__inline_raw] = STATE(1890), + [sym__multi_line_raw] = STATE(1890), + [sym_attribute] = STATE(1888), + [sym__inline_directive] = STATE(1888), + [sym__nested_directive] = STATE(1888), + [sym_fragment] = STATE(1891), + [sym_section] = STATE(1891), + [sym_once] = STATE(1891), + [sym_verbatim] = STATE(1891), + [sym_stack] = STATE(1891), + [sym__push] = STATE(1892), + [sym__pushOnce] = STATE(1892), + [sym__pushIf] = STATE(1892), + [sym__prepend] = STATE(1892), + [sym__prependOnce] = STATE(1892), + [sym_conditional] = STATE(1891), + [sym__if] = STATE(1893), + [sym__unless] = STATE(1893), + [sym__isset] = STATE(1893), + [sym__empty] = STATE(1893), + [sym__auth] = STATE(1893), + [sym__guest] = STATE(1893), + [sym__production] = STATE(1893), + [sym__env] = STATE(1893), + [sym__hasSection] = STATE(1893), + [sym__sectionMissing] = STATE(1893), + [sym__error] = STATE(1893), + [sym__can] = STATE(1893), + [sym__cannot] = STATE(1893), + [sym__canany] = STATE(1893), + [sym__custom] = STATE(1893), + [sym_switch] = STATE(1891), + [sym_loop] = STATE(1891), + [sym_loop_operator] = STATE(1888), + [sym__for] = STATE(1373), + [sym__foreach] = STATE(1373), + [sym__forelse] = STATE(1373), + [sym__while] = STATE(1373), + [sym_livewire] = STATE(1891), + [sym__persist] = STATE(1895), + [sym__teleport] = STATE(1895), + [sym__volt] = STATE(1895), + [aux_sym__directive_body] = STATE(351), + [sym_text] = STATE(1896), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(5335), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5338), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5341), + [anon_sym_ATphp] = ACTIONS(5344), + [aux_sym_attribute_token1] = ACTIONS(5347), + [aux_sym__inline_directive_token1] = ACTIONS(5350), + [anon_sym_ATfragment] = ACTIONS(5353), + [anon_sym_ATsection] = ACTIONS(5356), + [anon_sym_ATonce] = ACTIONS(5359), + [anon_sym_ATverbatim] = ACTIONS(5362), + [anon_sym_ATpush] = ACTIONS(5365), + [anon_sym_ATpushOnce] = ACTIONS(5368), + [anon_sym_ATpushIf] = ACTIONS(5371), + [anon_sym_ATprepend] = ACTIONS(5374), + [anon_sym_ATprependOnce] = ACTIONS(5377), + [anon_sym_ATif] = ACTIONS(5380), + [anon_sym_ATunless] = ACTIONS(5383), + [anon_sym_ATisset] = ACTIONS(5386), + [anon_sym_ATempty] = ACTIONS(5389), + [anon_sym_ATauth] = ACTIONS(5392), + [anon_sym_ATguest] = ACTIONS(5395), + [anon_sym_ATproduction] = ACTIONS(5398), + [anon_sym_ATenv] = ACTIONS(5401), + [anon_sym_AThasSection] = ACTIONS(5404), + [anon_sym_ATsectionMissing] = ACTIONS(5407), + [anon_sym_ATerror] = ACTIONS(5410), + [anon_sym_ATcan] = ACTIONS(5413), + [anon_sym_ATcannot] = ACTIONS(5416), + [anon_sym_ATcanany] = ACTIONS(5419), + [aux_sym__custom_token1] = ACTIONS(5422), + [aux_sym__custom_token2] = ACTIONS(5425), + [anon_sym_ATswitch] = ACTIONS(5428), + [aux_sym_loop_operator_token1] = ACTIONS(5431), + [anon_sym_ATfor] = ACTIONS(5434), + [anon_sym_ATforeach] = ACTIONS(5437), + [anon_sym_ATforelse] = ACTIONS(5440), + [anon_sym_ATwhile] = ACTIONS(5443), + [anon_sym_ATendwhile] = ACTIONS(3555), + [anon_sym_ATpersist] = ACTIONS(5446), + [anon_sym_ATteleport] = ACTIONS(5449), + [anon_sym_ATvolt] = ACTIONS(5452), + [aux_sym_text_token1] = ACTIONS(5455), + [aux_sym_text_token2] = ACTIONS(5455), + [aux_sym_text_token3] = ACTIONS(5458), }, [352] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(1379), [sym_comment] = STATE(352), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(402), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2012), + [sym_php_statement] = STATE(2012), + [sym__escaped] = STATE(2013), + [sym__unescaped] = STATE(2013), + [sym__raw] = STATE(2013), + [sym__inline_raw] = STATE(2014), + [sym__multi_line_raw] = STATE(2014), + [sym_attribute] = STATE(2012), + [sym__inline_directive] = STATE(2012), + [sym__nested_directive] = STATE(2012), + [sym_fragment] = STATE(2015), + [sym_section] = STATE(2015), + [sym_once] = STATE(2015), + [sym_verbatim] = STATE(2015), + [sym_stack] = STATE(2015), + [sym__push] = STATE(2016), + [sym__pushOnce] = STATE(2016), + [sym__pushIf] = STATE(2016), + [sym__prepend] = STATE(2016), + [sym__prependOnce] = STATE(2016), + [sym_conditional] = STATE(2015), + [sym__if] = STATE(2017), + [sym__unless] = STATE(2017), + [sym__isset] = STATE(2017), + [sym__empty] = STATE(2017), + [sym__auth] = STATE(2017), + [sym__guest] = STATE(2017), + [sym__production] = STATE(2017), + [sym__env] = STATE(2017), + [sym__hasSection] = STATE(2017), + [sym__sectionMissing] = STATE(2017), + [sym__error] = STATE(2017), + [sym__can] = STATE(2017), + [sym__cannot] = STATE(2017), + [sym__canany] = STATE(2017), + [sym__custom] = STATE(2017), + [sym_switch] = STATE(2015), + [sym_loop] = STATE(2015), + [sym_loop_operator] = STATE(2012), + [sym__for] = STATE(2018), + [sym__foreach] = STATE(2018), + [sym__forelse] = STATE(2018), + [sym__while] = STATE(2018), + [sym_livewire] = STATE(2015), + [sym__persist] = STATE(2019), + [sym__teleport] = STATE(2019), + [sym__volt] = STATE(2019), + [aux_sym__directive_body] = STATE(209), + [sym_text] = STATE(2020), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(5461), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5463), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5465), + [anon_sym_ATphp] = ACTIONS(5467), + [aux_sym_attribute_token1] = ACTIONS(5469), + [aux_sym__inline_directive_token1] = ACTIONS(5471), + [anon_sym_ATfragment] = ACTIONS(5473), + [anon_sym_ATsection] = ACTIONS(5475), + [anon_sym_ATonce] = ACTIONS(5477), + [anon_sym_ATverbatim] = ACTIONS(5479), + [anon_sym_ATpush] = ACTIONS(5481), + [anon_sym_ATpushOnce] = ACTIONS(5483), + [anon_sym_ATpushIf] = ACTIONS(5485), + [anon_sym_ATprepend] = ACTIONS(5487), + [anon_sym_ATprependOnce] = ACTIONS(5489), + [anon_sym_ATif] = ACTIONS(5491), + [anon_sym_ATunless] = ACTIONS(5493), + [anon_sym_ATisset] = ACTIONS(5495), + [anon_sym_ATempty] = ACTIONS(5497), + [anon_sym_ATauth] = ACTIONS(5499), + [anon_sym_ATguest] = ACTIONS(5501), + [anon_sym_ATproduction] = ACTIONS(5503), + [anon_sym_ATenv] = ACTIONS(5505), + [anon_sym_AThasSection] = ACTIONS(5507), + [anon_sym_ATsectionMissing] = ACTIONS(5509), + [anon_sym_ATerror] = ACTIONS(5511), + [anon_sym_ATcan] = ACTIONS(5513), + [anon_sym_ATcannot] = ACTIONS(5515), + [anon_sym_ATcanany] = ACTIONS(5517), + [aux_sym__custom_token1] = ACTIONS(5519), + [aux_sym__custom_token2] = ACTIONS(5521), + [anon_sym_ATswitch] = ACTIONS(5523), + [aux_sym_loop_operator_token1] = ACTIONS(5525), + [anon_sym_ATfor] = ACTIONS(5527), + [anon_sym_ATforeach] = ACTIONS(5529), + [anon_sym_ATforelse] = ACTIONS(5531), + [anon_sym_ATwhile] = ACTIONS(5533), + [anon_sym_ATpersist] = ACTIONS(5535), + [anon_sym_ATteleport] = ACTIONS(5537), + [anon_sym_ATendteleport] = ACTIONS(3753), + [anon_sym_ATvolt] = ACTIONS(5539), + [aux_sym_text_token1] = ACTIONS(5541), + [aux_sym_text_token2] = ACTIONS(5541), + [aux_sym_text_token3] = ACTIONS(5543), }, [353] = { - [sym__definition] = STATE(1144), + [sym__definition] = STATE(2443), [sym_comment] = STATE(353), - [sym_keyword] = STATE(1606), - [sym_php_statement] = STATE(1606), - [sym__escaped] = STATE(1607), - [sym__unescaped] = STATE(1607), - [sym__raw] = STATE(1607), - [sym__inline_raw] = STATE(1608), - [sym__multi_line_raw] = STATE(1608), - [sym_attribute] = STATE(1606), - [sym__inline_directive] = STATE(1606), - [sym__nested_directive] = STATE(1606), - [sym_fragment] = STATE(1609), - [sym_section] = STATE(1609), - [sym_once] = STATE(1609), - [sym_verbatim] = STATE(1609), - [sym_stack] = STATE(1609), - [sym__push] = STATE(1610), - [sym__pushOnce] = STATE(1610), - [sym__pushIf] = STATE(1610), - [sym__prepend] = STATE(1610), - [sym__prependOnce] = STATE(1610), - [sym_conditional] = STATE(1609), - [sym__if] = STATE(1611), - [sym__unless] = STATE(1611), - [sym__isset] = STATE(1611), - [sym__empty] = STATE(1611), - [sym__auth] = STATE(1611), - [sym__guest] = STATE(1611), - [sym__production] = STATE(1611), - [sym__env] = STATE(1611), - [sym__hasSection] = STATE(1611), - [sym__sectionMissing] = STATE(1611), - [sym__error] = STATE(1611), - [sym__custom] = STATE(1611), - [sym_switch] = STATE(1609), - [sym_loop] = STATE(1609), - [sym_loop_operator] = STATE(1606), - [sym__for] = STATE(1612), - [sym__foreach] = STATE(1612), - [sym__forelse] = STATE(1612), - [sym__while] = STATE(1612), - [sym_livewire] = STATE(1609), - [sym__persist] = STATE(1613), - [sym__teleport] = STATE(1613), - [sym__volt] = STATE(1613), - [aux_sym__directive_body] = STATE(333), - [sym_text] = STATE(1614), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5333), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [354] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1379), [sym_comment] = STATE(354), - [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(358), + [sym_keyword] = STATE(2012), + [sym_php_statement] = STATE(2012), + [sym__escaped] = STATE(2013), + [sym__unescaped] = STATE(2013), + [sym__raw] = STATE(2013), + [sym__inline_raw] = STATE(2014), + [sym__multi_line_raw] = STATE(2014), + [sym_attribute] = STATE(2012), + [sym__inline_directive] = STATE(2012), + [sym__nested_directive] = STATE(2012), + [sym_fragment] = STATE(2015), + [sym_section] = STATE(2015), + [sym_once] = STATE(2015), + [sym_verbatim] = STATE(2015), + [sym_stack] = STATE(2015), + [sym__push] = STATE(2016), + [sym__pushOnce] = STATE(2016), + [sym__pushIf] = STATE(2016), + [sym__prepend] = STATE(2016), + [sym__prependOnce] = STATE(2016), + [sym_conditional] = STATE(2015), + [sym__if] = STATE(2017), + [sym__unless] = STATE(2017), + [sym__isset] = STATE(2017), + [sym__empty] = STATE(2017), + [sym__auth] = STATE(2017), + [sym__guest] = STATE(2017), + [sym__production] = STATE(2017), + [sym__env] = STATE(2017), + [sym__hasSection] = STATE(2017), + [sym__sectionMissing] = STATE(2017), + [sym__error] = STATE(2017), + [sym__can] = STATE(2017), + [sym__cannot] = STATE(2017), + [sym__canany] = STATE(2017), + [sym__custom] = STATE(2017), + [sym_switch] = STATE(2015), + [sym_loop] = STATE(2015), + [sym_loop_operator] = STATE(2012), + [sym__for] = STATE(2018), + [sym__foreach] = STATE(2018), + [sym__forelse] = STATE(2018), + [sym__while] = STATE(2018), + [sym_livewire] = STATE(2015), + [sym__persist] = STATE(2019), + [sym__teleport] = STATE(2019), + [sym__volt] = STATE(2019), + [aux_sym__directive_body] = STATE(352), + [sym_text] = STATE(2020), [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(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), + [aux_sym_keyword_token1] = ACTIONS(5461), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5463), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5465), + [anon_sym_ATphp] = ACTIONS(5467), + [aux_sym_attribute_token1] = ACTIONS(5469), + [aux_sym__inline_directive_token1] = ACTIONS(5471), + [anon_sym_ATfragment] = ACTIONS(5473), + [anon_sym_ATsection] = ACTIONS(5475), + [anon_sym_ATonce] = ACTIONS(5477), + [anon_sym_ATverbatim] = ACTIONS(5479), + [anon_sym_ATpush] = ACTIONS(5481), + [anon_sym_ATpushOnce] = ACTIONS(5483), + [anon_sym_ATpushIf] = ACTIONS(5485), + [anon_sym_ATprepend] = ACTIONS(5487), + [anon_sym_ATprependOnce] = ACTIONS(5489), + [anon_sym_ATif] = ACTIONS(5491), + [anon_sym_ATunless] = ACTIONS(5493), + [anon_sym_ATisset] = ACTIONS(5495), + [anon_sym_ATempty] = ACTIONS(5497), + [anon_sym_ATauth] = ACTIONS(5499), + [anon_sym_ATguest] = ACTIONS(5501), + [anon_sym_ATproduction] = ACTIONS(5503), + [anon_sym_ATenv] = ACTIONS(5505), + [anon_sym_AThasSection] = ACTIONS(5507), + [anon_sym_ATsectionMissing] = ACTIONS(5509), + [anon_sym_ATerror] = ACTIONS(5511), + [anon_sym_ATcan] = ACTIONS(5513), + [anon_sym_ATcannot] = ACTIONS(5515), + [anon_sym_ATcanany] = ACTIONS(5517), + [aux_sym__custom_token1] = ACTIONS(5519), + [aux_sym__custom_token2] = ACTIONS(5521), + [anon_sym_ATswitch] = ACTIONS(5523), + [aux_sym_loop_operator_token1] = ACTIONS(5525), + [anon_sym_ATfor] = ACTIONS(5527), + [anon_sym_ATforeach] = ACTIONS(5529), + [anon_sym_ATforelse] = ACTIONS(5531), + [anon_sym_ATwhile] = ACTIONS(5533), + [anon_sym_ATpersist] = ACTIONS(5535), + [anon_sym_ATteleport] = ACTIONS(5537), + [anon_sym_ATendteleport] = ACTIONS(3359), + [anon_sym_ATvolt] = ACTIONS(5539), + [aux_sym_text_token1] = ACTIONS(5541), + [aux_sym_text_token2] = ACTIONS(5541), + [aux_sym_text_token3] = ACTIONS(5543), }, [355] = { - [sym__definition] = STATE(1144), + [sym__definition] = STATE(2443), [sym_comment] = STATE(355), - [sym_keyword] = STATE(1606), - [sym_php_statement] = STATE(1606), - [sym__escaped] = STATE(1607), - [sym__unescaped] = STATE(1607), - [sym__raw] = STATE(1607), - [sym__inline_raw] = STATE(1608), - [sym__multi_line_raw] = STATE(1608), - [sym_attribute] = STATE(1606), - [sym__inline_directive] = STATE(1606), - [sym__nested_directive] = STATE(1606), - [sym_fragment] = STATE(1609), - [sym_section] = STATE(1609), - [sym_once] = STATE(1609), - [sym_verbatim] = STATE(1609), - [sym_stack] = STATE(1609), - [sym__push] = STATE(1610), - [sym__pushOnce] = STATE(1610), - [sym__pushIf] = STATE(1610), - [sym__prepend] = STATE(1610), - [sym__prependOnce] = STATE(1610), - [sym_conditional] = STATE(1609), - [sym__if] = STATE(1611), - [sym__unless] = STATE(1611), - [sym__isset] = STATE(1611), - [sym__empty] = STATE(1611), - [sym__auth] = STATE(1611), - [sym__guest] = STATE(1611), - [sym__production] = STATE(1611), - [sym__env] = STATE(1611), - [sym__hasSection] = STATE(1611), - [sym__sectionMissing] = STATE(1611), - [sym__error] = STATE(1611), - [sym__custom] = STATE(1611), - [sym_switch] = STATE(1609), - [sym_loop] = STATE(1609), - [sym_loop_operator] = STATE(1606), - [sym__for] = STATE(1612), - [sym__foreach] = STATE(1612), - [sym__forelse] = STATE(1612), - [sym__while] = STATE(1612), - [sym_livewire] = STATE(1609), - [sym__persist] = STATE(1613), - [sym__teleport] = STATE(1613), - [sym__volt] = STATE(1613), - [aux_sym__directive_body] = STATE(353), - [sym_text] = STATE(1614), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(353), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5545), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [356] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(356), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5547), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [357] = { - [sym__definition] = STATE(1317), + [sym__definition] = STATE(2399), [sym_comment] = STATE(357), - [sym_keyword] = STATE(1429), - [sym_php_statement] = STATE(1429), - [sym__escaped] = STATE(1430), - [sym__unescaped] = STATE(1430), - [sym__raw] = STATE(1430), - [sym__inline_raw] = STATE(1431), - [sym__multi_line_raw] = STATE(1431), - [sym_attribute] = STATE(1429), - [sym__inline_directive] = STATE(1429), - [sym__nested_directive] = STATE(1429), - [sym_fragment] = STATE(1432), - [sym_section] = STATE(1432), - [sym_once] = STATE(1432), - [sym_verbatim] = STATE(1432), - [sym_stack] = STATE(1432), - [sym__push] = STATE(1433), - [sym__pushOnce] = STATE(1433), - [sym__pushIf] = STATE(1433), - [sym__prepend] = STATE(1433), - [sym__prependOnce] = STATE(1433), - [sym_conditional] = STATE(1432), - [sym__if] = STATE(1434), - [sym__unless] = STATE(1434), - [sym__isset] = STATE(1434), - [sym__empty] = STATE(1434), - [sym__auth] = STATE(1434), - [sym__guest] = STATE(1434), - [sym__production] = STATE(1434), - [sym__env] = STATE(1434), - [sym__hasSection] = STATE(1434), - [sym__sectionMissing] = STATE(1434), - [sym__error] = STATE(1434), - [sym__custom] = STATE(1434), - [sym_switch] = STATE(1432), - [sym_loop] = STATE(1432), - [sym_loop_operator] = STATE(1429), - [sym__for] = STATE(1435), - [sym__foreach] = STATE(1435), - [sym__forelse] = STATE(1435), - [sym__while] = STATE(1435), - [sym_livewire] = STATE(1432), - [sym__persist] = STATE(1436), - [sym__teleport] = STATE(1436), - [sym__volt] = STATE(1436), - [aux_sym__directive_body] = STATE(357), - [sym_text] = STATE(1437), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5549), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [358] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1483), [sym_comment] = STATE(358), - [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), + [sym_keyword] = STATE(1826), + [sym_php_statement] = STATE(1826), + [sym__escaped] = STATE(1827), + [sym__unescaped] = STATE(1827), + [sym__raw] = STATE(1827), + [sym__inline_raw] = STATE(1828), + [sym__multi_line_raw] = STATE(1828), + [sym_attribute] = STATE(1826), + [sym__inline_directive] = STATE(1826), + [sym__nested_directive] = STATE(1826), + [sym_fragment] = STATE(1829), + [sym_section] = STATE(1829), + [sym_once] = STATE(1829), + [sym_verbatim] = STATE(1829), + [sym_stack] = STATE(1829), + [sym__push] = STATE(1830), + [sym__pushOnce] = STATE(1830), + [sym__pushIf] = STATE(1830), + [sym__prepend] = STATE(1830), + [sym__prependOnce] = STATE(1830), + [sym_conditional] = STATE(1829), + [sym__if] = STATE(1831), + [sym__unless] = STATE(1831), + [sym__isset] = STATE(1831), + [sym__empty] = STATE(1831), + [sym__auth] = STATE(1831), + [sym__guest] = STATE(1831), + [sym__production] = STATE(1831), + [sym__env] = STATE(1831), + [sym__hasSection] = STATE(1831), + [sym__sectionMissing] = STATE(1831), + [sym__error] = STATE(1831), + [sym__can] = STATE(1831), + [sym__cannot] = STATE(1831), + [sym__canany] = STATE(1831), + [sym__custom] = STATE(1831), + [sym_switch] = STATE(1829), + [sym_loop] = STATE(1829), + [sym_loop_operator] = STATE(1826), + [sym__for] = STATE(1832), + [sym__foreach] = STATE(1832), + [sym__forelse] = STATE(1832), + [sym__while] = STATE(1832), + [sym_livewire] = STATE(1829), + [sym__persist] = STATE(1833), + [sym__teleport] = STATE(1833), + [sym__volt] = STATE(1833), + [aux_sym__directive_body] = STATE(358), + [sym_text] = STATE(1834), [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(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), + [aux_sym_keyword_token1] = ACTIONS(5551), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5554), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5557), + [anon_sym_ATphp] = ACTIONS(5560), + [aux_sym_attribute_token1] = ACTIONS(5563), + [aux_sym__inline_directive_token1] = ACTIONS(5566), + [anon_sym_ATfragment] = ACTIONS(5569), + [anon_sym_ATsection] = ACTIONS(5572), + [anon_sym_ATonce] = ACTIONS(5575), + [anon_sym_ATverbatim] = ACTIONS(5578), + [anon_sym_ATpush] = ACTIONS(5581), + [anon_sym_ATpushOnce] = ACTIONS(5584), + [anon_sym_ATpushIf] = ACTIONS(5587), + [anon_sym_ATprepend] = ACTIONS(5590), + [anon_sym_ATprependOnce] = ACTIONS(5593), + [anon_sym_ATif] = ACTIONS(5596), + [anon_sym_ATunless] = ACTIONS(5599), + [anon_sym_ATisset] = ACTIONS(5602), + [anon_sym_ATempty] = ACTIONS(5605), + [anon_sym_ATauth] = ACTIONS(5608), + [anon_sym_ATguest] = ACTIONS(5611), + [anon_sym_ATproduction] = ACTIONS(5614), + [anon_sym_ATenv] = ACTIONS(5617), + [anon_sym_AThasSection] = ACTIONS(5620), + [anon_sym_ATsectionMissing] = ACTIONS(5623), + [anon_sym_ATerror] = ACTIONS(5626), + [anon_sym_ATcan] = ACTIONS(5629), + [anon_sym_ATcannot] = ACTIONS(5632), + [anon_sym_ATcanany] = ACTIONS(5635), + [aux_sym__custom_token1] = ACTIONS(5638), + [aux_sym__custom_token2] = ACTIONS(5641), + [anon_sym_ATswitch] = ACTIONS(5644), + [aux_sym_loop_operator_token1] = ACTIONS(5647), + [anon_sym_ATfor] = ACTIONS(5650), + [anon_sym_ATforeach] = ACTIONS(5653), + [anon_sym_ATforelse] = ACTIONS(5656), + [anon_sym_ATendforelse] = ACTIONS(3555), + [anon_sym_ATwhile] = ACTIONS(5659), + [anon_sym_ATpersist] = ACTIONS(5662), + [anon_sym_ATteleport] = ACTIONS(5665), + [anon_sym_ATvolt] = ACTIONS(5668), + [aux_sym_text_token1] = ACTIONS(5671), + [aux_sym_text_token2] = ACTIONS(5671), + [aux_sym_text_token3] = ACTIONS(5674), }, [359] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1381), [sym_comment] = STATE(359), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1950), + [sym_php_statement] = STATE(1950), + [sym__escaped] = STATE(1951), + [sym__unescaped] = STATE(1951), + [sym__raw] = STATE(1951), + [sym__inline_raw] = STATE(1952), + [sym__multi_line_raw] = STATE(1952), + [sym_attribute] = STATE(1950), + [sym__inline_directive] = STATE(1950), + [sym__nested_directive] = STATE(1950), + [sym_fragment] = STATE(1953), + [sym_section] = STATE(1953), + [sym_once] = STATE(1953), + [sym_verbatim] = STATE(1953), + [sym_stack] = STATE(1953), + [sym__push] = STATE(1954), + [sym__pushOnce] = STATE(1954), + [sym__pushIf] = STATE(1954), + [sym__prepend] = STATE(1954), + [sym__prependOnce] = STATE(1954), + [sym_conditional] = STATE(1953), + [sym__if] = STATE(1955), + [sym__unless] = STATE(1955), + [sym__isset] = STATE(1955), + [sym__empty] = STATE(1955), + [sym__auth] = STATE(1955), + [sym__guest] = STATE(1955), + [sym__production] = STATE(1955), + [sym__env] = STATE(1955), + [sym__hasSection] = STATE(1955), + [sym__sectionMissing] = STATE(1955), + [sym__error] = STATE(1955), + [sym__can] = STATE(1955), + [sym__cannot] = STATE(1955), + [sym__canany] = STATE(1955), + [sym__custom] = STATE(1955), + [sym_switch] = STATE(1953), + [sym_loop] = STATE(1953), + [sym_loop_operator] = STATE(1950), + [sym__for] = STATE(1956), + [sym__foreach] = STATE(1956), + [sym__forelse] = STATE(1956), + [sym__while] = STATE(1956), + [sym_livewire] = STATE(1953), + [sym__persist] = STATE(1957), + [sym__teleport] = STATE(1957), + [sym__volt] = STATE(1957), + [aux_sym__directive_body] = STATE(294), + [sym_text] = STATE(1958), [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(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), + [aux_sym_keyword_token1] = ACTIONS(5677), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5679), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5681), + [anon_sym_ATphp] = ACTIONS(5683), + [aux_sym_attribute_token1] = ACTIONS(5685), + [aux_sym__inline_directive_token1] = ACTIONS(5687), + [anon_sym_ATfragment] = ACTIONS(5689), + [anon_sym_ATsection] = ACTIONS(5691), + [anon_sym_ATonce] = ACTIONS(5693), + [anon_sym_ATverbatim] = ACTIONS(5695), + [anon_sym_ATpush] = ACTIONS(5697), + [anon_sym_ATpushOnce] = ACTIONS(5699), + [anon_sym_ATpushIf] = ACTIONS(5701), + [anon_sym_ATprepend] = ACTIONS(5703), + [anon_sym_ATprependOnce] = ACTIONS(5705), + [anon_sym_ATif] = ACTIONS(5707), + [anon_sym_ATunless] = ACTIONS(5709), + [anon_sym_ATisset] = ACTIONS(5711), + [anon_sym_ATempty] = ACTIONS(5713), + [anon_sym_ATauth] = ACTIONS(5715), + [anon_sym_ATguest] = ACTIONS(5717), + [anon_sym_ATproduction] = ACTIONS(5719), + [anon_sym_ATenv] = ACTIONS(5721), + [anon_sym_AThasSection] = ACTIONS(5723), + [anon_sym_ATsectionMissing] = ACTIONS(5725), + [anon_sym_ATerror] = ACTIONS(5727), + [anon_sym_ATcan] = ACTIONS(5729), + [anon_sym_ATcannot] = ACTIONS(5731), + [anon_sym_ATcanany] = ACTIONS(5733), + [aux_sym__custom_token1] = ACTIONS(5735), + [aux_sym__custom_token2] = ACTIONS(5737), + [anon_sym_ATswitch] = ACTIONS(5739), + [aux_sym_loop_operator_token1] = ACTIONS(5741), + [anon_sym_ATfor] = ACTIONS(5743), + [anon_sym_ATforeach] = ACTIONS(5745), + [anon_sym_ATforelse] = ACTIONS(5747), + [anon_sym_ATwhile] = ACTIONS(5749), + [anon_sym_ATpersist] = ACTIONS(5751), + [anon_sym_ATendpersist] = ACTIONS(3753), + [anon_sym_ATteleport] = ACTIONS(5753), + [anon_sym_ATvolt] = ACTIONS(5755), + [aux_sym_text_token1] = ACTIONS(5757), + [aux_sym_text_token2] = ACTIONS(5757), + [aux_sym_text_token3] = ACTIONS(5759), }, [360] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(360), - [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(363), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(317), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5761), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [361] = { - [sym__definition] = STATE(1202), + [sym__definition] = STATE(1381), [sym_comment] = STATE(361), - [sym_keyword] = STATE(1547), - [sym_php_statement] = STATE(1547), - [sym__escaped] = STATE(1548), - [sym__unescaped] = STATE(1548), - [sym__raw] = STATE(1548), - [sym__inline_raw] = STATE(1549), - [sym__multi_line_raw] = STATE(1549), - [sym_attribute] = STATE(1547), - [sym__inline_directive] = STATE(1547), - [sym__nested_directive] = STATE(1547), - [sym_fragment] = STATE(1550), - [sym_section] = STATE(1550), - [sym_once] = STATE(1550), - [sym_verbatim] = STATE(1550), - [sym_stack] = STATE(1550), - [sym__push] = STATE(1551), - [sym__pushOnce] = STATE(1551), - [sym__pushIf] = STATE(1551), - [sym__prepend] = STATE(1551), - [sym__prependOnce] = STATE(1551), - [sym_conditional] = STATE(1550), - [sym__if] = STATE(1552), - [sym__unless] = STATE(1552), - [sym__isset] = STATE(1552), - [sym__empty] = STATE(1552), - [sym__auth] = STATE(1552), - [sym__guest] = STATE(1552), - [sym__production] = STATE(1552), - [sym__env] = STATE(1552), - [sym__hasSection] = STATE(1552), - [sym__sectionMissing] = STATE(1552), - [sym__error] = STATE(1552), - [sym__custom] = STATE(1552), - [sym_switch] = STATE(1550), - [sym_loop] = STATE(1550), - [sym_loop_operator] = STATE(1547), - [sym__for] = STATE(1553), - [sym__foreach] = STATE(1553), - [sym__forelse] = STATE(1553), - [sym__while] = STATE(1553), - [sym_livewire] = STATE(1550), - [sym__persist] = STATE(1554), - [sym__teleport] = STATE(1554), - [sym__volt] = STATE(1554), - [aux_sym__directive_body] = STATE(340), - [sym_text] = STATE(1555), + [sym_keyword] = STATE(1950), + [sym_php_statement] = STATE(1950), + [sym__escaped] = STATE(1951), + [sym__unescaped] = STATE(1951), + [sym__raw] = STATE(1951), + [sym__inline_raw] = STATE(1952), + [sym__multi_line_raw] = STATE(1952), + [sym_attribute] = STATE(1950), + [sym__inline_directive] = STATE(1950), + [sym__nested_directive] = STATE(1950), + [sym_fragment] = STATE(1953), + [sym_section] = STATE(1953), + [sym_once] = STATE(1953), + [sym_verbatim] = STATE(1953), + [sym_stack] = STATE(1953), + [sym__push] = STATE(1954), + [sym__pushOnce] = STATE(1954), + [sym__pushIf] = STATE(1954), + [sym__prepend] = STATE(1954), + [sym__prependOnce] = STATE(1954), + [sym_conditional] = STATE(1953), + [sym__if] = STATE(1955), + [sym__unless] = STATE(1955), + [sym__isset] = STATE(1955), + [sym__empty] = STATE(1955), + [sym__auth] = STATE(1955), + [sym__guest] = STATE(1955), + [sym__production] = STATE(1955), + [sym__env] = STATE(1955), + [sym__hasSection] = STATE(1955), + [sym__sectionMissing] = STATE(1955), + [sym__error] = STATE(1955), + [sym__can] = STATE(1955), + [sym__cannot] = STATE(1955), + [sym__canany] = STATE(1955), + [sym__custom] = STATE(1955), + [sym_switch] = STATE(1953), + [sym_loop] = STATE(1953), + [sym_loop_operator] = STATE(1950), + [sym__for] = STATE(1956), + [sym__foreach] = STATE(1956), + [sym__forelse] = STATE(1956), + [sym__while] = STATE(1956), + [sym_livewire] = STATE(1953), + [sym__persist] = STATE(1957), + [sym__teleport] = STATE(1957), + [sym__volt] = STATE(1957), + [aux_sym__directive_body] = STATE(359), + [sym_text] = STATE(1958), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(5677), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5679), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5681), + [anon_sym_ATphp] = ACTIONS(5683), + [aux_sym_attribute_token1] = ACTIONS(5685), + [aux_sym__inline_directive_token1] = ACTIONS(5687), + [anon_sym_ATfragment] = ACTIONS(5689), + [anon_sym_ATsection] = ACTIONS(5691), + [anon_sym_ATonce] = ACTIONS(5693), + [anon_sym_ATverbatim] = ACTIONS(5695), + [anon_sym_ATpush] = ACTIONS(5697), + [anon_sym_ATpushOnce] = ACTIONS(5699), + [anon_sym_ATpushIf] = ACTIONS(5701), + [anon_sym_ATprepend] = ACTIONS(5703), + [anon_sym_ATprependOnce] = ACTIONS(5705), + [anon_sym_ATif] = ACTIONS(5707), + [anon_sym_ATunless] = ACTIONS(5709), + [anon_sym_ATisset] = ACTIONS(5711), + [anon_sym_ATempty] = ACTIONS(5713), + [anon_sym_ATauth] = ACTIONS(5715), + [anon_sym_ATguest] = ACTIONS(5717), + [anon_sym_ATproduction] = ACTIONS(5719), + [anon_sym_ATenv] = ACTIONS(5721), + [anon_sym_AThasSection] = ACTIONS(5723), + [anon_sym_ATsectionMissing] = ACTIONS(5725), + [anon_sym_ATerror] = ACTIONS(5727), + [anon_sym_ATcan] = ACTIONS(5729), + [anon_sym_ATcannot] = ACTIONS(5731), + [anon_sym_ATcanany] = ACTIONS(5733), + [aux_sym__custom_token1] = ACTIONS(5735), + [aux_sym__custom_token2] = ACTIONS(5737), + [anon_sym_ATswitch] = ACTIONS(5739), + [aux_sym_loop_operator_token1] = ACTIONS(5741), + [anon_sym_ATfor] = ACTIONS(5743), + [anon_sym_ATforeach] = ACTIONS(5745), + [anon_sym_ATforelse] = ACTIONS(5747), + [anon_sym_ATwhile] = ACTIONS(5749), + [anon_sym_ATpersist] = ACTIONS(5751), + [anon_sym_ATendpersist] = ACTIONS(3359), + [anon_sym_ATteleport] = ACTIONS(5753), + [anon_sym_ATvolt] = ACTIONS(5755), + [aux_sym_text_token1] = ACTIONS(5757), + [aux_sym_text_token2] = ACTIONS(5757), + [aux_sym_text_token3] = ACTIONS(5759), }, [362] = { - [sym__definition] = STATE(2061), + [sym__definition] = STATE(2443), [sym_comment] = STATE(362), - [sym_keyword] = STATE(1334), - [sym_php_statement] = STATE(1334), - [sym__escaped] = STATE(1333), - [sym__unescaped] = STATE(1333), - [sym__raw] = STATE(1333), - [sym__inline_raw] = STATE(1332), - [sym__multi_line_raw] = STATE(1332), - [sym_attribute] = STATE(1334), - [sym__inline_directive] = STATE(1334), - [sym__nested_directive] = STATE(1334), - [sym_fragment] = STATE(1330), - [sym_section] = STATE(1330), - [sym_once] = STATE(1330), - [sym_verbatim] = STATE(1330), - [sym_stack] = STATE(1330), - [sym__push] = STATE(1329), - [sym__pushOnce] = STATE(1329), - [sym__pushIf] = STATE(1329), - [sym__prepend] = STATE(1329), - [sym__prependOnce] = STATE(1329), - [sym_conditional] = STATE(1330), - [sym__if] = STATE(1328), - [sym__unless] = STATE(1328), - [sym__isset] = STATE(1328), - [sym__empty] = STATE(1328), - [sym__auth] = STATE(1328), - [sym__guest] = STATE(1328), - [sym__production] = STATE(1328), - [sym__env] = STATE(1328), - [sym__hasSection] = STATE(1328), - [sym__sectionMissing] = STATE(1328), - [sym__error] = STATE(1328), - [sym__custom] = STATE(1328), - [sym_switch] = STATE(1330), - [sym_loop] = STATE(1330), - [sym_loop_operator] = STATE(1334), - [sym__for] = STATE(1327), - [sym__foreach] = STATE(1327), - [sym__forelse] = STATE(1327), - [sym__while] = STATE(1327), - [sym_livewire] = STATE(1330), - [sym__persist] = STATE(1326), - [sym__teleport] = STATE(1326), - [sym__volt] = STATE(1326), - [aux_sym__directive_body] = STATE(330), - [sym_text] = STATE(1325), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(375), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5763), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [363] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2462), [sym_comment] = STATE(363), - [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), + [sym_keyword] = STATE(1621), + [sym_php_statement] = STATE(1621), + [sym__escaped] = STATE(1620), + [sym__unescaped] = STATE(1620), + [sym__raw] = STATE(1620), + [sym__inline_raw] = STATE(1619), + [sym__multi_line_raw] = STATE(1619), + [sym_attribute] = STATE(1621), + [sym__inline_directive] = STATE(1621), + [sym__nested_directive] = STATE(1621), + [sym_fragment] = STATE(1618), + [sym_section] = STATE(1618), + [sym_once] = STATE(1618), + [sym_verbatim] = STATE(1618), + [sym_stack] = STATE(1618), + [sym__push] = STATE(1617), + [sym__pushOnce] = STATE(1617), + [sym__pushIf] = STATE(1617), + [sym__prepend] = STATE(1617), + [sym__prependOnce] = STATE(1617), + [sym_conditional] = STATE(1618), + [sym__if] = STATE(1616), + [sym__unless] = STATE(1616), + [sym__isset] = STATE(1616), + [sym__empty] = STATE(1616), + [sym__auth] = STATE(1616), + [sym__guest] = STATE(1616), + [sym__production] = STATE(1616), + [sym__env] = STATE(1616), + [sym__hasSection] = STATE(1616), + [sym__sectionMissing] = STATE(1616), + [sym__error] = STATE(1616), + [sym__can] = STATE(1616), + [sym__cannot] = STATE(1616), + [sym__canany] = STATE(1616), + [sym__custom] = STATE(1616), + [sym_switch] = STATE(1618), + [sym_loop] = STATE(1618), + [sym_loop_operator] = STATE(1621), + [sym__for] = STATE(1615), + [sym__foreach] = STATE(1615), + [sym__forelse] = STATE(1615), + [sym__while] = STATE(1615), + [sym_livewire] = STATE(1618), + [sym__persist] = STATE(1614), + [sym__teleport] = STATE(1614), + [sym__volt] = STATE(1614), + [aux_sym__directive_body] = STATE(377), + [sym_text] = STATE(1613), [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(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), + [aux_sym_keyword_token1] = ACTIONS(5765), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5767), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5769), + [anon_sym_ATphp] = ACTIONS(5771), + [aux_sym_attribute_token1] = ACTIONS(5773), + [aux_sym__inline_directive_token1] = ACTIONS(5775), + [anon_sym_ATfragment] = ACTIONS(5777), + [anon_sym_ATsection] = ACTIONS(5779), + [anon_sym_ATonce] = ACTIONS(5781), + [anon_sym_ATverbatim] = ACTIONS(5783), + [anon_sym_ATpush] = ACTIONS(5785), + [anon_sym_ATpushOnce] = ACTIONS(5787), + [anon_sym_ATendPushOnce] = ACTIONS(3359), + [anon_sym_ATpushIf] = ACTIONS(5789), + [anon_sym_ATprepend] = ACTIONS(5791), + [anon_sym_ATprependOnce] = ACTIONS(5793), + [anon_sym_ATif] = ACTIONS(5795), + [anon_sym_ATunless] = ACTIONS(5797), + [anon_sym_ATisset] = ACTIONS(5799), + [anon_sym_ATempty] = ACTIONS(5801), + [anon_sym_ATauth] = ACTIONS(5803), + [anon_sym_ATguest] = ACTIONS(5805), + [anon_sym_ATproduction] = ACTIONS(5807), + [anon_sym_ATenv] = ACTIONS(5809), + [anon_sym_AThasSection] = ACTIONS(5811), + [anon_sym_ATsectionMissing] = ACTIONS(5813), + [anon_sym_ATerror] = ACTIONS(5815), + [anon_sym_ATcan] = ACTIONS(5817), + [anon_sym_ATcannot] = ACTIONS(5819), + [anon_sym_ATcanany] = ACTIONS(5821), + [aux_sym__custom_token1] = ACTIONS(5823), + [aux_sym__custom_token2] = ACTIONS(5825), + [anon_sym_ATswitch] = ACTIONS(5827), + [aux_sym_loop_operator_token1] = ACTIONS(5829), + [anon_sym_ATfor] = ACTIONS(5831), + [anon_sym_ATforeach] = ACTIONS(5833), + [anon_sym_ATforelse] = ACTIONS(5835), + [anon_sym_ATwhile] = ACTIONS(5837), + [anon_sym_ATpersist] = ACTIONS(5839), + [anon_sym_ATteleport] = ACTIONS(5841), + [anon_sym_ATvolt] = ACTIONS(5843), + [aux_sym_text_token1] = ACTIONS(5845), + [aux_sym_text_token2] = ACTIONS(5845), + [aux_sym_text_token3] = ACTIONS(5847), }, [364] = { - [sym__definition] = STATE(1202), + [sym__definition] = STATE(2417), [sym_comment] = STATE(364), - [sym_keyword] = STATE(1547), - [sym_php_statement] = STATE(1547), - [sym__escaped] = STATE(1548), - [sym__unescaped] = STATE(1548), - [sym__raw] = STATE(1548), - [sym__inline_raw] = STATE(1549), - [sym__multi_line_raw] = STATE(1549), - [sym_attribute] = STATE(1547), - [sym__inline_directive] = STATE(1547), - [sym__nested_directive] = STATE(1547), - [sym_fragment] = STATE(1550), - [sym_section] = STATE(1550), - [sym_once] = STATE(1550), - [sym_verbatim] = STATE(1550), - [sym_stack] = STATE(1550), - [sym__push] = STATE(1551), - [sym__pushOnce] = STATE(1551), - [sym__pushIf] = STATE(1551), - [sym__prepend] = STATE(1551), - [sym__prependOnce] = STATE(1551), - [sym_conditional] = STATE(1550), - [sym__if] = STATE(1552), - [sym__unless] = STATE(1552), - [sym__isset] = STATE(1552), - [sym__empty] = STATE(1552), - [sym__auth] = STATE(1552), - [sym__guest] = STATE(1552), - [sym__production] = STATE(1552), - [sym__env] = STATE(1552), - [sym__hasSection] = STATE(1552), - [sym__sectionMissing] = STATE(1552), - [sym__error] = STATE(1552), - [sym__custom] = STATE(1552), - [sym_switch] = STATE(1550), - [sym_loop] = STATE(1550), - [sym_loop_operator] = STATE(1547), - [sym__for] = STATE(1553), - [sym__foreach] = STATE(1553), - [sym__forelse] = STATE(1553), - [sym__while] = STATE(1553), - [sym_livewire] = STATE(1550), - [sym__persist] = STATE(1554), - [sym__teleport] = STATE(1554), - [sym__volt] = STATE(1554), - [aux_sym__directive_body] = STATE(361), - [sym_text] = STATE(1555), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(356), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5849), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [365] = { - [sym__definition] = STATE(2077), + [sym__definition] = STATE(2399), [sym_comment] = STATE(365), - [sym_keyword] = STATE(1898), - [sym_php_statement] = STATE(1898), - [sym__escaped] = STATE(1780), - [sym__unescaped] = STATE(1780), - [sym__raw] = STATE(1780), - [sym__inline_raw] = STATE(1862), - [sym__multi_line_raw] = STATE(1862), - [sym_attribute] = STATE(1898), - [sym__inline_directive] = STATE(1898), - [sym__nested_directive] = STATE(1898), - [sym_fragment] = STATE(1840), - [sym_section] = STATE(1840), - [sym_once] = STATE(1840), - [sym_verbatim] = STATE(1840), - [sym_stack] = STATE(1840), - [sym__push] = STATE(1839), - [sym__pushOnce] = STATE(1839), - [sym__pushIf] = STATE(1839), - [sym__prepend] = STATE(1839), - [sym__prependOnce] = STATE(1839), - [sym_conditional] = STATE(1840), - [sym__if] = STATE(1834), - [sym__unless] = STATE(1834), - [sym__isset] = STATE(1834), - [sym__empty] = STATE(1834), - [sym__auth] = STATE(1834), - [sym__guest] = STATE(1834), - [sym__production] = STATE(1834), - [sym__env] = STATE(1834), - [sym__hasSection] = STATE(1834), - [sym__sectionMissing] = STATE(1834), - [sym__error] = STATE(1834), - [sym__custom] = STATE(1834), - [sym_switch] = STATE(1840), - [sym_loop] = STATE(1840), - [sym_loop_operator] = STATE(1898), - [sym__for] = STATE(1803), - [sym__foreach] = STATE(1803), - [sym__forelse] = STATE(1803), - [sym__while] = STATE(1803), - [sym_livewire] = STATE(1840), - [sym__persist] = STATE(1781), - [sym__teleport] = STATE(1781), - [sym__volt] = STATE(1781), - [aux_sym__directive_body] = STATE(365), - [sym_text] = STATE(1662), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(5851), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [366] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(366), - [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(371), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(376), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5853), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [367] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(367), - [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(397), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(5855), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [368] = { - [sym__definition] = STATE(1374), + [sym__definition] = STATE(1544), [sym_comment] = STATE(368), - [sym_keyword] = STATE(1161), - [sym_php_statement] = STATE(1161), - [sym__escaped] = STATE(1160), - [sym__unescaped] = STATE(1160), - [sym__raw] = STATE(1160), - [sym__inline_raw] = STATE(1159), - [sym__multi_line_raw] = STATE(1159), - [sym_attribute] = STATE(1161), - [sym__inline_directive] = STATE(1161), - [sym__nested_directive] = STATE(1161), - [sym_fragment] = STATE(1158), - [sym_section] = STATE(1158), - [sym_once] = STATE(1158), - [sym_verbatim] = STATE(1158), - [sym_stack] = STATE(1158), - [sym__push] = STATE(1157), - [sym__pushOnce] = STATE(1157), - [sym__pushIf] = STATE(1157), - [sym__prepend] = STATE(1157), - [sym__prependOnce] = STATE(1157), - [sym_conditional] = STATE(1158), - [sym__if] = STATE(1156), - [sym__unless] = STATE(1156), - [sym__isset] = STATE(1156), - [sym__empty] = STATE(1156), - [sym__auth] = STATE(1156), - [sym__guest] = STATE(1156), - [sym__production] = STATE(1156), - [sym__env] = STATE(1156), - [sym__hasSection] = STATE(1156), - [sym__sectionMissing] = STATE(1156), - [sym__error] = STATE(1156), - [sym__custom] = STATE(1156), - [sym_switch] = STATE(1158), - [sym_loop] = STATE(1158), - [sym_loop_operator] = STATE(1161), - [sym__for] = STATE(1155), - [sym__foreach] = STATE(1155), - [sym__forelse] = STATE(1155), - [sym__while] = STATE(1155), - [sym_livewire] = STATE(1158), - [sym__persist] = STATE(1154), - [sym__teleport] = STATE(1154), - [sym__volt] = STATE(1154), + [sym_keyword] = STATE(1764), + [sym_php_statement] = STATE(1764), + [sym__escaped] = STATE(1765), + [sym__unescaped] = STATE(1765), + [sym__raw] = STATE(1765), + [sym__inline_raw] = STATE(1766), + [sym__multi_line_raw] = STATE(1766), + [sym_attribute] = STATE(1764), + [sym__inline_directive] = STATE(1764), + [sym__nested_directive] = STATE(1764), + [sym_fragment] = STATE(1767), + [sym_section] = STATE(1767), + [sym_once] = STATE(1767), + [sym_verbatim] = STATE(1767), + [sym_stack] = STATE(1767), + [sym__push] = STATE(1768), + [sym__pushOnce] = STATE(1768), + [sym__pushIf] = STATE(1768), + [sym__prepend] = STATE(1768), + [sym__prependOnce] = STATE(1768), + [sym_conditional] = STATE(1767), + [sym__if] = STATE(1769), + [sym__unless] = STATE(1769), + [sym__isset] = STATE(1769), + [sym__empty] = STATE(1769), + [sym__auth] = STATE(1769), + [sym__guest] = STATE(1769), + [sym__production] = STATE(1769), + [sym__env] = STATE(1769), + [sym__hasSection] = STATE(1769), + [sym__sectionMissing] = STATE(1769), + [sym__error] = STATE(1769), + [sym__can] = STATE(1769), + [sym__cannot] = STATE(1769), + [sym__canany] = STATE(1769), + [sym__custom] = STATE(1769), + [sym_switch] = STATE(1767), + [sym_loop] = STATE(1767), + [sym_loop_operator] = STATE(1764), + [sym__for] = STATE(1770), + [sym__foreach] = STATE(1770), + [sym__forelse] = STATE(1770), + [sym__while] = STATE(1770), + [sym_livewire] = STATE(1767), + [sym__persist] = STATE(1771), + [sym__teleport] = STATE(1771), + [sym__volt] = STATE(1771), [aux_sym__directive_body] = STATE(368), - [sym_text] = STATE(1153), + [sym_text] = STATE(1772), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(5857), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5860), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5863), + [anon_sym_ATphp] = ACTIONS(5866), + [aux_sym_attribute_token1] = ACTIONS(5869), + [aux_sym__inline_directive_token1] = ACTIONS(5872), + [anon_sym_ATfragment] = ACTIONS(5875), + [anon_sym_ATsection] = ACTIONS(5878), + [anon_sym_ATonce] = ACTIONS(5881), + [anon_sym_ATverbatim] = ACTIONS(5884), + [anon_sym_ATpush] = ACTIONS(5887), + [anon_sym_ATpushOnce] = ACTIONS(5890), + [anon_sym_ATpushIf] = ACTIONS(5893), + [anon_sym_ATprepend] = ACTIONS(5896), + [anon_sym_ATprependOnce] = ACTIONS(5899), + [anon_sym_ATif] = ACTIONS(5902), + [anon_sym_ATunless] = ACTIONS(5905), + [anon_sym_ATisset] = ACTIONS(5908), + [anon_sym_ATempty] = ACTIONS(5911), + [anon_sym_ATauth] = ACTIONS(5914), + [anon_sym_ATguest] = ACTIONS(5917), + [anon_sym_ATproduction] = ACTIONS(5920), + [anon_sym_ATenv] = ACTIONS(5923), + [anon_sym_AThasSection] = ACTIONS(5926), + [anon_sym_ATsectionMissing] = ACTIONS(5929), + [anon_sym_ATerror] = ACTIONS(5932), + [anon_sym_ATcan] = ACTIONS(5935), + [anon_sym_ATcannot] = ACTIONS(5938), + [anon_sym_ATcanany] = ACTIONS(5941), + [aux_sym__custom_token1] = ACTIONS(5944), + [aux_sym__custom_token2] = ACTIONS(5947), + [anon_sym_ATswitch] = ACTIONS(5950), + [aux_sym_loop_operator_token1] = ACTIONS(5953), + [anon_sym_ATfor] = ACTIONS(5956), + [anon_sym_ATforeach] = ACTIONS(5959), + [anon_sym_ATendforeach] = ACTIONS(3555), + [anon_sym_ATforelse] = ACTIONS(5962), + [anon_sym_ATwhile] = ACTIONS(5965), + [anon_sym_ATpersist] = ACTIONS(5968), + [anon_sym_ATteleport] = ACTIONS(5971), + [anon_sym_ATvolt] = ACTIONS(5974), + [aux_sym_text_token1] = ACTIONS(5977), + [aux_sym_text_token2] = ACTIONS(5977), + [aux_sym_text_token3] = ACTIONS(5980), }, [369] = { - [sym__definition] = STATE(1259), + [sym__definition] = STATE(2443), [sym_comment] = STATE(369), - [sym_keyword] = STATE(1488), - [sym_php_statement] = STATE(1488), - [sym__escaped] = STATE(1489), - [sym__unescaped] = STATE(1489), - [sym__raw] = STATE(1489), - [sym__inline_raw] = STATE(1490), - [sym__multi_line_raw] = STATE(1490), - [sym_attribute] = STATE(1488), - [sym__inline_directive] = STATE(1488), - [sym__nested_directive] = STATE(1488), - [sym_fragment] = STATE(1491), - [sym_section] = STATE(1491), - [sym_once] = STATE(1491), - [sym_verbatim] = STATE(1491), - [sym_stack] = STATE(1491), - [sym__push] = STATE(1492), - [sym__pushOnce] = STATE(1492), - [sym__pushIf] = STATE(1492), - [sym__prepend] = STATE(1492), - [sym__prependOnce] = STATE(1492), - [sym_conditional] = STATE(1491), - [sym__if] = STATE(1493), - [sym__unless] = STATE(1493), - [sym__isset] = STATE(1493), - [sym__empty] = STATE(1493), - [sym__auth] = STATE(1493), - [sym__guest] = STATE(1493), - [sym__production] = STATE(1493), - [sym__env] = STATE(1493), - [sym__hasSection] = STATE(1493), - [sym__sectionMissing] = STATE(1493), - [sym__error] = STATE(1493), - [sym__custom] = STATE(1493), - [sym_switch] = STATE(1491), - [sym_loop] = STATE(1491), - [sym_loop_operator] = STATE(1488), - [sym__for] = STATE(1494), - [sym__foreach] = STATE(1494), - [sym__forelse] = STATE(1494), - [sym__while] = STATE(1494), - [sym_livewire] = STATE(1491), - [sym__persist] = STATE(1495), - [sym__teleport] = STATE(1495), - [sym__volt] = STATE(1495), - [aux_sym__directive_body] = STATE(349), - [sym_text] = STATE(1496), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(5983), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [370] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1423), [sym_comment] = STATE(370), - [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(307), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1888), + [sym_php_statement] = STATE(1888), + [sym__escaped] = STATE(1889), + [sym__unescaped] = STATE(1889), + [sym__raw] = STATE(1889), + [sym__inline_raw] = STATE(1890), + [sym__multi_line_raw] = STATE(1890), + [sym_attribute] = STATE(1888), + [sym__inline_directive] = STATE(1888), + [sym__nested_directive] = STATE(1888), + [sym_fragment] = STATE(1891), + [sym_section] = STATE(1891), + [sym_once] = STATE(1891), + [sym_verbatim] = STATE(1891), + [sym_stack] = STATE(1891), + [sym__push] = STATE(1892), + [sym__pushOnce] = STATE(1892), + [sym__pushIf] = STATE(1892), + [sym__prepend] = STATE(1892), + [sym__prependOnce] = STATE(1892), + [sym_conditional] = STATE(1891), + [sym__if] = STATE(1893), + [sym__unless] = STATE(1893), + [sym__isset] = STATE(1893), + [sym__empty] = STATE(1893), + [sym__auth] = STATE(1893), + [sym__guest] = STATE(1893), + [sym__production] = STATE(1893), + [sym__env] = STATE(1893), + [sym__hasSection] = STATE(1893), + [sym__sectionMissing] = STATE(1893), + [sym__error] = STATE(1893), + [sym__can] = STATE(1893), + [sym__cannot] = STATE(1893), + [sym__canany] = STATE(1893), + [sym__custom] = STATE(1893), + [sym_switch] = STATE(1891), + [sym_loop] = STATE(1891), + [sym_loop_operator] = STATE(1888), + [sym__for] = STATE(1373), + [sym__foreach] = STATE(1373), + [sym__forelse] = STATE(1373), + [sym__while] = STATE(1373), + [sym_livewire] = STATE(1891), + [sym__persist] = STATE(1895), + [sym__teleport] = STATE(1895), + [sym__volt] = STATE(1895), + [aux_sym__directive_body] = STATE(351), + [sym_text] = STATE(1896), [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(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), + [aux_sym_keyword_token1] = ACTIONS(5985), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5987), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5989), + [anon_sym_ATphp] = ACTIONS(5991), + [aux_sym_attribute_token1] = ACTIONS(5993), + [aux_sym__inline_directive_token1] = ACTIONS(5995), + [anon_sym_ATfragment] = ACTIONS(5997), + [anon_sym_ATsection] = ACTIONS(5999), + [anon_sym_ATonce] = ACTIONS(6001), + [anon_sym_ATverbatim] = ACTIONS(6003), + [anon_sym_ATpush] = ACTIONS(6005), + [anon_sym_ATpushOnce] = ACTIONS(6007), + [anon_sym_ATpushIf] = ACTIONS(6009), + [anon_sym_ATprepend] = ACTIONS(6011), + [anon_sym_ATprependOnce] = ACTIONS(6013), + [anon_sym_ATif] = ACTIONS(6015), + [anon_sym_ATunless] = ACTIONS(6017), + [anon_sym_ATisset] = ACTIONS(6019), + [anon_sym_ATempty] = ACTIONS(6021), + [anon_sym_ATauth] = ACTIONS(6023), + [anon_sym_ATguest] = ACTIONS(6025), + [anon_sym_ATproduction] = ACTIONS(6027), + [anon_sym_ATenv] = ACTIONS(6029), + [anon_sym_AThasSection] = ACTIONS(6031), + [anon_sym_ATsectionMissing] = ACTIONS(6033), + [anon_sym_ATerror] = ACTIONS(6035), + [anon_sym_ATcan] = ACTIONS(6037), + [anon_sym_ATcannot] = ACTIONS(6039), + [anon_sym_ATcanany] = ACTIONS(6041), + [aux_sym__custom_token1] = ACTIONS(6043), + [aux_sym__custom_token2] = ACTIONS(6045), + [anon_sym_ATswitch] = ACTIONS(6047), + [aux_sym_loop_operator_token1] = ACTIONS(6049), + [anon_sym_ATfor] = ACTIONS(6051), + [anon_sym_ATforeach] = ACTIONS(6053), + [anon_sym_ATforelse] = ACTIONS(6055), + [anon_sym_ATwhile] = ACTIONS(6057), + [anon_sym_ATendwhile] = ACTIONS(3753), + [anon_sym_ATpersist] = ACTIONS(6059), + [anon_sym_ATteleport] = ACTIONS(6061), + [anon_sym_ATvolt] = ACTIONS(6063), + [aux_sym_text_token1] = ACTIONS(6065), + [aux_sym_text_token2] = ACTIONS(6065), + [aux_sym_text_token3] = ACTIONS(6067), }, [371] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(371), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6069), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [372] = { - [sym__definition] = STATE(1374), + [sym__definition] = STATE(1423), [sym_comment] = STATE(372), - [sym_keyword] = STATE(1161), - [sym_php_statement] = STATE(1161), - [sym__escaped] = STATE(1160), - [sym__unescaped] = STATE(1160), - [sym__raw] = STATE(1160), - [sym__inline_raw] = STATE(1159), - [sym__multi_line_raw] = STATE(1159), - [sym_attribute] = STATE(1161), - [sym__inline_directive] = STATE(1161), - [sym__nested_directive] = STATE(1161), - [sym_fragment] = STATE(1158), - [sym_section] = STATE(1158), - [sym_once] = STATE(1158), - [sym_verbatim] = STATE(1158), - [sym_stack] = STATE(1158), - [sym__push] = STATE(1157), - [sym__pushOnce] = STATE(1157), - [sym__pushIf] = STATE(1157), - [sym__prepend] = STATE(1157), - [sym__prependOnce] = STATE(1157), - [sym_conditional] = STATE(1158), - [sym__if] = STATE(1156), - [sym__unless] = STATE(1156), - [sym__isset] = STATE(1156), - [sym__empty] = STATE(1156), - [sym__auth] = STATE(1156), - [sym__guest] = STATE(1156), - [sym__production] = STATE(1156), - [sym__env] = STATE(1156), - [sym__hasSection] = STATE(1156), - [sym__sectionMissing] = STATE(1156), - [sym__error] = STATE(1156), - [sym__custom] = STATE(1156), - [sym_switch] = STATE(1158), - [sym_loop] = STATE(1158), - [sym_loop_operator] = STATE(1161), - [sym__for] = STATE(1155), - [sym__foreach] = STATE(1155), - [sym__forelse] = STATE(1155), - [sym__while] = STATE(1155), - [sym_livewire] = STATE(1158), - [sym__persist] = STATE(1154), - [sym__teleport] = STATE(1154), - [sym__volt] = STATE(1154), - [aux_sym__directive_body] = STATE(400), - [sym_text] = STATE(1153), + [sym_keyword] = STATE(1888), + [sym_php_statement] = STATE(1888), + [sym__escaped] = STATE(1889), + [sym__unescaped] = STATE(1889), + [sym__raw] = STATE(1889), + [sym__inline_raw] = STATE(1890), + [sym__multi_line_raw] = STATE(1890), + [sym_attribute] = STATE(1888), + [sym__inline_directive] = STATE(1888), + [sym__nested_directive] = STATE(1888), + [sym_fragment] = STATE(1891), + [sym_section] = STATE(1891), + [sym_once] = STATE(1891), + [sym_verbatim] = STATE(1891), + [sym_stack] = STATE(1891), + [sym__push] = STATE(1892), + [sym__pushOnce] = STATE(1892), + [sym__pushIf] = STATE(1892), + [sym__prepend] = STATE(1892), + [sym__prependOnce] = STATE(1892), + [sym_conditional] = STATE(1891), + [sym__if] = STATE(1893), + [sym__unless] = STATE(1893), + [sym__isset] = STATE(1893), + [sym__empty] = STATE(1893), + [sym__auth] = STATE(1893), + [sym__guest] = STATE(1893), + [sym__production] = STATE(1893), + [sym__env] = STATE(1893), + [sym__hasSection] = STATE(1893), + [sym__sectionMissing] = STATE(1893), + [sym__error] = STATE(1893), + [sym__can] = STATE(1893), + [sym__cannot] = STATE(1893), + [sym__canany] = STATE(1893), + [sym__custom] = STATE(1893), + [sym_switch] = STATE(1891), + [sym_loop] = STATE(1891), + [sym_loop_operator] = STATE(1888), + [sym__for] = STATE(1373), + [sym__foreach] = STATE(1373), + [sym__forelse] = STATE(1373), + [sym__while] = STATE(1373), + [sym_livewire] = STATE(1891), + [sym__persist] = STATE(1895), + [sym__teleport] = STATE(1895), + [sym__volt] = STATE(1895), + [aux_sym__directive_body] = STATE(370), + [sym_text] = STATE(1896), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(5985), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5987), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5989), + [anon_sym_ATphp] = ACTIONS(5991), + [aux_sym_attribute_token1] = ACTIONS(5993), + [aux_sym__inline_directive_token1] = ACTIONS(5995), + [anon_sym_ATfragment] = ACTIONS(5997), + [anon_sym_ATsection] = ACTIONS(5999), + [anon_sym_ATonce] = ACTIONS(6001), + [anon_sym_ATverbatim] = ACTIONS(6003), + [anon_sym_ATpush] = ACTIONS(6005), + [anon_sym_ATpushOnce] = ACTIONS(6007), + [anon_sym_ATpushIf] = ACTIONS(6009), + [anon_sym_ATprepend] = ACTIONS(6011), + [anon_sym_ATprependOnce] = ACTIONS(6013), + [anon_sym_ATif] = ACTIONS(6015), + [anon_sym_ATunless] = ACTIONS(6017), + [anon_sym_ATisset] = ACTIONS(6019), + [anon_sym_ATempty] = ACTIONS(6021), + [anon_sym_ATauth] = ACTIONS(6023), + [anon_sym_ATguest] = ACTIONS(6025), + [anon_sym_ATproduction] = ACTIONS(6027), + [anon_sym_ATenv] = ACTIONS(6029), + [anon_sym_AThasSection] = ACTIONS(6031), + [anon_sym_ATsectionMissing] = ACTIONS(6033), + [anon_sym_ATerror] = ACTIONS(6035), + [anon_sym_ATcan] = ACTIONS(6037), + [anon_sym_ATcannot] = ACTIONS(6039), + [anon_sym_ATcanany] = ACTIONS(6041), + [aux_sym__custom_token1] = ACTIONS(6043), + [aux_sym__custom_token2] = ACTIONS(6045), + [anon_sym_ATswitch] = ACTIONS(6047), + [aux_sym_loop_operator_token1] = ACTIONS(6049), + [anon_sym_ATfor] = ACTIONS(6051), + [anon_sym_ATforeach] = ACTIONS(6053), + [anon_sym_ATforelse] = ACTIONS(6055), + [anon_sym_ATwhile] = ACTIONS(6057), + [anon_sym_ATendwhile] = ACTIONS(3359), + [anon_sym_ATpersist] = ACTIONS(6059), + [anon_sym_ATteleport] = ACTIONS(6061), + [anon_sym_ATvolt] = ACTIONS(6063), + [aux_sym_text_token1] = ACTIONS(6065), + [aux_sym_text_token2] = ACTIONS(6065), + [aux_sym_text_token3] = ACTIONS(6067), }, [373] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(373), - [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(217), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6071), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [374] = { - [sym__definition] = STATE(1259), + [sym__definition] = STATE(2417), [sym_comment] = STATE(374), - [sym_keyword] = STATE(1488), - [sym_php_statement] = STATE(1488), - [sym__escaped] = STATE(1489), - [sym__unescaped] = STATE(1489), - [sym__raw] = STATE(1489), - [sym__inline_raw] = STATE(1490), - [sym__multi_line_raw] = STATE(1490), - [sym_attribute] = STATE(1488), - [sym__inline_directive] = STATE(1488), - [sym__nested_directive] = STATE(1488), - [sym_fragment] = STATE(1491), - [sym_section] = STATE(1491), - [sym_once] = STATE(1491), - [sym_verbatim] = STATE(1491), - [sym_stack] = STATE(1491), - [sym__push] = STATE(1492), - [sym__pushOnce] = STATE(1492), - [sym__pushIf] = STATE(1492), - [sym__prepend] = STATE(1492), - [sym__prependOnce] = STATE(1492), - [sym_conditional] = STATE(1491), - [sym__if] = STATE(1493), - [sym__unless] = STATE(1493), - [sym__isset] = STATE(1493), - [sym__empty] = STATE(1493), - [sym__auth] = STATE(1493), - [sym__guest] = STATE(1493), - [sym__production] = STATE(1493), - [sym__env] = STATE(1493), - [sym__hasSection] = STATE(1493), - [sym__sectionMissing] = STATE(1493), - [sym__error] = STATE(1493), - [sym__custom] = STATE(1493), - [sym_switch] = STATE(1491), - [sym_loop] = STATE(1491), - [sym_loop_operator] = STATE(1488), - [sym__for] = STATE(1494), - [sym__foreach] = STATE(1494), - [sym__forelse] = STATE(1494), - [sym__while] = STATE(1494), - [sym_livewire] = STATE(1491), - [sym__persist] = STATE(1495), - [sym__teleport] = STATE(1495), - [sym__volt] = STATE(1495), - [aux_sym__directive_body] = STATE(369), - [sym_text] = STATE(1496), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6073), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [375] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(375), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(388), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6075), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [376] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(376), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6077), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [377] = { - [sym__definition] = STATE(1546), + [sym__definition] = STATE(2462), [sym_comment] = STATE(377), - [sym_keyword] = STATE(1219), - [sym_php_statement] = STATE(1219), - [sym__escaped] = STATE(1218), - [sym__unescaped] = STATE(1218), - [sym__raw] = STATE(1218), - [sym__inline_raw] = STATE(1217), - [sym__multi_line_raw] = STATE(1217), - [sym_attribute] = STATE(1219), - [sym__inline_directive] = STATE(1219), - [sym__nested_directive] = STATE(1219), - [sym_fragment] = STATE(1216), - [sym_section] = STATE(1216), - [sym_once] = STATE(1216), - [sym_verbatim] = STATE(1216), - [sym_stack] = STATE(1216), - [sym__push] = STATE(1215), - [sym__pushOnce] = STATE(1215), - [sym__pushIf] = STATE(1215), - [sym__prepend] = STATE(1215), - [sym__prependOnce] = STATE(1215), - [sym_conditional] = STATE(1216), - [sym__if] = STATE(1214), - [sym__unless] = STATE(1214), - [sym__isset] = STATE(1214), - [sym__empty] = STATE(1214), - [sym__auth] = STATE(1214), - [sym__guest] = STATE(1214), - [sym__production] = STATE(1214), - [sym__env] = STATE(1214), - [sym__hasSection] = STATE(1214), - [sym__sectionMissing] = STATE(1214), - [sym__error] = STATE(1214), - [sym__custom] = STATE(1214), - [sym_switch] = STATE(1216), - [sym_loop] = STATE(1216), - [sym_loop_operator] = STATE(1219), - [sym__for] = STATE(1213), - [sym__foreach] = STATE(1213), - [sym__forelse] = STATE(1213), - [sym__while] = STATE(1213), - [sym_livewire] = STATE(1216), - [sym__persist] = STATE(1212), - [sym__teleport] = STATE(1212), - [sym__volt] = STATE(1212), - [aux_sym__directive_body] = STATE(377), - [sym_text] = STATE(1211), + [sym_keyword] = STATE(1621), + [sym_php_statement] = STATE(1621), + [sym__escaped] = STATE(1620), + [sym__unescaped] = STATE(1620), + [sym__raw] = STATE(1620), + [sym__inline_raw] = STATE(1619), + [sym__multi_line_raw] = STATE(1619), + [sym_attribute] = STATE(1621), + [sym__inline_directive] = STATE(1621), + [sym__nested_directive] = STATE(1621), + [sym_fragment] = STATE(1618), + [sym_section] = STATE(1618), + [sym_once] = STATE(1618), + [sym_verbatim] = STATE(1618), + [sym_stack] = STATE(1618), + [sym__push] = STATE(1617), + [sym__pushOnce] = STATE(1617), + [sym__pushIf] = STATE(1617), + [sym__prepend] = STATE(1617), + [sym__prependOnce] = STATE(1617), + [sym_conditional] = STATE(1618), + [sym__if] = STATE(1616), + [sym__unless] = STATE(1616), + [sym__isset] = STATE(1616), + [sym__empty] = STATE(1616), + [sym__auth] = STATE(1616), + [sym__guest] = STATE(1616), + [sym__production] = STATE(1616), + [sym__env] = STATE(1616), + [sym__hasSection] = STATE(1616), + [sym__sectionMissing] = STATE(1616), + [sym__error] = STATE(1616), + [sym__can] = STATE(1616), + [sym__cannot] = STATE(1616), + [sym__canany] = STATE(1616), + [sym__custom] = STATE(1616), + [sym_switch] = STATE(1618), + [sym_loop] = STATE(1618), + [sym_loop_operator] = STATE(1621), + [sym__for] = STATE(1615), + [sym__foreach] = STATE(1615), + [sym__forelse] = STATE(1615), + [sym__while] = STATE(1615), + [sym_livewire] = STATE(1618), + [sym__persist] = STATE(1614), + [sym__teleport] = STATE(1614), + [sym__volt] = STATE(1614), + [aux_sym__directive_body] = STATE(270), + [sym_text] = STATE(1613), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(5765), + [anon_sym_LBRACE_LBRACE] = ACTIONS(5767), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(5769), + [anon_sym_ATphp] = ACTIONS(5771), + [aux_sym_attribute_token1] = ACTIONS(5773), + [aux_sym__inline_directive_token1] = ACTIONS(5775), + [anon_sym_ATfragment] = ACTIONS(5777), + [anon_sym_ATsection] = ACTIONS(5779), + [anon_sym_ATonce] = ACTIONS(5781), + [anon_sym_ATverbatim] = ACTIONS(5783), + [anon_sym_ATpush] = ACTIONS(5785), + [anon_sym_ATpushOnce] = ACTIONS(5787), + [anon_sym_ATendPushOnce] = ACTIONS(3753), + [anon_sym_ATpushIf] = ACTIONS(5789), + [anon_sym_ATprepend] = ACTIONS(5791), + [anon_sym_ATprependOnce] = ACTIONS(5793), + [anon_sym_ATif] = ACTIONS(5795), + [anon_sym_ATunless] = ACTIONS(5797), + [anon_sym_ATisset] = ACTIONS(5799), + [anon_sym_ATempty] = ACTIONS(5801), + [anon_sym_ATauth] = ACTIONS(5803), + [anon_sym_ATguest] = ACTIONS(5805), + [anon_sym_ATproduction] = ACTIONS(5807), + [anon_sym_ATenv] = ACTIONS(5809), + [anon_sym_AThasSection] = ACTIONS(5811), + [anon_sym_ATsectionMissing] = ACTIONS(5813), + [anon_sym_ATerror] = ACTIONS(5815), + [anon_sym_ATcan] = ACTIONS(5817), + [anon_sym_ATcannot] = ACTIONS(5819), + [anon_sym_ATcanany] = ACTIONS(5821), + [aux_sym__custom_token1] = ACTIONS(5823), + [aux_sym__custom_token2] = ACTIONS(5825), + [anon_sym_ATswitch] = ACTIONS(5827), + [aux_sym_loop_operator_token1] = ACTIONS(5829), + [anon_sym_ATfor] = ACTIONS(5831), + [anon_sym_ATforeach] = ACTIONS(5833), + [anon_sym_ATforelse] = ACTIONS(5835), + [anon_sym_ATwhile] = ACTIONS(5837), + [anon_sym_ATpersist] = ACTIONS(5839), + [anon_sym_ATteleport] = ACTIONS(5841), + [anon_sym_ATvolt] = ACTIONS(5843), + [aux_sym_text_token1] = ACTIONS(5845), + [aux_sym_text_token2] = ACTIONS(5845), + [aux_sym_text_token3] = ACTIONS(5847), }, [378] = { - [sym__definition] = STATE(1317), + [sym__definition] = STATE(2443), [sym_comment] = STATE(378), - [sym_keyword] = STATE(1429), - [sym_php_statement] = STATE(1429), - [sym__escaped] = STATE(1430), - [sym__unescaped] = STATE(1430), - [sym__raw] = STATE(1430), - [sym__inline_raw] = STATE(1431), - [sym__multi_line_raw] = STATE(1431), - [sym_attribute] = STATE(1429), - [sym__inline_directive] = STATE(1429), - [sym__nested_directive] = STATE(1429), - [sym_fragment] = STATE(1432), - [sym_section] = STATE(1432), - [sym_once] = STATE(1432), - [sym_verbatim] = STATE(1432), - [sym_stack] = STATE(1432), - [sym__push] = STATE(1433), - [sym__pushOnce] = STATE(1433), - [sym__pushIf] = STATE(1433), - [sym__prepend] = STATE(1433), - [sym__prependOnce] = STATE(1433), - [sym_conditional] = STATE(1432), - [sym__if] = STATE(1434), - [sym__unless] = STATE(1434), - [sym__isset] = STATE(1434), - [sym__empty] = STATE(1434), - [sym__auth] = STATE(1434), - [sym__guest] = STATE(1434), - [sym__production] = STATE(1434), - [sym__env] = STATE(1434), - [sym__hasSection] = STATE(1434), - [sym__sectionMissing] = STATE(1434), - [sym__error] = STATE(1434), - [sym__custom] = STATE(1434), - [sym_switch] = STATE(1432), - [sym_loop] = STATE(1432), - [sym_loop_operator] = STATE(1429), - [sym__for] = STATE(1435), - [sym__foreach] = STATE(1435), - [sym__forelse] = STATE(1435), - [sym__while] = STATE(1435), - [sym_livewire] = STATE(1432), - [sym__persist] = STATE(1436), - [sym__teleport] = STATE(1436), - [sym__volt] = STATE(1436), - [aux_sym__directive_body] = STATE(357), - [sym_text] = STATE(1437), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(383), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6077), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [379] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1605), [sym_comment] = STATE(379), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1702), + [sym_php_statement] = STATE(1702), + [sym__escaped] = STATE(1703), + [sym__unescaped] = STATE(1703), + [sym__raw] = STATE(1703), + [sym__inline_raw] = STATE(1704), + [sym__multi_line_raw] = STATE(1704), + [sym_attribute] = STATE(1702), + [sym__inline_directive] = STATE(1702), + [sym__nested_directive] = STATE(1702), + [sym_fragment] = STATE(1705), + [sym_section] = STATE(1705), + [sym_once] = STATE(1705), + [sym_verbatim] = STATE(1705), + [sym_stack] = STATE(1705), + [sym__push] = STATE(1706), + [sym__pushOnce] = STATE(1706), + [sym__pushIf] = STATE(1706), + [sym__prepend] = STATE(1706), + [sym__prependOnce] = STATE(1706), + [sym_conditional] = STATE(1705), + [sym__if] = STATE(1707), + [sym__unless] = STATE(1707), + [sym__isset] = STATE(1707), + [sym__empty] = STATE(1707), + [sym__auth] = STATE(1707), + [sym__guest] = STATE(1707), + [sym__production] = STATE(1707), + [sym__env] = STATE(1707), + [sym__hasSection] = STATE(1707), + [sym__sectionMissing] = STATE(1707), + [sym__error] = STATE(1707), + [sym__can] = STATE(1707), + [sym__cannot] = STATE(1707), + [sym__canany] = STATE(1707), + [sym__custom] = STATE(1707), + [sym_switch] = STATE(1705), + [sym_loop] = STATE(1705), + [sym_loop_operator] = STATE(1702), + [sym__for] = STATE(1708), + [sym__foreach] = STATE(1708), + [sym__forelse] = STATE(1708), + [sym__while] = STATE(1708), + [sym_livewire] = STATE(1705), + [sym__persist] = STATE(1709), + [sym__teleport] = STATE(1709), + [sym__volt] = STATE(1709), + [aux_sym__directive_body] = STATE(379), + [sym_text] = STATE(1710), [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(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), + [aux_sym_keyword_token1] = ACTIONS(6079), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6082), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6085), + [anon_sym_ATphp] = ACTIONS(6088), + [aux_sym_attribute_token1] = ACTIONS(6091), + [aux_sym__inline_directive_token1] = ACTIONS(6094), + [anon_sym_ATfragment] = ACTIONS(6097), + [anon_sym_ATsection] = ACTIONS(6100), + [anon_sym_ATonce] = ACTIONS(6103), + [anon_sym_ATverbatim] = ACTIONS(6106), + [anon_sym_ATpush] = ACTIONS(6109), + [anon_sym_ATpushOnce] = ACTIONS(6112), + [anon_sym_ATpushIf] = ACTIONS(6115), + [anon_sym_ATprepend] = ACTIONS(6118), + [anon_sym_ATprependOnce] = ACTIONS(6121), + [anon_sym_ATif] = ACTIONS(6124), + [anon_sym_ATunless] = ACTIONS(6127), + [anon_sym_ATisset] = ACTIONS(6130), + [anon_sym_ATempty] = ACTIONS(6133), + [anon_sym_ATauth] = ACTIONS(6136), + [anon_sym_ATguest] = ACTIONS(6139), + [anon_sym_ATproduction] = ACTIONS(6142), + [anon_sym_ATenv] = ACTIONS(6145), + [anon_sym_AThasSection] = ACTIONS(6148), + [anon_sym_ATsectionMissing] = ACTIONS(6151), + [anon_sym_ATerror] = ACTIONS(6154), + [anon_sym_ATcan] = ACTIONS(6157), + [anon_sym_ATcannot] = ACTIONS(6160), + [anon_sym_ATcanany] = ACTIONS(6163), + [aux_sym__custom_token1] = ACTIONS(6166), + [aux_sym__custom_token2] = ACTIONS(6169), + [anon_sym_ATswitch] = ACTIONS(6172), + [aux_sym_loop_operator_token1] = ACTIONS(6175), + [anon_sym_ATfor] = ACTIONS(6178), + [anon_sym_ATendfor] = ACTIONS(3555), + [anon_sym_ATforeach] = ACTIONS(6181), + [anon_sym_ATforelse] = ACTIONS(6184), + [anon_sym_ATwhile] = ACTIONS(6187), + [anon_sym_ATpersist] = ACTIONS(6190), + [anon_sym_ATteleport] = ACTIONS(6193), + [anon_sym_ATvolt] = ACTIONS(6196), + [aux_sym_text_token1] = ACTIONS(6199), + [aux_sym_text_token2] = ACTIONS(6199), + [aux_sym_text_token3] = ACTIONS(6202), }, [380] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2452), [sym_comment] = STATE(380), - [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(389), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2341), + [sym_php_statement] = STATE(2341), + [sym__escaped] = STATE(2329), + [sym__unescaped] = STATE(2329), + [sym__raw] = STATE(2329), + [sym__inline_raw] = STATE(2252), + [sym__multi_line_raw] = STATE(2252), + [sym_attribute] = STATE(2341), + [sym__inline_directive] = STATE(2341), + [sym__nested_directive] = STATE(2341), + [sym_fragment] = STATE(2321), + [sym_section] = STATE(2321), + [sym_once] = STATE(2321), + [sym_verbatim] = STATE(2321), + [sym_stack] = STATE(2321), + [sym__push] = STATE(2320), + [sym__pushOnce] = STATE(2320), + [sym__pushIf] = STATE(2320), + [sym__prepend] = STATE(2320), + [sym__prependOnce] = STATE(2320), + [sym_conditional] = STATE(2321), + [sym__if] = STATE(2314), + [sym__unless] = STATE(2314), + [sym__isset] = STATE(2314), + [sym__empty] = STATE(2314), + [sym__auth] = STATE(2314), + [sym__guest] = STATE(2314), + [sym__production] = STATE(2314), + [sym__env] = STATE(2314), + [sym__hasSection] = STATE(2314), + [sym__sectionMissing] = STATE(2314), + [sym__error] = STATE(2314), + [sym__can] = STATE(2314), + [sym__cannot] = STATE(2314), + [sym__canany] = STATE(2314), + [sym__custom] = STATE(2314), + [sym_switch] = STATE(2321), + [sym_loop] = STATE(2321), + [sym_loop_operator] = STATE(2341), + [sym__for] = STATE(2312), + [sym__foreach] = STATE(2312), + [sym__forelse] = STATE(2312), + [sym__while] = STATE(2312), + [sym_livewire] = STATE(2321), + [sym__persist] = STATE(2311), + [sym__teleport] = STATE(2311), + [sym__volt] = STATE(2311), + [aux_sym__directive_body] = STATE(380), + [sym_text] = STATE(2308), [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(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), + [aux_sym_keyword_token1] = ACTIONS(6205), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6208), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6211), + [anon_sym_ATphp] = ACTIONS(6214), + [aux_sym_attribute_token1] = ACTIONS(6217), + [aux_sym__inline_directive_token1] = ACTIONS(6220), + [anon_sym_ATfragment] = ACTIONS(6223), + [anon_sym_ATsection] = ACTIONS(6226), + [anon_sym_ATendsection] = ACTIONS(3555), + [anon_sym_ATonce] = ACTIONS(6229), + [anon_sym_ATverbatim] = ACTIONS(6232), + [anon_sym_ATpush] = ACTIONS(6235), + [anon_sym_ATpushOnce] = ACTIONS(6238), + [anon_sym_ATpushIf] = ACTIONS(6241), + [anon_sym_ATprepend] = ACTIONS(6244), + [anon_sym_ATprependOnce] = ACTIONS(6247), + [anon_sym_ATif] = ACTIONS(6250), + [anon_sym_ATunless] = ACTIONS(6253), + [anon_sym_ATisset] = ACTIONS(6256), + [anon_sym_ATempty] = ACTIONS(6259), + [anon_sym_ATauth] = ACTIONS(6262), + [anon_sym_ATguest] = ACTIONS(6265), + [anon_sym_ATproduction] = ACTIONS(6268), + [anon_sym_ATenv] = ACTIONS(6271), + [anon_sym_AThasSection] = ACTIONS(6274), + [anon_sym_ATsectionMissing] = ACTIONS(6277), + [anon_sym_ATerror] = ACTIONS(6280), + [anon_sym_ATcan] = ACTIONS(6283), + [anon_sym_ATcannot] = ACTIONS(6286), + [anon_sym_ATcanany] = ACTIONS(6289), + [aux_sym__custom_token1] = ACTIONS(6292), + [aux_sym__custom_token2] = ACTIONS(6295), + [anon_sym_ATswitch] = ACTIONS(6298), + [aux_sym_loop_operator_token1] = ACTIONS(6301), + [anon_sym_ATfor] = ACTIONS(6304), + [anon_sym_ATforeach] = ACTIONS(6307), + [anon_sym_ATforelse] = ACTIONS(6310), + [anon_sym_ATwhile] = ACTIONS(6313), + [anon_sym_ATpersist] = ACTIONS(6316), + [anon_sym_ATteleport] = ACTIONS(6319), + [anon_sym_ATvolt] = ACTIONS(6322), + [aux_sym_text_token1] = ACTIONS(6325), + [aux_sym_text_token2] = ACTIONS(6325), + [aux_sym_text_token3] = ACTIONS(6328), }, [381] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(1483), [sym_comment] = STATE(381), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1826), + [sym_php_statement] = STATE(1826), + [sym__escaped] = STATE(1827), + [sym__unescaped] = STATE(1827), + [sym__raw] = STATE(1827), + [sym__inline_raw] = STATE(1828), + [sym__multi_line_raw] = STATE(1828), + [sym_attribute] = STATE(1826), + [sym__inline_directive] = STATE(1826), + [sym__nested_directive] = STATE(1826), + [sym_fragment] = STATE(1829), + [sym_section] = STATE(1829), + [sym_once] = STATE(1829), + [sym_verbatim] = STATE(1829), + [sym_stack] = STATE(1829), + [sym__push] = STATE(1830), + [sym__pushOnce] = STATE(1830), + [sym__pushIf] = STATE(1830), + [sym__prepend] = STATE(1830), + [sym__prependOnce] = STATE(1830), + [sym_conditional] = STATE(1829), + [sym__if] = STATE(1831), + [sym__unless] = STATE(1831), + [sym__isset] = STATE(1831), + [sym__empty] = STATE(1831), + [sym__auth] = STATE(1831), + [sym__guest] = STATE(1831), + [sym__production] = STATE(1831), + [sym__env] = STATE(1831), + [sym__hasSection] = STATE(1831), + [sym__sectionMissing] = STATE(1831), + [sym__error] = STATE(1831), + [sym__can] = STATE(1831), + [sym__cannot] = STATE(1831), + [sym__canany] = STATE(1831), + [sym__custom] = STATE(1831), + [sym_switch] = STATE(1829), + [sym_loop] = STATE(1829), + [sym_loop_operator] = STATE(1826), + [sym__for] = STATE(1832), + [sym__foreach] = STATE(1832), + [sym__forelse] = STATE(1832), + [sym__while] = STATE(1832), + [sym_livewire] = STATE(1829), + [sym__persist] = STATE(1833), + [sym__teleport] = STATE(1833), + [sym__volt] = STATE(1833), + [aux_sym__directive_body] = STATE(358), + [sym_text] = STATE(1834), [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(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), + [aux_sym_keyword_token1] = ACTIONS(6331), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6333), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6335), + [anon_sym_ATphp] = ACTIONS(6337), + [aux_sym_attribute_token1] = ACTIONS(6339), + [aux_sym__inline_directive_token1] = ACTIONS(6341), + [anon_sym_ATfragment] = ACTIONS(6343), + [anon_sym_ATsection] = ACTIONS(6345), + [anon_sym_ATonce] = ACTIONS(6347), + [anon_sym_ATverbatim] = ACTIONS(6349), + [anon_sym_ATpush] = ACTIONS(6351), + [anon_sym_ATpushOnce] = ACTIONS(6353), + [anon_sym_ATpushIf] = ACTIONS(6355), + [anon_sym_ATprepend] = ACTIONS(6357), + [anon_sym_ATprependOnce] = ACTIONS(6359), + [anon_sym_ATif] = ACTIONS(6361), + [anon_sym_ATunless] = ACTIONS(6363), + [anon_sym_ATisset] = ACTIONS(6365), + [anon_sym_ATempty] = ACTIONS(6367), + [anon_sym_ATauth] = ACTIONS(6369), + [anon_sym_ATguest] = ACTIONS(6371), + [anon_sym_ATproduction] = ACTIONS(6373), + [anon_sym_ATenv] = ACTIONS(6375), + [anon_sym_AThasSection] = ACTIONS(6377), + [anon_sym_ATsectionMissing] = ACTIONS(6379), + [anon_sym_ATerror] = ACTIONS(6381), + [anon_sym_ATcan] = ACTIONS(6383), + [anon_sym_ATcannot] = ACTIONS(6385), + [anon_sym_ATcanany] = ACTIONS(6387), + [aux_sym__custom_token1] = ACTIONS(6389), + [aux_sym__custom_token2] = ACTIONS(6391), + [anon_sym_ATswitch] = ACTIONS(6393), + [aux_sym_loop_operator_token1] = ACTIONS(6395), + [anon_sym_ATfor] = ACTIONS(6397), + [anon_sym_ATforeach] = ACTIONS(6399), + [anon_sym_ATforelse] = ACTIONS(6401), + [anon_sym_ATendforelse] = ACTIONS(3753), + [anon_sym_ATwhile] = ACTIONS(6403), + [anon_sym_ATpersist] = ACTIONS(6405), + [anon_sym_ATteleport] = ACTIONS(6407), + [anon_sym_ATvolt] = ACTIONS(6409), + [aux_sym_text_token1] = ACTIONS(6411), + [aux_sym_text_token2] = ACTIONS(6411), + [aux_sym_text_token3] = ACTIONS(6413), }, [382] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(382), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(329), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(371), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6415), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [383] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(383), - [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(410), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6417), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [384] = { - [sym__definition] = STATE(1317), + [sym__definition] = STATE(1483), [sym_comment] = STATE(384), - [sym_keyword] = STATE(1429), - [sym_php_statement] = STATE(1429), - [sym__escaped] = STATE(1430), - [sym__unescaped] = STATE(1430), - [sym__raw] = STATE(1430), - [sym__inline_raw] = STATE(1431), - [sym__multi_line_raw] = STATE(1431), - [sym_attribute] = STATE(1429), - [sym__inline_directive] = STATE(1429), - [sym__nested_directive] = STATE(1429), - [sym_fragment] = STATE(1432), - [sym_section] = STATE(1432), - [sym_once] = STATE(1432), - [sym_verbatim] = STATE(1432), - [sym_stack] = STATE(1432), - [sym__push] = STATE(1433), - [sym__pushOnce] = STATE(1433), - [sym__pushIf] = STATE(1433), - [sym__prepend] = STATE(1433), - [sym__prependOnce] = STATE(1433), - [sym_conditional] = STATE(1432), + [sym_keyword] = STATE(1826), + [sym_php_statement] = STATE(1826), + [sym__escaped] = STATE(1827), + [sym__unescaped] = STATE(1827), + [sym__raw] = STATE(1827), + [sym__inline_raw] = STATE(1828), + [sym__multi_line_raw] = STATE(1828), + [sym_attribute] = STATE(1826), + [sym__inline_directive] = STATE(1826), + [sym__nested_directive] = STATE(1826), + [sym_fragment] = STATE(1829), + [sym_section] = STATE(1829), + [sym_once] = STATE(1829), + [sym_verbatim] = STATE(1829), + [sym_stack] = STATE(1829), + [sym__push] = STATE(1830), + [sym__pushOnce] = STATE(1830), + [sym__pushIf] = STATE(1830), + [sym__prepend] = STATE(1830), + [sym__prependOnce] = STATE(1830), + [sym_conditional] = STATE(1829), + [sym__if] = STATE(1831), + [sym__unless] = STATE(1831), + [sym__isset] = STATE(1831), + [sym__empty] = STATE(1831), + [sym__auth] = STATE(1831), + [sym__guest] = STATE(1831), + [sym__production] = STATE(1831), + [sym__env] = STATE(1831), + [sym__hasSection] = STATE(1831), + [sym__sectionMissing] = STATE(1831), + [sym__error] = STATE(1831), + [sym__can] = STATE(1831), + [sym__cannot] = STATE(1831), + [sym__canany] = STATE(1831), + [sym__custom] = STATE(1831), + [sym_switch] = STATE(1829), + [sym_loop] = STATE(1829), + [sym_loop_operator] = STATE(1826), + [sym__for] = STATE(1832), + [sym__foreach] = STATE(1832), + [sym__forelse] = STATE(1832), + [sym__while] = STATE(1832), + [sym_livewire] = STATE(1829), + [sym__persist] = STATE(1833), + [sym__teleport] = STATE(1833), + [sym__volt] = STATE(1833), + [aux_sym__directive_body] = STATE(381), + [sym_text] = STATE(1834), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(6331), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6333), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6335), + [anon_sym_ATphp] = ACTIONS(6337), + [aux_sym_attribute_token1] = ACTIONS(6339), + [aux_sym__inline_directive_token1] = ACTIONS(6341), + [anon_sym_ATfragment] = ACTIONS(6343), + [anon_sym_ATsection] = ACTIONS(6345), + [anon_sym_ATonce] = ACTIONS(6347), + [anon_sym_ATverbatim] = ACTIONS(6349), + [anon_sym_ATpush] = ACTIONS(6351), + [anon_sym_ATpushOnce] = ACTIONS(6353), + [anon_sym_ATpushIf] = ACTIONS(6355), + [anon_sym_ATprepend] = ACTIONS(6357), + [anon_sym_ATprependOnce] = ACTIONS(6359), + [anon_sym_ATif] = ACTIONS(6361), + [anon_sym_ATunless] = ACTIONS(6363), + [anon_sym_ATisset] = ACTIONS(6365), + [anon_sym_ATempty] = ACTIONS(6367), + [anon_sym_ATauth] = ACTIONS(6369), + [anon_sym_ATguest] = ACTIONS(6371), + [anon_sym_ATproduction] = ACTIONS(6373), + [anon_sym_ATenv] = ACTIONS(6375), + [anon_sym_AThasSection] = ACTIONS(6377), + [anon_sym_ATsectionMissing] = ACTIONS(6379), + [anon_sym_ATerror] = ACTIONS(6381), + [anon_sym_ATcan] = ACTIONS(6383), + [anon_sym_ATcannot] = ACTIONS(6385), + [anon_sym_ATcanany] = ACTIONS(6387), + [aux_sym__custom_token1] = ACTIONS(6389), + [aux_sym__custom_token2] = ACTIONS(6391), + [anon_sym_ATswitch] = ACTIONS(6393), + [aux_sym_loop_operator_token1] = ACTIONS(6395), + [anon_sym_ATfor] = ACTIONS(6397), + [anon_sym_ATforeach] = ACTIONS(6399), + [anon_sym_ATforelse] = ACTIONS(6401), + [anon_sym_ATendforelse] = ACTIONS(3359), + [anon_sym_ATwhile] = ACTIONS(6403), + [anon_sym_ATpersist] = ACTIONS(6405), + [anon_sym_ATteleport] = ACTIONS(6407), + [anon_sym_ATvolt] = ACTIONS(6409), + [aux_sym_text_token1] = ACTIONS(6411), + [aux_sym_text_token2] = ACTIONS(6411), + [aux_sym_text_token3] = ACTIONS(6413), + }, + [385] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(385), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(373), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6419), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [386] = { + [sym__definition] = STATE(1665), + [sym_comment] = STATE(386), + [sym_keyword] = STATE(1439), + [sym_php_statement] = STATE(1439), + [sym__escaped] = STATE(1438), + [sym__unescaped] = STATE(1438), + [sym__raw] = STATE(1438), + [sym__inline_raw] = STATE(1437), + [sym__multi_line_raw] = STATE(1437), + [sym_attribute] = STATE(1439), + [sym__inline_directive] = STATE(1439), + [sym__nested_directive] = STATE(1439), + [sym_fragment] = STATE(1436), + [sym_section] = STATE(1436), + [sym_once] = STATE(1436), + [sym_verbatim] = STATE(1436), + [sym_stack] = STATE(1436), + [sym__push] = STATE(1435), + [sym__pushOnce] = STATE(1435), + [sym__pushIf] = STATE(1435), + [sym__prepend] = STATE(1435), + [sym__prependOnce] = STATE(1435), + [sym_conditional] = STATE(1436), [sym__if] = STATE(1434), [sym__unless] = STATE(1434), [sym__isset] = STATE(1434), @@ -52645,3517 +57166,3650 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__hasSection] = STATE(1434), [sym__sectionMissing] = STATE(1434), [sym__error] = STATE(1434), + [sym__can] = STATE(1434), + [sym__cannot] = STATE(1434), + [sym__canany] = STATE(1434), [sym__custom] = STATE(1434), - [sym_switch] = STATE(1432), - [sym_loop] = STATE(1432), - [sym_loop_operator] = STATE(1429), - [sym__for] = STATE(1435), - [sym__foreach] = STATE(1435), - [sym__forelse] = STATE(1435), - [sym__while] = STATE(1435), - [sym_livewire] = STATE(1432), - [sym__persist] = STATE(1436), - [sym__teleport] = STATE(1436), - [sym__volt] = STATE(1436), - [aux_sym__directive_body] = STATE(378), - [sym_text] = STATE(1437), - [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), - [sym_comment] = STATE(385), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_switch] = STATE(1436), + [sym_loop] = STATE(1436), + [sym_loop_operator] = STATE(1439), + [sym__for] = STATE(1433), + [sym__foreach] = STATE(1433), + [sym__forelse] = STATE(1433), + [sym__while] = STATE(1433), + [sym_livewire] = STATE(1436), + [sym__persist] = STATE(1432), + [sym__teleport] = STATE(1432), + [sym__volt] = STATE(1432), + [aux_sym__directive_body] = STATE(471), + [sym_text] = STATE(1431), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), - [sym_comment] = STATE(386), - [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(381), - [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(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), + [aux_sym_keyword_token1] = ACTIONS(6421), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6423), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6425), + [anon_sym_ATphp] = ACTIONS(6427), + [aux_sym_attribute_token1] = ACTIONS(6429), + [aux_sym__inline_directive_token1] = ACTIONS(6431), + [anon_sym_ATfragment] = ACTIONS(6433), + [anon_sym_ATsection] = ACTIONS(6435), + [anon_sym_ATonce] = ACTIONS(6437), + [anon_sym_ATverbatim] = ACTIONS(6439), + [anon_sym_ATpush] = ACTIONS(6441), + [anon_sym_ATpushOnce] = ACTIONS(6443), + [anon_sym_ATpushIf] = ACTIONS(6445), + [anon_sym_ATprepend] = ACTIONS(6447), + [anon_sym_ATprependOnce] = ACTIONS(6449), + [anon_sym_ATendPrependOnce] = ACTIONS(3359), + [anon_sym_ATif] = ACTIONS(6451), + [anon_sym_ATunless] = ACTIONS(6453), + [anon_sym_ATisset] = ACTIONS(6455), + [anon_sym_ATempty] = ACTIONS(6457), + [anon_sym_ATauth] = ACTIONS(6459), + [anon_sym_ATguest] = ACTIONS(6461), + [anon_sym_ATproduction] = ACTIONS(6463), + [anon_sym_ATenv] = ACTIONS(6465), + [anon_sym_AThasSection] = ACTIONS(6467), + [anon_sym_ATsectionMissing] = ACTIONS(6469), + [anon_sym_ATerror] = ACTIONS(6471), + [anon_sym_ATcan] = ACTIONS(6473), + [anon_sym_ATcannot] = ACTIONS(6475), + [anon_sym_ATcanany] = ACTIONS(6477), + [aux_sym__custom_token1] = ACTIONS(6479), + [aux_sym__custom_token2] = ACTIONS(6481), + [anon_sym_ATswitch] = ACTIONS(6483), + [aux_sym_loop_operator_token1] = ACTIONS(6485), + [anon_sym_ATfor] = ACTIONS(6487), + [anon_sym_ATforeach] = ACTIONS(6489), + [anon_sym_ATforelse] = ACTIONS(6491), + [anon_sym_ATwhile] = ACTIONS(6493), + [anon_sym_ATpersist] = ACTIONS(6495), + [anon_sym_ATteleport] = ACTIONS(6497), + [anon_sym_ATvolt] = ACTIONS(6499), + [aux_sym_text_token1] = ACTIONS(6501), + [aux_sym_text_token2] = ACTIONS(6501), + [aux_sym_text_token3] = ACTIONS(6503), }, [387] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2269), [sym_comment] = STATE(387), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(385), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1499), + [sym_php_statement] = STATE(1499), + [sym__escaped] = STATE(1498), + [sym__unescaped] = STATE(1498), + [sym__raw] = STATE(1498), + [sym__inline_raw] = STATE(1497), + [sym__multi_line_raw] = STATE(1497), + [sym_attribute] = STATE(1499), + [sym__inline_directive] = STATE(1499), + [sym__nested_directive] = STATE(1499), + [sym_fragment] = STATE(1496), + [sym_section] = STATE(1496), + [sym_once] = STATE(1496), + [sym_verbatim] = STATE(1496), + [sym_stack] = STATE(1496), + [sym__push] = STATE(1495), + [sym__pushOnce] = STATE(1495), + [sym__pushIf] = STATE(1495), + [sym__prepend] = STATE(1495), + [sym__prependOnce] = STATE(1495), + [sym_conditional] = STATE(1496), + [sym__if] = STATE(1494), + [sym__unless] = STATE(1494), + [sym__isset] = STATE(1494), + [sym__empty] = STATE(1494), + [sym__auth] = STATE(1494), + [sym__guest] = STATE(1494), + [sym__production] = STATE(1494), + [sym__env] = STATE(1494), + [sym__hasSection] = STATE(1494), + [sym__sectionMissing] = STATE(1494), + [sym__error] = STATE(1494), + [sym__can] = STATE(1494), + [sym__cannot] = STATE(1494), + [sym__canany] = STATE(1494), + [sym__custom] = STATE(1494), + [sym_switch] = STATE(1496), + [sym_loop] = STATE(1496), + [sym_loop_operator] = STATE(1499), + [sym__for] = STATE(1493), + [sym__foreach] = STATE(1493), + [sym__forelse] = STATE(1493), + [sym__while] = STATE(1493), + [sym_livewire] = STATE(1496), + [sym__persist] = STATE(1492), + [sym__teleport] = STATE(1492), + [sym__volt] = STATE(1492), + [aux_sym__directive_body] = STATE(398), + [sym_text] = STATE(1491), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(4451), + [anon_sym_LBRACE_LBRACE] = ACTIONS(4453), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(4455), + [anon_sym_ATphp] = ACTIONS(4457), + [aux_sym_attribute_token1] = ACTIONS(4459), + [aux_sym__inline_directive_token1] = ACTIONS(4461), + [anon_sym_ATfragment] = ACTIONS(4463), + [anon_sym_ATsection] = ACTIONS(4465), + [anon_sym_ATonce] = ACTIONS(4467), + [anon_sym_ATverbatim] = ACTIONS(4469), + [anon_sym_ATpush] = ACTIONS(4471), + [anon_sym_ATpushOnce] = ACTIONS(4473), + [anon_sym_ATpushIf] = ACTIONS(4475), + [anon_sym_ATprepend] = ACTIONS(4477), + [anon_sym_ATendprepend] = ACTIONS(3753), + [anon_sym_ATprependOnce] = ACTIONS(4479), + [anon_sym_ATif] = ACTIONS(4481), + [anon_sym_ATunless] = ACTIONS(4483), + [anon_sym_ATisset] = ACTIONS(4485), + [anon_sym_ATempty] = ACTIONS(4487), + [anon_sym_ATauth] = ACTIONS(4489), + [anon_sym_ATguest] = ACTIONS(4491), + [anon_sym_ATproduction] = ACTIONS(4493), + [anon_sym_ATenv] = ACTIONS(4495), + [anon_sym_AThasSection] = ACTIONS(4497), + [anon_sym_ATsectionMissing] = ACTIONS(4499), + [anon_sym_ATerror] = ACTIONS(4501), + [anon_sym_ATcan] = ACTIONS(4503), + [anon_sym_ATcannot] = ACTIONS(4505), + [anon_sym_ATcanany] = ACTIONS(4507), + [aux_sym__custom_token1] = ACTIONS(4509), + [aux_sym__custom_token2] = ACTIONS(4511), + [anon_sym_ATswitch] = ACTIONS(4513), + [aux_sym_loop_operator_token1] = ACTIONS(4515), + [anon_sym_ATfor] = ACTIONS(4517), + [anon_sym_ATforeach] = ACTIONS(4519), + [anon_sym_ATforelse] = ACTIONS(4521), + [anon_sym_ATwhile] = ACTIONS(4523), + [anon_sym_ATpersist] = ACTIONS(4525), + [anon_sym_ATteleport] = ACTIONS(4527), + [anon_sym_ATvolt] = ACTIONS(4529), + [aux_sym_text_token1] = ACTIONS(4531), + [aux_sym_text_token2] = ACTIONS(4531), + [aux_sym_text_token3] = ACTIONS(4533), }, [388] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(388), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(393), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6505), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [389] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(389), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(394), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6507), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [390] = { - [sym__definition] = STATE(2071), + [sym__definition] = STATE(1665), [sym_comment] = STATE(390), - [sym_keyword] = STATE(1391), - [sym_php_statement] = STATE(1391), - [sym__escaped] = STATE(1389), - [sym__unescaped] = STATE(1389), - [sym__raw] = STATE(1389), - [sym__inline_raw] = STATE(1388), - [sym__multi_line_raw] = STATE(1388), - [sym_attribute] = STATE(1391), - [sym__inline_directive] = STATE(1391), - [sym__nested_directive] = STATE(1391), - [sym_fragment] = STATE(1387), - [sym_section] = STATE(1387), - [sym_once] = STATE(1387), - [sym_verbatim] = STATE(1387), - [sym_stack] = STATE(1387), - [sym__push] = STATE(1386), - [sym__pushOnce] = STATE(1386), - [sym__pushIf] = STATE(1386), - [sym__prepend] = STATE(1386), - [sym__prependOnce] = STATE(1386), - [sym_conditional] = STATE(1387), - [sym__if] = STATE(1385), - [sym__unless] = STATE(1385), - [sym__isset] = STATE(1385), - [sym__empty] = STATE(1385), - [sym__auth] = STATE(1385), - [sym__guest] = STATE(1385), - [sym__production] = STATE(1385), - [sym__env] = STATE(1385), - [sym__hasSection] = STATE(1385), - [sym__sectionMissing] = STATE(1385), - [sym__error] = STATE(1385), - [sym__custom] = STATE(1385), - [sym_switch] = STATE(1387), - [sym_loop] = STATE(1387), - [sym_loop_operator] = STATE(1391), - [sym__for] = STATE(1384), - [sym__foreach] = STATE(1384), - [sym__forelse] = STATE(1384), - [sym__while] = STATE(1384), - [sym_livewire] = STATE(1387), - [sym__persist] = STATE(1383), - [sym__teleport] = STATE(1383), - [sym__volt] = STATE(1383), + [sym_keyword] = STATE(1439), + [sym_php_statement] = STATE(1439), + [sym__escaped] = STATE(1438), + [sym__unescaped] = STATE(1438), + [sym__raw] = STATE(1438), + [sym__inline_raw] = STATE(1437), + [sym__multi_line_raw] = STATE(1437), + [sym_attribute] = STATE(1439), + [sym__inline_directive] = STATE(1439), + [sym__nested_directive] = STATE(1439), + [sym_fragment] = STATE(1436), + [sym_section] = STATE(1436), + [sym_once] = STATE(1436), + [sym_verbatim] = STATE(1436), + [sym_stack] = STATE(1436), + [sym__push] = STATE(1435), + [sym__pushOnce] = STATE(1435), + [sym__pushIf] = STATE(1435), + [sym__prepend] = STATE(1435), + [sym__prependOnce] = STATE(1435), + [sym_conditional] = STATE(1436), + [sym__if] = STATE(1434), + [sym__unless] = STATE(1434), + [sym__isset] = STATE(1434), + [sym__empty] = STATE(1434), + [sym__auth] = STATE(1434), + [sym__guest] = STATE(1434), + [sym__production] = STATE(1434), + [sym__env] = STATE(1434), + [sym__hasSection] = STATE(1434), + [sym__sectionMissing] = STATE(1434), + [sym__error] = STATE(1434), + [sym__can] = STATE(1434), + [sym__cannot] = STATE(1434), + [sym__canany] = STATE(1434), + [sym__custom] = STATE(1434), + [sym_switch] = STATE(1436), + [sym_loop] = STATE(1436), + [sym_loop_operator] = STATE(1439), + [sym__for] = STATE(1433), + [sym__foreach] = STATE(1433), + [sym__forelse] = STATE(1433), + [sym__while] = STATE(1433), + [sym_livewire] = STATE(1436), + [sym__persist] = STATE(1432), + [sym__teleport] = STATE(1432), + [sym__volt] = STATE(1432), [aux_sym__directive_body] = STATE(390), - [sym_text] = STATE(1382), + [sym_text] = STATE(1431), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(6509), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6512), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6515), + [anon_sym_ATphp] = ACTIONS(6518), + [aux_sym_attribute_token1] = ACTIONS(6521), + [aux_sym__inline_directive_token1] = ACTIONS(6524), + [anon_sym_ATfragment] = ACTIONS(6527), + [anon_sym_ATsection] = ACTIONS(6530), + [anon_sym_ATonce] = ACTIONS(6533), + [anon_sym_ATverbatim] = ACTIONS(6536), + [anon_sym_ATpush] = ACTIONS(6539), + [anon_sym_ATpushOnce] = ACTIONS(6542), + [anon_sym_ATpushIf] = ACTIONS(6545), + [anon_sym_ATprepend] = ACTIONS(6548), + [anon_sym_ATprependOnce] = ACTIONS(6551), + [anon_sym_ATendPrependOnce] = ACTIONS(3555), + [anon_sym_ATif] = ACTIONS(6554), + [anon_sym_ATunless] = ACTIONS(6557), + [anon_sym_ATisset] = ACTIONS(6560), + [anon_sym_ATempty] = ACTIONS(6563), + [anon_sym_ATauth] = ACTIONS(6566), + [anon_sym_ATguest] = ACTIONS(6569), + [anon_sym_ATproduction] = ACTIONS(6572), + [anon_sym_ATenv] = ACTIONS(6575), + [anon_sym_AThasSection] = ACTIONS(6578), + [anon_sym_ATsectionMissing] = ACTIONS(6581), + [anon_sym_ATerror] = ACTIONS(6584), + [anon_sym_ATcan] = ACTIONS(6587), + [anon_sym_ATcannot] = ACTIONS(6590), + [anon_sym_ATcanany] = ACTIONS(6593), + [aux_sym__custom_token1] = ACTIONS(6596), + [aux_sym__custom_token2] = ACTIONS(6599), + [anon_sym_ATswitch] = ACTIONS(6602), + [aux_sym_loop_operator_token1] = ACTIONS(6605), + [anon_sym_ATfor] = ACTIONS(6608), + [anon_sym_ATforeach] = ACTIONS(6611), + [anon_sym_ATforelse] = ACTIONS(6614), + [anon_sym_ATwhile] = ACTIONS(6617), + [anon_sym_ATpersist] = ACTIONS(6620), + [anon_sym_ATteleport] = ACTIONS(6623), + [anon_sym_ATvolt] = ACTIONS(6626), + [aux_sym_text_token1] = ACTIONS(6629), + [aux_sym_text_token2] = ACTIONS(6629), + [aux_sym_text_token3] = ACTIONS(6632), }, [391] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(1544), [sym_comment] = STATE(391), - [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), + [sym_keyword] = STATE(1764), + [sym_php_statement] = STATE(1764), + [sym__escaped] = STATE(1765), + [sym__unescaped] = STATE(1765), + [sym__raw] = STATE(1765), + [sym__inline_raw] = STATE(1766), + [sym__multi_line_raw] = STATE(1766), + [sym_attribute] = STATE(1764), + [sym__inline_directive] = STATE(1764), + [sym__nested_directive] = STATE(1764), + [sym_fragment] = STATE(1767), + [sym_section] = STATE(1767), + [sym_once] = STATE(1767), + [sym_verbatim] = STATE(1767), + [sym_stack] = STATE(1767), + [sym__push] = STATE(1768), + [sym__pushOnce] = STATE(1768), + [sym__pushIf] = STATE(1768), + [sym__prepend] = STATE(1768), + [sym__prependOnce] = STATE(1768), + [sym_conditional] = STATE(1767), + [sym__if] = STATE(1769), + [sym__unless] = STATE(1769), + [sym__isset] = STATE(1769), + [sym__empty] = STATE(1769), + [sym__auth] = STATE(1769), + [sym__guest] = STATE(1769), + [sym__production] = STATE(1769), + [sym__env] = STATE(1769), + [sym__hasSection] = STATE(1769), + [sym__sectionMissing] = STATE(1769), + [sym__error] = STATE(1769), + [sym__can] = STATE(1769), + [sym__cannot] = STATE(1769), + [sym__canany] = STATE(1769), + [sym__custom] = STATE(1769), + [sym_switch] = STATE(1767), + [sym_loop] = STATE(1767), + [sym_loop_operator] = STATE(1764), + [sym__for] = STATE(1770), + [sym__foreach] = STATE(1770), + [sym__forelse] = STATE(1770), + [sym__while] = STATE(1770), + [sym_livewire] = STATE(1767), + [sym__persist] = STATE(1771), + [sym__teleport] = STATE(1771), + [sym__volt] = STATE(1771), + [aux_sym__directive_body] = STATE(368), + [sym_text] = STATE(1772), [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(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), + [aux_sym_keyword_token1] = ACTIONS(6635), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6637), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6639), + [anon_sym_ATphp] = ACTIONS(6641), + [aux_sym_attribute_token1] = ACTIONS(6643), + [aux_sym__inline_directive_token1] = ACTIONS(6645), + [anon_sym_ATfragment] = ACTIONS(6647), + [anon_sym_ATsection] = ACTIONS(6649), + [anon_sym_ATonce] = ACTIONS(6651), + [anon_sym_ATverbatim] = ACTIONS(6653), + [anon_sym_ATpush] = ACTIONS(6655), + [anon_sym_ATpushOnce] = ACTIONS(6657), + [anon_sym_ATpushIf] = ACTIONS(6659), + [anon_sym_ATprepend] = ACTIONS(6661), + [anon_sym_ATprependOnce] = ACTIONS(6663), + [anon_sym_ATif] = ACTIONS(6665), + [anon_sym_ATunless] = ACTIONS(6667), + [anon_sym_ATisset] = ACTIONS(6669), + [anon_sym_ATempty] = ACTIONS(6671), + [anon_sym_ATauth] = ACTIONS(6673), + [anon_sym_ATguest] = ACTIONS(6675), + [anon_sym_ATproduction] = ACTIONS(6677), + [anon_sym_ATenv] = ACTIONS(6679), + [anon_sym_AThasSection] = ACTIONS(6681), + [anon_sym_ATsectionMissing] = ACTIONS(6683), + [anon_sym_ATerror] = ACTIONS(6685), + [anon_sym_ATcan] = ACTIONS(6687), + [anon_sym_ATcannot] = ACTIONS(6689), + [anon_sym_ATcanany] = ACTIONS(6691), + [aux_sym__custom_token1] = ACTIONS(6693), + [aux_sym__custom_token2] = ACTIONS(6695), + [anon_sym_ATswitch] = ACTIONS(6697), + [aux_sym_loop_operator_token1] = ACTIONS(6699), + [anon_sym_ATfor] = ACTIONS(6701), + [anon_sym_ATforeach] = ACTIONS(6703), + [anon_sym_ATendforeach] = ACTIONS(3753), + [anon_sym_ATforelse] = ACTIONS(6705), + [anon_sym_ATwhile] = ACTIONS(6707), + [anon_sym_ATpersist] = ACTIONS(6709), + [anon_sym_ATteleport] = ACTIONS(6711), + [anon_sym_ATvolt] = ACTIONS(6713), + [aux_sym_text_token1] = ACTIONS(6715), + [aux_sym_text_token2] = ACTIONS(6715), + [aux_sym_text_token3] = ACTIONS(6717), }, [392] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(392), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6719), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [393] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(393), - [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(392), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6721), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [394] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(394), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(403), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6723), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [395] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(1544), [sym_comment] = STATE(395), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1764), + [sym_php_statement] = STATE(1764), + [sym__escaped] = STATE(1765), + [sym__unescaped] = STATE(1765), + [sym__raw] = STATE(1765), + [sym__inline_raw] = STATE(1766), + [sym__multi_line_raw] = STATE(1766), + [sym_attribute] = STATE(1764), + [sym__inline_directive] = STATE(1764), + [sym__nested_directive] = STATE(1764), + [sym_fragment] = STATE(1767), + [sym_section] = STATE(1767), + [sym_once] = STATE(1767), + [sym_verbatim] = STATE(1767), + [sym_stack] = STATE(1767), + [sym__push] = STATE(1768), + [sym__pushOnce] = STATE(1768), + [sym__pushIf] = STATE(1768), + [sym__prepend] = STATE(1768), + [sym__prependOnce] = STATE(1768), + [sym_conditional] = STATE(1767), + [sym__if] = STATE(1769), + [sym__unless] = STATE(1769), + [sym__isset] = STATE(1769), + [sym__empty] = STATE(1769), + [sym__auth] = STATE(1769), + [sym__guest] = STATE(1769), + [sym__production] = STATE(1769), + [sym__env] = STATE(1769), + [sym__hasSection] = STATE(1769), + [sym__sectionMissing] = STATE(1769), + [sym__error] = STATE(1769), + [sym__can] = STATE(1769), + [sym__cannot] = STATE(1769), + [sym__canany] = STATE(1769), + [sym__custom] = STATE(1769), + [sym_switch] = STATE(1767), + [sym_loop] = STATE(1767), + [sym_loop_operator] = STATE(1764), + [sym__for] = STATE(1770), + [sym__foreach] = STATE(1770), + [sym__forelse] = STATE(1770), + [sym__while] = STATE(1770), + [sym_livewire] = STATE(1767), + [sym__persist] = STATE(1771), + [sym__teleport] = STATE(1771), + [sym__volt] = STATE(1771), + [aux_sym__directive_body] = STATE(391), + [sym_text] = STATE(1772), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(6635), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6637), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6639), + [anon_sym_ATphp] = ACTIONS(6641), + [aux_sym_attribute_token1] = ACTIONS(6643), + [aux_sym__inline_directive_token1] = ACTIONS(6645), + [anon_sym_ATfragment] = ACTIONS(6647), + [anon_sym_ATsection] = ACTIONS(6649), + [anon_sym_ATonce] = ACTIONS(6651), + [anon_sym_ATverbatim] = ACTIONS(6653), + [anon_sym_ATpush] = ACTIONS(6655), + [anon_sym_ATpushOnce] = ACTIONS(6657), + [anon_sym_ATpushIf] = ACTIONS(6659), + [anon_sym_ATprepend] = ACTIONS(6661), + [anon_sym_ATprependOnce] = ACTIONS(6663), + [anon_sym_ATif] = ACTIONS(6665), + [anon_sym_ATunless] = ACTIONS(6667), + [anon_sym_ATisset] = ACTIONS(6669), + [anon_sym_ATempty] = ACTIONS(6671), + [anon_sym_ATauth] = ACTIONS(6673), + [anon_sym_ATguest] = ACTIONS(6675), + [anon_sym_ATproduction] = ACTIONS(6677), + [anon_sym_ATenv] = ACTIONS(6679), + [anon_sym_AThasSection] = ACTIONS(6681), + [anon_sym_ATsectionMissing] = ACTIONS(6683), + [anon_sym_ATerror] = ACTIONS(6685), + [anon_sym_ATcan] = ACTIONS(6687), + [anon_sym_ATcannot] = ACTIONS(6689), + [anon_sym_ATcanany] = ACTIONS(6691), + [aux_sym__custom_token1] = ACTIONS(6693), + [aux_sym__custom_token2] = ACTIONS(6695), + [anon_sym_ATswitch] = ACTIONS(6697), + [aux_sym_loop_operator_token1] = ACTIONS(6699), + [anon_sym_ATfor] = ACTIONS(6701), + [anon_sym_ATforeach] = ACTIONS(6703), + [anon_sym_ATendforeach] = ACTIONS(3359), + [anon_sym_ATforelse] = ACTIONS(6705), + [anon_sym_ATwhile] = ACTIONS(6707), + [anon_sym_ATpersist] = ACTIONS(6709), + [anon_sym_ATteleport] = ACTIONS(6711), + [anon_sym_ATvolt] = ACTIONS(6713), + [aux_sym_text_token1] = ACTIONS(6715), + [aux_sym_text_token2] = ACTIONS(6715), + [aux_sym_text_token3] = ACTIONS(6717), }, [396] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(396), - [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(404), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(397), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6725), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [397] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(397), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6727), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [398] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2269), [sym_comment] = STATE(398), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1499), + [sym_php_statement] = STATE(1499), + [sym__escaped] = STATE(1498), + [sym__unescaped] = STATE(1498), + [sym__raw] = STATE(1498), + [sym__inline_raw] = STATE(1497), + [sym__multi_line_raw] = STATE(1497), + [sym_attribute] = STATE(1499), + [sym__inline_directive] = STATE(1499), + [sym__nested_directive] = STATE(1499), + [sym_fragment] = STATE(1496), + [sym_section] = STATE(1496), + [sym_once] = STATE(1496), + [sym_verbatim] = STATE(1496), + [sym_stack] = STATE(1496), + [sym__push] = STATE(1495), + [sym__pushOnce] = STATE(1495), + [sym__pushIf] = STATE(1495), + [sym__prepend] = STATE(1495), + [sym__prependOnce] = STATE(1495), + [sym_conditional] = STATE(1496), + [sym__if] = STATE(1494), + [sym__unless] = STATE(1494), + [sym__isset] = STATE(1494), + [sym__empty] = STATE(1494), + [sym__auth] = STATE(1494), + [sym__guest] = STATE(1494), + [sym__production] = STATE(1494), + [sym__env] = STATE(1494), + [sym__hasSection] = STATE(1494), + [sym__sectionMissing] = STATE(1494), + [sym__error] = STATE(1494), + [sym__can] = STATE(1494), + [sym__cannot] = STATE(1494), + [sym__canany] = STATE(1494), + [sym__custom] = STATE(1494), + [sym_switch] = STATE(1496), + [sym_loop] = STATE(1496), + [sym_loop_operator] = STATE(1499), + [sym__for] = STATE(1493), + [sym__foreach] = STATE(1493), + [sym__forelse] = STATE(1493), + [sym__while] = STATE(1493), + [sym_livewire] = STATE(1496), + [sym__persist] = STATE(1492), + [sym__teleport] = STATE(1492), + [sym__volt] = STATE(1492), + [aux_sym__directive_body] = STATE(398), + [sym_text] = STATE(1491), [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(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), + [aux_sym_keyword_token1] = ACTIONS(6729), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6732), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6735), + [anon_sym_ATphp] = ACTIONS(6738), + [aux_sym_attribute_token1] = ACTIONS(6741), + [aux_sym__inline_directive_token1] = ACTIONS(6744), + [anon_sym_ATfragment] = ACTIONS(6747), + [anon_sym_ATsection] = ACTIONS(6750), + [anon_sym_ATonce] = ACTIONS(6753), + [anon_sym_ATverbatim] = ACTIONS(6756), + [anon_sym_ATpush] = ACTIONS(6759), + [anon_sym_ATpushOnce] = ACTIONS(6762), + [anon_sym_ATpushIf] = ACTIONS(6765), + [anon_sym_ATprepend] = ACTIONS(6768), + [anon_sym_ATendprepend] = ACTIONS(3555), + [anon_sym_ATprependOnce] = ACTIONS(6771), + [anon_sym_ATif] = ACTIONS(6774), + [anon_sym_ATunless] = ACTIONS(6777), + [anon_sym_ATisset] = ACTIONS(6780), + [anon_sym_ATempty] = ACTIONS(6783), + [anon_sym_ATauth] = ACTIONS(6786), + [anon_sym_ATguest] = ACTIONS(6789), + [anon_sym_ATproduction] = ACTIONS(6792), + [anon_sym_ATenv] = ACTIONS(6795), + [anon_sym_AThasSection] = ACTIONS(6798), + [anon_sym_ATsectionMissing] = ACTIONS(6801), + [anon_sym_ATerror] = ACTIONS(6804), + [anon_sym_ATcan] = ACTIONS(6807), + [anon_sym_ATcannot] = ACTIONS(6810), + [anon_sym_ATcanany] = ACTIONS(6813), + [aux_sym__custom_token1] = ACTIONS(6816), + [aux_sym__custom_token2] = ACTIONS(6819), + [anon_sym_ATswitch] = ACTIONS(6822), + [aux_sym_loop_operator_token1] = ACTIONS(6825), + [anon_sym_ATfor] = ACTIONS(6828), + [anon_sym_ATforeach] = ACTIONS(6831), + [anon_sym_ATforelse] = ACTIONS(6834), + [anon_sym_ATwhile] = ACTIONS(6837), + [anon_sym_ATpersist] = ACTIONS(6840), + [anon_sym_ATteleport] = ACTIONS(6843), + [anon_sym_ATvolt] = ACTIONS(6846), + [aux_sym_text_token1] = ACTIONS(6849), + [aux_sym_text_token2] = ACTIONS(6849), + [aux_sym_text_token3] = ACTIONS(6852), }, [399] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(1605), [sym_comment] = STATE(399), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1702), + [sym_php_statement] = STATE(1702), + [sym__escaped] = STATE(1703), + [sym__unescaped] = STATE(1703), + [sym__raw] = STATE(1703), + [sym__inline_raw] = STATE(1704), + [sym__multi_line_raw] = STATE(1704), + [sym_attribute] = STATE(1702), + [sym__inline_directive] = STATE(1702), + [sym__nested_directive] = STATE(1702), + [sym_fragment] = STATE(1705), + [sym_section] = STATE(1705), + [sym_once] = STATE(1705), + [sym_verbatim] = STATE(1705), + [sym_stack] = STATE(1705), + [sym__push] = STATE(1706), + [sym__pushOnce] = STATE(1706), + [sym__pushIf] = STATE(1706), + [sym__prepend] = STATE(1706), + [sym__prependOnce] = STATE(1706), + [sym_conditional] = STATE(1705), + [sym__if] = STATE(1707), + [sym__unless] = STATE(1707), + [sym__isset] = STATE(1707), + [sym__empty] = STATE(1707), + [sym__auth] = STATE(1707), + [sym__guest] = STATE(1707), + [sym__production] = STATE(1707), + [sym__env] = STATE(1707), + [sym__hasSection] = STATE(1707), + [sym__sectionMissing] = STATE(1707), + [sym__error] = STATE(1707), + [sym__can] = STATE(1707), + [sym__cannot] = STATE(1707), + [sym__canany] = STATE(1707), + [sym__custom] = STATE(1707), + [sym_switch] = STATE(1705), + [sym_loop] = STATE(1705), + [sym_loop_operator] = STATE(1702), + [sym__for] = STATE(1708), + [sym__foreach] = STATE(1708), + [sym__forelse] = STATE(1708), + [sym__while] = STATE(1708), + [sym_livewire] = STATE(1705), + [sym__persist] = STATE(1709), + [sym__teleport] = STATE(1709), + [sym__volt] = STATE(1709), + [aux_sym__directive_body] = STATE(379), + [sym_text] = STATE(1710), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(6855), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6857), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6859), + [anon_sym_ATphp] = ACTIONS(6861), + [aux_sym_attribute_token1] = ACTIONS(6863), + [aux_sym__inline_directive_token1] = ACTIONS(6865), + [anon_sym_ATfragment] = ACTIONS(6867), + [anon_sym_ATsection] = ACTIONS(6869), + [anon_sym_ATonce] = ACTIONS(6871), + [anon_sym_ATverbatim] = ACTIONS(6873), + [anon_sym_ATpush] = ACTIONS(6875), + [anon_sym_ATpushOnce] = ACTIONS(6877), + [anon_sym_ATpushIf] = ACTIONS(6879), + [anon_sym_ATprepend] = ACTIONS(6881), + [anon_sym_ATprependOnce] = ACTIONS(6883), + [anon_sym_ATif] = ACTIONS(6885), + [anon_sym_ATunless] = ACTIONS(6887), + [anon_sym_ATisset] = ACTIONS(6889), + [anon_sym_ATempty] = ACTIONS(6891), + [anon_sym_ATauth] = ACTIONS(6893), + [anon_sym_ATguest] = ACTIONS(6895), + [anon_sym_ATproduction] = ACTIONS(6897), + [anon_sym_ATenv] = ACTIONS(6899), + [anon_sym_AThasSection] = ACTIONS(6901), + [anon_sym_ATsectionMissing] = ACTIONS(6903), + [anon_sym_ATerror] = ACTIONS(6905), + [anon_sym_ATcan] = ACTIONS(6907), + [anon_sym_ATcannot] = ACTIONS(6909), + [anon_sym_ATcanany] = ACTIONS(6911), + [aux_sym__custom_token1] = ACTIONS(6913), + [aux_sym__custom_token2] = ACTIONS(6915), + [anon_sym_ATswitch] = ACTIONS(6917), + [aux_sym_loop_operator_token1] = ACTIONS(6919), + [anon_sym_ATfor] = ACTIONS(6921), + [anon_sym_ATendfor] = ACTIONS(3753), + [anon_sym_ATforeach] = ACTIONS(6923), + [anon_sym_ATforelse] = ACTIONS(6925), + [anon_sym_ATwhile] = ACTIONS(6927), + [anon_sym_ATpersist] = ACTIONS(6929), + [anon_sym_ATteleport] = ACTIONS(6931), + [anon_sym_ATvolt] = ACTIONS(6933), + [aux_sym_text_token1] = ACTIONS(6935), + [aux_sym_text_token2] = ACTIONS(6935), + [aux_sym_text_token3] = ACTIONS(6937), }, [400] = { - [sym__definition] = STATE(1374), + [sym__definition] = STATE(2443), [sym_comment] = STATE(400), - [sym_keyword] = STATE(1161), - [sym_php_statement] = STATE(1161), - [sym__escaped] = STATE(1160), - [sym__unescaped] = STATE(1160), - [sym__raw] = STATE(1160), - [sym__inline_raw] = STATE(1159), - [sym__multi_line_raw] = STATE(1159), - [sym_attribute] = STATE(1161), - [sym__inline_directive] = STATE(1161), - [sym__nested_directive] = STATE(1161), - [sym_fragment] = STATE(1158), - [sym_section] = STATE(1158), - [sym_once] = STATE(1158), - [sym_verbatim] = STATE(1158), - [sym_stack] = STATE(1158), - [sym__push] = STATE(1157), - [sym__pushOnce] = STATE(1157), - [sym__pushIf] = STATE(1157), - [sym__prepend] = STATE(1157), - [sym__prependOnce] = STATE(1157), - [sym_conditional] = STATE(1158), - [sym__if] = STATE(1156), - [sym__unless] = STATE(1156), - [sym__isset] = STATE(1156), - [sym__empty] = STATE(1156), - [sym__auth] = STATE(1156), - [sym__guest] = STATE(1156), - [sym__production] = STATE(1156), - [sym__env] = STATE(1156), - [sym__hasSection] = STATE(1156), - [sym__sectionMissing] = STATE(1156), - [sym__error] = STATE(1156), - [sym__custom] = STATE(1156), - [sym_switch] = STATE(1158), - [sym_loop] = STATE(1158), - [sym_loop_operator] = STATE(1161), - [sym__for] = STATE(1155), - [sym__foreach] = STATE(1155), - [sym__forelse] = STATE(1155), - [sym__while] = STATE(1155), - [sym_livewire] = STATE(1158), - [sym__persist] = STATE(1154), - [sym__teleport] = STATE(1154), - [sym__volt] = STATE(1154), - [aux_sym__directive_body] = STATE(368), - [sym_text] = STATE(1153), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(392), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6939), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [401] = { - [sym__definition] = STATE(2028), + [sym__definition] = STATE(2443), [sym_comment] = STATE(401), - [sym_keyword] = STATE(1276), - [sym_php_statement] = STATE(1276), - [sym__escaped] = STATE(1275), - [sym__unescaped] = STATE(1275), - [sym__raw] = STATE(1275), - [sym__inline_raw] = STATE(1274), - [sym__multi_line_raw] = STATE(1274), - [sym_attribute] = STATE(1276), - [sym__inline_directive] = STATE(1276), - [sym__nested_directive] = STATE(1276), - [sym_fragment] = STATE(1273), - [sym_section] = STATE(1273), - [sym_once] = STATE(1273), - [sym_verbatim] = STATE(1273), - [sym_stack] = STATE(1273), - [sym__push] = STATE(1271), - [sym__pushOnce] = STATE(1271), - [sym__pushIf] = STATE(1271), - [sym__prepend] = STATE(1271), - [sym__prependOnce] = STATE(1271), - [sym_conditional] = STATE(1273), - [sym__if] = STATE(1270), - [sym__unless] = STATE(1270), - [sym__isset] = STATE(1270), - [sym__empty] = STATE(1270), - [sym__auth] = STATE(1270), - [sym__guest] = STATE(1270), - [sym__production] = STATE(1270), - [sym__env] = STATE(1270), - [sym__hasSection] = STATE(1270), - [sym__sectionMissing] = STATE(1270), - [sym__error] = STATE(1270), - [sym__custom] = STATE(1270), - [sym_switch] = STATE(1273), - [sym_loop] = STATE(1273), - [sym_loop_operator] = STATE(1276), - [sym__for] = STATE(1269), - [sym__foreach] = STATE(1269), - [sym__forelse] = STATE(1269), - [sym__while] = STATE(1269), - [sym_livewire] = STATE(1273), - [sym__persist] = STATE(1268), - [sym__teleport] = STATE(1268), - [sym__volt] = STATE(1268), - [aux_sym__directive_body] = STATE(424), - [sym_text] = STATE(1267), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(407), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6727), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [402] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2417), [sym_comment] = STATE(402), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(405), + [sym_text] = STATE(2415), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6941), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [403] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(1605), [sym_comment] = STATE(403), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1702), + [sym_php_statement] = STATE(1702), + [sym__escaped] = STATE(1703), + [sym__unescaped] = STATE(1703), + [sym__raw] = STATE(1703), + [sym__inline_raw] = STATE(1704), + [sym__multi_line_raw] = STATE(1704), + [sym_attribute] = STATE(1702), + [sym__inline_directive] = STATE(1702), + [sym__nested_directive] = STATE(1702), + [sym_fragment] = STATE(1705), + [sym_section] = STATE(1705), + [sym_once] = STATE(1705), + [sym_verbatim] = STATE(1705), + [sym_stack] = STATE(1705), + [sym__push] = STATE(1706), + [sym__pushOnce] = STATE(1706), + [sym__pushIf] = STATE(1706), + [sym__prepend] = STATE(1706), + [sym__prependOnce] = STATE(1706), + [sym_conditional] = STATE(1705), + [sym__if] = STATE(1707), + [sym__unless] = STATE(1707), + [sym__isset] = STATE(1707), + [sym__empty] = STATE(1707), + [sym__auth] = STATE(1707), + [sym__guest] = STATE(1707), + [sym__production] = STATE(1707), + [sym__env] = STATE(1707), + [sym__hasSection] = STATE(1707), + [sym__sectionMissing] = STATE(1707), + [sym__error] = STATE(1707), + [sym__can] = STATE(1707), + [sym__cannot] = STATE(1707), + [sym__canany] = STATE(1707), + [sym__custom] = STATE(1707), + [sym_switch] = STATE(1705), + [sym_loop] = STATE(1705), + [sym_loop_operator] = STATE(1702), + [sym__for] = STATE(1708), + [sym__foreach] = STATE(1708), + [sym__forelse] = STATE(1708), + [sym__while] = STATE(1708), + [sym_livewire] = STATE(1705), + [sym__persist] = STATE(1709), + [sym__teleport] = STATE(1709), + [sym__volt] = STATE(1709), + [aux_sym__directive_body] = STATE(399), + [sym_text] = STATE(1710), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(6855), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6857), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6859), + [anon_sym_ATphp] = ACTIONS(6861), + [aux_sym_attribute_token1] = ACTIONS(6863), + [aux_sym__inline_directive_token1] = ACTIONS(6865), + [anon_sym_ATfragment] = ACTIONS(6867), + [anon_sym_ATsection] = ACTIONS(6869), + [anon_sym_ATonce] = ACTIONS(6871), + [anon_sym_ATverbatim] = ACTIONS(6873), + [anon_sym_ATpush] = ACTIONS(6875), + [anon_sym_ATpushOnce] = ACTIONS(6877), + [anon_sym_ATpushIf] = ACTIONS(6879), + [anon_sym_ATprepend] = ACTIONS(6881), + [anon_sym_ATprependOnce] = ACTIONS(6883), + [anon_sym_ATif] = ACTIONS(6885), + [anon_sym_ATunless] = ACTIONS(6887), + [anon_sym_ATisset] = ACTIONS(6889), + [anon_sym_ATempty] = ACTIONS(6891), + [anon_sym_ATauth] = ACTIONS(6893), + [anon_sym_ATguest] = ACTIONS(6895), + [anon_sym_ATproduction] = ACTIONS(6897), + [anon_sym_ATenv] = ACTIONS(6899), + [anon_sym_AThasSection] = ACTIONS(6901), + [anon_sym_ATsectionMissing] = ACTIONS(6903), + [anon_sym_ATerror] = ACTIONS(6905), + [anon_sym_ATcan] = ACTIONS(6907), + [anon_sym_ATcannot] = ACTIONS(6909), + [anon_sym_ATcanany] = ACTIONS(6911), + [aux_sym__custom_token1] = ACTIONS(6913), + [aux_sym__custom_token2] = ACTIONS(6915), + [anon_sym_ATswitch] = ACTIONS(6917), + [aux_sym_loop_operator_token1] = ACTIONS(6919), + [anon_sym_ATfor] = ACTIONS(6921), + [anon_sym_ATendfor] = ACTIONS(3359), + [anon_sym_ATforeach] = ACTIONS(6923), + [anon_sym_ATforelse] = ACTIONS(6925), + [anon_sym_ATwhile] = ACTIONS(6927), + [anon_sym_ATpersist] = ACTIONS(6929), + [anon_sym_ATteleport] = ACTIONS(6931), + [anon_sym_ATvolt] = ACTIONS(6933), + [aux_sym_text_token1] = ACTIONS(6935), + [aux_sym_text_token2] = ACTIONS(6935), + [aux_sym_text_token3] = ACTIONS(6937), }, [404] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(404), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(406), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6943), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [405] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(405), - [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(398), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6945), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [406] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2399), [sym_comment] = STATE(406), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(399), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6947), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [407] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(407), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6949), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [408] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(408), - [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(407), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(410), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6951), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [409] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(409), - [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), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(424), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6953), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [410] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(410), - [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6955), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [411] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(411), - [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(409), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(412), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6957), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [412] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(412), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(288), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6959), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [413] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2399), [sym_comment] = STATE(413), - [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(276), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(365), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6961), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [414] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(414), - [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(219), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6959), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [415] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(415), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(211), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6963), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [416] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(416), - [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(414), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(421), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6965), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [417] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2399), [sym_comment] = STATE(417), - [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(391), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(422), + [sym_text] = STATE(2274), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6967), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [418] = { - [sym__definition] = STATE(2028), + [sym__definition] = STATE(2443), [sym_comment] = STATE(418), - [sym_keyword] = STATE(1276), - [sym_php_statement] = STATE(1276), - [sym__escaped] = STATE(1275), - [sym__unescaped] = STATE(1275), - [sym__raw] = STATE(1275), - [sym__inline_raw] = STATE(1274), - [sym__multi_line_raw] = STATE(1274), - [sym_attribute] = STATE(1276), - [sym__inline_directive] = STATE(1276), - [sym__nested_directive] = STATE(1276), - [sym_fragment] = STATE(1273), - [sym_section] = STATE(1273), - [sym_once] = STATE(1273), - [sym_verbatim] = STATE(1273), - [sym_stack] = STATE(1273), - [sym__push] = STATE(1271), - [sym__pushOnce] = STATE(1271), - [sym__pushIf] = STATE(1271), - [sym__prepend] = STATE(1271), - [sym__prependOnce] = STATE(1271), - [sym_conditional] = STATE(1273), - [sym__if] = STATE(1270), - [sym__unless] = STATE(1270), - [sym__isset] = STATE(1270), - [sym__empty] = STATE(1270), - [sym__auth] = STATE(1270), - [sym__guest] = STATE(1270), - [sym__production] = STATE(1270), - [sym__env] = STATE(1270), - [sym__hasSection] = STATE(1270), - [sym__sectionMissing] = STATE(1270), - [sym__error] = STATE(1270), - [sym__custom] = STATE(1270), - [sym_switch] = STATE(1273), - [sym_loop] = STATE(1273), - [sym_loop_operator] = STATE(1276), - [sym__for] = STATE(1269), - [sym__foreach] = STATE(1269), - [sym__forelse] = STATE(1269), - [sym__while] = STATE(1269), - [sym_livewire] = STATE(1273), - [sym__persist] = STATE(1268), - [sym__teleport] = STATE(1268), - [sym__volt] = STATE(1268), - [aux_sym__directive_body] = STATE(401), - [sym_text] = STATE(1267), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6939), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [419] = { - [sym__definition] = STATE(2012), + [sym__definition] = STATE(2443), [sym_comment] = STATE(419), - [sym_keyword] = STATE(2112), - [sym_php_statement] = STATE(2112), - [sym__escaped] = STATE(2113), - [sym__unescaped] = STATE(2113), - [sym__raw] = STATE(2113), - [sym__inline_raw] = STATE(2114), - [sym__multi_line_raw] = STATE(2114), - [sym_attribute] = STATE(2112), - [sym__inline_directive] = STATE(2112), - [sym__nested_directive] = STATE(2112), - [sym_fragment] = STATE(2115), - [sym_section] = STATE(2115), - [sym_once] = STATE(2115), - [sym_verbatim] = STATE(2115), - [sym_stack] = STATE(2115), - [sym__push] = STATE(2120), - [sym__pushOnce] = STATE(2120), - [sym__pushIf] = STATE(2120), - [sym__prepend] = STATE(2120), - [sym__prependOnce] = STATE(2120), - [sym_conditional] = STATE(2115), - [sym__if] = STATE(2121), - [sym__unless] = STATE(2121), - [sym__isset] = STATE(2121), - [sym__empty] = STATE(2121), - [sym__auth] = STATE(2121), - [sym__guest] = STATE(2121), - [sym__production] = STATE(2121), - [sym__env] = STATE(2121), - [sym__hasSection] = STATE(2121), - [sym__sectionMissing] = STATE(2121), - [sym__error] = STATE(2121), - [sym__custom] = STATE(2121), - [sym_switch] = STATE(2115), - [sym_loop] = STATE(2115), - [sym_loop_operator] = STATE(2112), - [sym__for] = STATE(2122), - [sym__foreach] = STATE(2122), - [sym__forelse] = STATE(2122), - [sym__while] = STATE(2122), - [sym_livewire] = STATE(2115), - [sym__persist] = STATE(2131), - [sym__teleport] = STATE(2131), - [sym__volt] = STATE(2131), - [aux_sym__directive_body] = STATE(415), - [sym_text] = STATE(2170), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(369), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6969), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [420] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2417), [sym_comment] = STATE(420), - [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(283), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(374), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6971), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [421] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2417), [sym_comment] = STATE(421), - [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), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6973), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), }, [422] = { - [sym__definition] = STATE(1966), + [sym__definition] = STATE(2399), [sym_comment] = STATE(422), - [sym_keyword] = STATE(1971), - [sym_php_statement] = STATE(1971), - [sym__escaped] = STATE(1972), - [sym__unescaped] = STATE(1972), - [sym__raw] = STATE(1972), - [sym__inline_raw] = STATE(1974), - [sym__multi_line_raw] = STATE(1974), - [sym_attribute] = STATE(1971), - [sym__inline_directive] = STATE(1971), - [sym__nested_directive] = STATE(1971), - [sym_fragment] = STATE(1979), - [sym_section] = STATE(1979), - [sym_once] = STATE(1979), - [sym_verbatim] = STATE(1979), - [sym_stack] = STATE(1979), - [sym__push] = STATE(1980), - [sym__pushOnce] = STATE(1980), - [sym__pushIf] = STATE(1980), - [sym__prepend] = STATE(1980), - [sym__prependOnce] = STATE(1980), - [sym_conditional] = STATE(1979), - [sym__if] = STATE(1981), - [sym__unless] = STATE(1981), - [sym__isset] = STATE(1981), - [sym__empty] = STATE(1981), - [sym__auth] = STATE(1981), - [sym__guest] = STATE(1981), - [sym__production] = STATE(1981), - [sym__env] = STATE(1981), - [sym__hasSection] = STATE(1981), - [sym__sectionMissing] = STATE(1981), - [sym__error] = STATE(1981), - [sym__custom] = STATE(1981), - [sym_switch] = STATE(1979), - [sym_loop] = STATE(1979), - [sym_loop_operator] = STATE(1971), - [sym__for] = STATE(1984), - [sym__foreach] = STATE(1984), - [sym__forelse] = STATE(1984), - [sym__while] = STATE(1984), - [sym_livewire] = STATE(1979), - [sym__persist] = STATE(1985), - [sym__teleport] = STATE(1985), - [sym__volt] = STATE(1985), - [sym_text] = STATE(1986), - [aux_sym_blade_repeat1] = STATE(251), - [ts_builtin_sym_end] = ACTIONS(6123), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6975), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [423] = { + [sym__definition] = STATE(2333), + [sym_comment] = STATE(423), + [sym_keyword] = STATE(2334), + [sym_php_statement] = STATE(2334), + [sym__escaped] = STATE(2338), + [sym__unescaped] = STATE(2338), + [sym__raw] = STATE(2338), + [sym__inline_raw] = STATE(2339), + [sym__multi_line_raw] = STATE(2339), + [sym_attribute] = STATE(2334), + [sym__inline_directive] = STATE(2334), + [sym__nested_directive] = STATE(2334), + [sym_fragment] = STATE(2340), + [sym_section] = STATE(2340), + [sym_once] = STATE(2340), + [sym_verbatim] = STATE(2340), + [sym_stack] = STATE(2340), + [sym__push] = STATE(2347), + [sym__pushOnce] = STATE(2347), + [sym__pushIf] = STATE(2347), + [sym__prepend] = STATE(2347), + [sym__prependOnce] = STATE(2347), + [sym_conditional] = STATE(2340), + [sym__if] = STATE(2351), + [sym__unless] = STATE(2351), + [sym__isset] = STATE(2351), + [sym__empty] = STATE(2351), + [sym__auth] = STATE(2351), + [sym__guest] = STATE(2351), + [sym__production] = STATE(2351), + [sym__env] = STATE(2351), + [sym__hasSection] = STATE(2351), + [sym__sectionMissing] = STATE(2351), + [sym__error] = STATE(2351), + [sym__can] = STATE(2351), + [sym__cannot] = STATE(2351), + [sym__canany] = STATE(2351), + [sym__custom] = STATE(2351), + [sym_switch] = STATE(2340), + [sym_loop] = STATE(2340), + [sym_loop_operator] = STATE(2334), + [sym__for] = STATE(2352), + [sym__foreach] = STATE(2352), + [sym__forelse] = STATE(2352), + [sym__while] = STATE(2352), + [sym_livewire] = STATE(2340), + [sym__persist] = STATE(2353), + [sym__teleport] = STATE(2353), + [sym__volt] = STATE(2353), + [sym_text] = STATE(2354), + [aux_sym_blade_repeat1] = STATE(285), + [ts_builtin_sym_end] = ACTIONS(6977), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), [aux_sym_keyword_token1] = ACTIONS(7), [anon_sym_LBRACE_LBRACE] = ACTIONS(9), @@ -56183,664 +60837,5021 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AThasSection] = ACTIONS(53), [anon_sym_ATsectionMissing] = ACTIONS(55), [anon_sym_ATerror] = ACTIONS(57), - [aux_sym__custom_token1] = ACTIONS(59), - [aux_sym__custom_token2] = ACTIONS(61), - [anon_sym_ATswitch] = ACTIONS(63), - [aux_sym_loop_operator_token1] = ACTIONS(65), - [anon_sym_ATfor] = ACTIONS(67), - [anon_sym_ATforeach] = ACTIONS(69), - [anon_sym_ATforelse] = ACTIONS(71), - [anon_sym_ATwhile] = ACTIONS(73), - [anon_sym_ATpersist] = ACTIONS(75), - [anon_sym_ATteleport] = ACTIONS(77), - [anon_sym_ATvolt] = ACTIONS(79), - [aux_sym_text_token1] = ACTIONS(81), - [aux_sym_text_token2] = ACTIONS(81), - [aux_sym_text_token3] = ACTIONS(83), - }, - [423] = { - [sym__definition] = STATE(2111), - [sym_comment] = STATE(423), - [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(421), - [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(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), + [anon_sym_ATcan] = ACTIONS(59), + [anon_sym_ATcannot] = ACTIONS(61), + [anon_sym_ATcanany] = ACTIONS(63), + [aux_sym__custom_token1] = ACTIONS(65), + [aux_sym__custom_token2] = ACTIONS(67), + [anon_sym_ATswitch] = ACTIONS(69), + [aux_sym_loop_operator_token1] = ACTIONS(71), + [anon_sym_ATfor] = ACTIONS(73), + [anon_sym_ATforeach] = ACTIONS(75), + [anon_sym_ATforelse] = ACTIONS(77), + [anon_sym_ATwhile] = ACTIONS(79), + [anon_sym_ATpersist] = ACTIONS(81), + [anon_sym_ATteleport] = ACTIONS(83), + [anon_sym_ATvolt] = ACTIONS(85), + [aux_sym_text_token1] = ACTIONS(87), + [aux_sym_text_token2] = ACTIONS(87), + [aux_sym_text_token3] = ACTIONS(89), }, [424] = { - [sym__definition] = STATE(2028), + [sym__definition] = STATE(2399), [sym_comment] = STATE(424), - [sym_keyword] = STATE(1276), - [sym_php_statement] = STATE(1276), - [sym__escaped] = STATE(1275), - [sym__unescaped] = STATE(1275), - [sym__raw] = STATE(1275), - [sym__inline_raw] = STATE(1274), - [sym__multi_line_raw] = STATE(1274), - [sym_attribute] = STATE(1276), - [sym__inline_directive] = STATE(1276), - [sym__nested_directive] = STATE(1276), - [sym_fragment] = STATE(1273), - [sym_section] = STATE(1273), - [sym_once] = STATE(1273), - [sym_verbatim] = STATE(1273), - [sym_stack] = STATE(1273), - [sym__push] = STATE(1271), - [sym__pushOnce] = STATE(1271), - [sym__pushIf] = STATE(1271), - [sym__prepend] = STATE(1271), - [sym__prependOnce] = STATE(1271), - [sym_conditional] = STATE(1273), - [sym__if] = STATE(1270), - [sym__unless] = STATE(1270), - [sym__isset] = STATE(1270), - [sym__empty] = STATE(1270), - [sym__auth] = STATE(1270), - [sym__guest] = STATE(1270), - [sym__production] = STATE(1270), - [sym__env] = STATE(1270), - [sym__hasSection] = STATE(1270), - [sym__sectionMissing] = STATE(1270), - [sym__error] = STATE(1270), - [sym__custom] = STATE(1270), - [sym_switch] = STATE(1273), - [sym_loop] = STATE(1273), - [sym_loop_operator] = STATE(1276), - [sym__for] = STATE(1269), - [sym__foreach] = STATE(1269), - [sym__forelse] = STATE(1269), - [sym__while] = STATE(1269), - [sym_livewire] = STATE(1273), - [sym__persist] = STATE(1268), - [sym__teleport] = STATE(1268), - [sym__volt] = STATE(1268), - [aux_sym__directive_body] = STATE(424), - [sym_text] = STATE(1267), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), - [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), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6979), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), }, [425] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(425), - [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(428), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(426), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6981), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [426] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(426), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6983), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [427] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(427), - [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(426), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(437), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6983), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [428] = { - [sym__definition] = STATE(2111), + [sym__definition] = STATE(2443), [sym_comment] = STATE(428), - [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), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(429), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6985), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, [429] = { - [sym__definition] = STATE(2152), + [sym__definition] = STATE(2443), [sym_comment] = STATE(429), - [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(359), - [sym_text] = STATE(2155), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6987), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [430] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(430), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(431), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6987), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [431] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(431), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6989), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [432] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(432), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(434), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6991), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [433] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(433), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(435), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6993), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [434] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(434), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(6995), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [435] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(435), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(6997), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [436] = { + [sym__definition] = STATE(2510), + [sym_comment] = STATE(436), + [sym_keyword] = STATE(1560), + [sym_php_statement] = STATE(1560), + [sym__escaped] = STATE(1559), + [sym__unescaped] = STATE(1559), + [sym__raw] = STATE(1559), + [sym__inline_raw] = STATE(1558), + [sym__multi_line_raw] = STATE(1558), + [sym_attribute] = STATE(1560), + [sym__inline_directive] = STATE(1560), + [sym__nested_directive] = STATE(1560), + [sym_fragment] = STATE(1557), + [sym_section] = STATE(1557), + [sym_once] = STATE(1557), + [sym_verbatim] = STATE(1557), + [sym_stack] = STATE(1557), + [sym__push] = STATE(1556), + [sym__pushOnce] = STATE(1556), + [sym__pushIf] = STATE(1556), + [sym__prepend] = STATE(1556), + [sym__prependOnce] = STATE(1556), + [sym_conditional] = STATE(1557), + [sym__if] = STATE(1555), + [sym__unless] = STATE(1555), + [sym__isset] = STATE(1555), + [sym__empty] = STATE(1555), + [sym__auth] = STATE(1555), + [sym__guest] = STATE(1555), + [sym__production] = STATE(1555), + [sym__env] = STATE(1555), + [sym__hasSection] = STATE(1555), + [sym__sectionMissing] = STATE(1555), + [sym__error] = STATE(1555), + [sym__can] = STATE(1555), + [sym__cannot] = STATE(1555), + [sym__canany] = STATE(1555), + [sym__custom] = STATE(1555), + [sym_switch] = STATE(1557), + [sym_loop] = STATE(1557), + [sym_loop_operator] = STATE(1560), + [sym__for] = STATE(1554), + [sym__foreach] = STATE(1554), + [sym__forelse] = STATE(1554), + [sym__while] = STATE(1554), + [sym_livewire] = STATE(1557), + [sym__persist] = STATE(1553), + [sym__teleport] = STATE(1553), + [sym__volt] = STATE(1553), + [aux_sym__directive_body] = STATE(450), + [sym_text] = STATE(1552), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(6999), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7001), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7003), + [anon_sym_ATphp] = ACTIONS(7005), + [aux_sym_attribute_token1] = ACTIONS(7007), + [aux_sym__inline_directive_token1] = ACTIONS(7009), + [anon_sym_ATfragment] = ACTIONS(7011), + [anon_sym_ATsection] = ACTIONS(7013), + [anon_sym_ATonce] = ACTIONS(7015), + [anon_sym_ATverbatim] = ACTIONS(7017), + [anon_sym_ATpush] = ACTIONS(7019), + [anon_sym_ATpushOnce] = ACTIONS(7021), + [anon_sym_ATpushIf] = ACTIONS(7023), + [anon_sym_ATendPushIf] = ACTIONS(3359), + [anon_sym_ATprepend] = ACTIONS(7025), + [anon_sym_ATprependOnce] = ACTIONS(7027), + [anon_sym_ATif] = ACTIONS(7029), + [anon_sym_ATunless] = ACTIONS(7031), + [anon_sym_ATisset] = ACTIONS(7033), + [anon_sym_ATempty] = ACTIONS(7035), + [anon_sym_ATauth] = ACTIONS(7037), + [anon_sym_ATguest] = ACTIONS(7039), + [anon_sym_ATproduction] = ACTIONS(7041), + [anon_sym_ATenv] = ACTIONS(7043), + [anon_sym_AThasSection] = ACTIONS(7045), + [anon_sym_ATsectionMissing] = ACTIONS(7047), + [anon_sym_ATerror] = ACTIONS(7049), + [anon_sym_ATcan] = ACTIONS(7051), + [anon_sym_ATcannot] = ACTIONS(7053), + [anon_sym_ATcanany] = ACTIONS(7055), + [aux_sym__custom_token1] = ACTIONS(7057), + [aux_sym__custom_token2] = ACTIONS(7059), + [anon_sym_ATswitch] = ACTIONS(7061), + [aux_sym_loop_operator_token1] = ACTIONS(7063), + [anon_sym_ATfor] = ACTIONS(7065), + [anon_sym_ATforeach] = ACTIONS(7067), + [anon_sym_ATforelse] = ACTIONS(7069), + [anon_sym_ATwhile] = ACTIONS(7071), + [anon_sym_ATpersist] = ACTIONS(7073), + [anon_sym_ATteleport] = ACTIONS(7075), + [anon_sym_ATvolt] = ACTIONS(7077), + [aux_sym_text_token1] = ACTIONS(7079), + [aux_sym_text_token2] = ACTIONS(7079), + [aux_sym_text_token3] = ACTIONS(7081), + }, + [437] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(437), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7083), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [438] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(438), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7085), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [439] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(439), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(441), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(7087), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [440] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(440), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(443), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(7089), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [441] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(441), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(7091), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [442] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(442), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(418), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7093), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [443] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(443), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(7095), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [444] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(444), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(445), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7097), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [445] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(445), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7099), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [446] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(446), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(448), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7099), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [447] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(447), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(438), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6075), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [448] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(448), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7101), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [449] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(449), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(454), + [sym_text] = STATE(2415), [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(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), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(7103), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [450] = { + [sym__definition] = STATE(2510), + [sym_comment] = STATE(450), + [sym_keyword] = STATE(1560), + [sym_php_statement] = STATE(1560), + [sym__escaped] = STATE(1559), + [sym__unescaped] = STATE(1559), + [sym__raw] = STATE(1559), + [sym__inline_raw] = STATE(1558), + [sym__multi_line_raw] = STATE(1558), + [sym_attribute] = STATE(1560), + [sym__inline_directive] = STATE(1560), + [sym__nested_directive] = STATE(1560), + [sym_fragment] = STATE(1557), + [sym_section] = STATE(1557), + [sym_once] = STATE(1557), + [sym_verbatim] = STATE(1557), + [sym_stack] = STATE(1557), + [sym__push] = STATE(1556), + [sym__pushOnce] = STATE(1556), + [sym__pushIf] = STATE(1556), + [sym__prepend] = STATE(1556), + [sym__prependOnce] = STATE(1556), + [sym_conditional] = STATE(1557), + [sym__if] = STATE(1555), + [sym__unless] = STATE(1555), + [sym__isset] = STATE(1555), + [sym__empty] = STATE(1555), + [sym__auth] = STATE(1555), + [sym__guest] = STATE(1555), + [sym__production] = STATE(1555), + [sym__env] = STATE(1555), + [sym__hasSection] = STATE(1555), + [sym__sectionMissing] = STATE(1555), + [sym__error] = STATE(1555), + [sym__can] = STATE(1555), + [sym__cannot] = STATE(1555), + [sym__canany] = STATE(1555), + [sym__custom] = STATE(1555), + [sym_switch] = STATE(1557), + [sym_loop] = STATE(1557), + [sym_loop_operator] = STATE(1560), + [sym__for] = STATE(1554), + [sym__foreach] = STATE(1554), + [sym__forelse] = STATE(1554), + [sym__while] = STATE(1554), + [sym_livewire] = STATE(1557), + [sym__persist] = STATE(1553), + [sym__teleport] = STATE(1553), + [sym__volt] = STATE(1553), + [aux_sym__directive_body] = STATE(468), + [sym_text] = STATE(1552), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(6999), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7001), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7003), + [anon_sym_ATphp] = ACTIONS(7005), + [aux_sym_attribute_token1] = ACTIONS(7007), + [aux_sym__inline_directive_token1] = ACTIONS(7009), + [anon_sym_ATfragment] = ACTIONS(7011), + [anon_sym_ATsection] = ACTIONS(7013), + [anon_sym_ATonce] = ACTIONS(7015), + [anon_sym_ATverbatim] = ACTIONS(7017), + [anon_sym_ATpush] = ACTIONS(7019), + [anon_sym_ATpushOnce] = ACTIONS(7021), + [anon_sym_ATpushIf] = ACTIONS(7023), + [anon_sym_ATendPushIf] = ACTIONS(3753), + [anon_sym_ATprepend] = ACTIONS(7025), + [anon_sym_ATprependOnce] = ACTIONS(7027), + [anon_sym_ATif] = ACTIONS(7029), + [anon_sym_ATunless] = ACTIONS(7031), + [anon_sym_ATisset] = ACTIONS(7033), + [anon_sym_ATempty] = ACTIONS(7035), + [anon_sym_ATauth] = ACTIONS(7037), + [anon_sym_ATguest] = ACTIONS(7039), + [anon_sym_ATproduction] = ACTIONS(7041), + [anon_sym_ATenv] = ACTIONS(7043), + [anon_sym_AThasSection] = ACTIONS(7045), + [anon_sym_ATsectionMissing] = ACTIONS(7047), + [anon_sym_ATerror] = ACTIONS(7049), + [anon_sym_ATcan] = ACTIONS(7051), + [anon_sym_ATcannot] = ACTIONS(7053), + [anon_sym_ATcanany] = ACTIONS(7055), + [aux_sym__custom_token1] = ACTIONS(7057), + [aux_sym__custom_token2] = ACTIONS(7059), + [anon_sym_ATswitch] = ACTIONS(7061), + [aux_sym_loop_operator_token1] = ACTIONS(7063), + [anon_sym_ATfor] = ACTIONS(7065), + [anon_sym_ATforeach] = ACTIONS(7067), + [anon_sym_ATforelse] = ACTIONS(7069), + [anon_sym_ATwhile] = ACTIONS(7071), + [anon_sym_ATpersist] = ACTIONS(7073), + [anon_sym_ATteleport] = ACTIONS(7075), + [anon_sym_ATvolt] = ACTIONS(7077), + [aux_sym_text_token1] = ACTIONS(7079), + [aux_sym_text_token2] = ACTIONS(7079), + [aux_sym_text_token3] = ACTIONS(7081), + }, + [451] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(451), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(455), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(7105), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [452] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(452), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(456), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7107), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [453] = { + [sym__definition] = STATE(2454), + [sym_comment] = STATE(453), + [sym_keyword] = STATE(1681), + [sym_php_statement] = STATE(1681), + [sym__escaped] = STATE(1680), + [sym__unescaped] = STATE(1680), + [sym__raw] = STATE(1680), + [sym__inline_raw] = STATE(1679), + [sym__multi_line_raw] = STATE(1679), + [sym_attribute] = STATE(1681), + [sym__inline_directive] = STATE(1681), + [sym__nested_directive] = STATE(1681), + [sym_fragment] = STATE(1678), + [sym_section] = STATE(1678), + [sym_once] = STATE(1678), + [sym_verbatim] = STATE(1678), + [sym_stack] = STATE(1678), + [sym__push] = STATE(1677), + [sym__pushOnce] = STATE(1677), + [sym__pushIf] = STATE(1677), + [sym__prepend] = STATE(1677), + [sym__prependOnce] = STATE(1677), + [sym_conditional] = STATE(1678), + [sym__if] = STATE(1676), + [sym__unless] = STATE(1676), + [sym__isset] = STATE(1676), + [sym__empty] = STATE(1676), + [sym__auth] = STATE(1676), + [sym__guest] = STATE(1676), + [sym__production] = STATE(1676), + [sym__env] = STATE(1676), + [sym__hasSection] = STATE(1676), + [sym__sectionMissing] = STATE(1676), + [sym__error] = STATE(1676), + [sym__can] = STATE(1676), + [sym__cannot] = STATE(1676), + [sym__canany] = STATE(1676), + [sym__custom] = STATE(1676), + [sym_switch] = STATE(1678), + [sym_loop] = STATE(1678), + [sym_loop_operator] = STATE(1681), + [sym__for] = STATE(1675), + [sym__foreach] = STATE(1675), + [sym__forelse] = STATE(1675), + [sym__while] = STATE(1675), + [sym_livewire] = STATE(1678), + [sym__persist] = STATE(1674), + [sym__teleport] = STATE(1674), + [sym__volt] = STATE(1674), + [aux_sym__directive_body] = STATE(453), + [sym_text] = STATE(1673), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(7109), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7112), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7115), + [anon_sym_ATphp] = ACTIONS(7118), + [aux_sym_attribute_token1] = ACTIONS(7121), + [aux_sym__inline_directive_token1] = ACTIONS(7124), + [anon_sym_ATfragment] = ACTIONS(7127), + [anon_sym_ATsection] = ACTIONS(7130), + [anon_sym_ATonce] = ACTIONS(7133), + [anon_sym_ATverbatim] = ACTIONS(7136), + [anon_sym_ATpush] = ACTIONS(7139), + [anon_sym_ATendpush] = ACTIONS(3555), + [anon_sym_ATpushOnce] = ACTIONS(7142), + [anon_sym_ATpushIf] = ACTIONS(7145), + [anon_sym_ATprepend] = ACTIONS(7148), + [anon_sym_ATprependOnce] = ACTIONS(7151), + [anon_sym_ATif] = ACTIONS(7154), + [anon_sym_ATunless] = ACTIONS(7157), + [anon_sym_ATisset] = ACTIONS(7160), + [anon_sym_ATempty] = ACTIONS(7163), + [anon_sym_ATauth] = ACTIONS(7166), + [anon_sym_ATguest] = ACTIONS(7169), + [anon_sym_ATproduction] = ACTIONS(7172), + [anon_sym_ATenv] = ACTIONS(7175), + [anon_sym_AThasSection] = ACTIONS(7178), + [anon_sym_ATsectionMissing] = ACTIONS(7181), + [anon_sym_ATerror] = ACTIONS(7184), + [anon_sym_ATcan] = ACTIONS(7187), + [anon_sym_ATcannot] = ACTIONS(7190), + [anon_sym_ATcanany] = ACTIONS(7193), + [aux_sym__custom_token1] = ACTIONS(7196), + [aux_sym__custom_token2] = ACTIONS(7199), + [anon_sym_ATswitch] = ACTIONS(7202), + [aux_sym_loop_operator_token1] = ACTIONS(7205), + [anon_sym_ATfor] = ACTIONS(7208), + [anon_sym_ATforeach] = ACTIONS(7211), + [anon_sym_ATforelse] = ACTIONS(7214), + [anon_sym_ATwhile] = ACTIONS(7217), + [anon_sym_ATpersist] = ACTIONS(7220), + [anon_sym_ATteleport] = ACTIONS(7223), + [anon_sym_ATvolt] = ACTIONS(7226), + [aux_sym_text_token1] = ACTIONS(7229), + [aux_sym_text_token2] = ACTIONS(7229), + [aux_sym_text_token3] = ACTIONS(7232), + }, + [454] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(454), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(7235), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [455] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(455), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(7237), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [456] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(456), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7239), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [457] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(457), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(6969), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [458] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(458), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(459), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7239), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [459] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(459), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7241), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [460] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(460), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(467), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(7243), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [461] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(461), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(473), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(7245), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [462] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(462), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(463), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7247), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [463] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(463), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7249), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [464] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(464), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(465), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7249), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [465] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(465), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(215), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7251), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), + }, + [466] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(466), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(470), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(7253), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [467] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(467), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(7255), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [468] = { + [sym__definition] = STATE(2510), + [sym_comment] = STATE(468), + [sym_keyword] = STATE(1560), + [sym_php_statement] = STATE(1560), + [sym__escaped] = STATE(1559), + [sym__unescaped] = STATE(1559), + [sym__raw] = STATE(1559), + [sym__inline_raw] = STATE(1558), + [sym__multi_line_raw] = STATE(1558), + [sym_attribute] = STATE(1560), + [sym__inline_directive] = STATE(1560), + [sym__nested_directive] = STATE(1560), + [sym_fragment] = STATE(1557), + [sym_section] = STATE(1557), + [sym_once] = STATE(1557), + [sym_verbatim] = STATE(1557), + [sym_stack] = STATE(1557), + [sym__push] = STATE(1556), + [sym__pushOnce] = STATE(1556), + [sym__pushIf] = STATE(1556), + [sym__prepend] = STATE(1556), + [sym__prependOnce] = STATE(1556), + [sym_conditional] = STATE(1557), + [sym__if] = STATE(1555), + [sym__unless] = STATE(1555), + [sym__isset] = STATE(1555), + [sym__empty] = STATE(1555), + [sym__auth] = STATE(1555), + [sym__guest] = STATE(1555), + [sym__production] = STATE(1555), + [sym__env] = STATE(1555), + [sym__hasSection] = STATE(1555), + [sym__sectionMissing] = STATE(1555), + [sym__error] = STATE(1555), + [sym__can] = STATE(1555), + [sym__cannot] = STATE(1555), + [sym__canany] = STATE(1555), + [sym__custom] = STATE(1555), + [sym_switch] = STATE(1557), + [sym_loop] = STATE(1557), + [sym_loop_operator] = STATE(1560), + [sym__for] = STATE(1554), + [sym__foreach] = STATE(1554), + [sym__forelse] = STATE(1554), + [sym__while] = STATE(1554), + [sym_livewire] = STATE(1557), + [sym__persist] = STATE(1553), + [sym__teleport] = STATE(1553), + [sym__volt] = STATE(1553), + [aux_sym__directive_body] = STATE(468), + [sym_text] = STATE(1552), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(7257), + [anon_sym_LBRACE_LBRACE] = ACTIONS(7260), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(7263), + [anon_sym_ATphp] = ACTIONS(7266), + [aux_sym_attribute_token1] = ACTIONS(7269), + [aux_sym__inline_directive_token1] = ACTIONS(7272), + [anon_sym_ATfragment] = ACTIONS(7275), + [anon_sym_ATsection] = ACTIONS(7278), + [anon_sym_ATonce] = ACTIONS(7281), + [anon_sym_ATverbatim] = ACTIONS(7284), + [anon_sym_ATpush] = ACTIONS(7287), + [anon_sym_ATpushOnce] = ACTIONS(7290), + [anon_sym_ATpushIf] = ACTIONS(7293), + [anon_sym_ATendPushIf] = ACTIONS(3555), + [anon_sym_ATprepend] = ACTIONS(7296), + [anon_sym_ATprependOnce] = ACTIONS(7299), + [anon_sym_ATif] = ACTIONS(7302), + [anon_sym_ATunless] = ACTIONS(7305), + [anon_sym_ATisset] = ACTIONS(7308), + [anon_sym_ATempty] = ACTIONS(7311), + [anon_sym_ATauth] = ACTIONS(7314), + [anon_sym_ATguest] = ACTIONS(7317), + [anon_sym_ATproduction] = ACTIONS(7320), + [anon_sym_ATenv] = ACTIONS(7323), + [anon_sym_AThasSection] = ACTIONS(7326), + [anon_sym_ATsectionMissing] = ACTIONS(7329), + [anon_sym_ATerror] = ACTIONS(7332), + [anon_sym_ATcan] = ACTIONS(7335), + [anon_sym_ATcannot] = ACTIONS(7338), + [anon_sym_ATcanany] = ACTIONS(7341), + [aux_sym__custom_token1] = ACTIONS(7344), + [aux_sym__custom_token2] = ACTIONS(7347), + [anon_sym_ATswitch] = ACTIONS(7350), + [aux_sym_loop_operator_token1] = ACTIONS(7353), + [anon_sym_ATfor] = ACTIONS(7356), + [anon_sym_ATforeach] = ACTIONS(7359), + [anon_sym_ATforelse] = ACTIONS(7362), + [anon_sym_ATwhile] = ACTIONS(7365), + [anon_sym_ATpersist] = ACTIONS(7368), + [anon_sym_ATteleport] = ACTIONS(7371), + [anon_sym_ATvolt] = ACTIONS(7374), + [aux_sym_text_token1] = ACTIONS(7377), + [aux_sym_text_token2] = ACTIONS(7377), + [aux_sym_text_token3] = ACTIONS(7380), + }, + [469] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(469), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(472), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(7383), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [470] = { + [sym__definition] = STATE(2417), + [sym_comment] = STATE(470), + [sym_keyword] = STATE(2441), + [sym_php_statement] = STATE(2441), + [sym__escaped] = STATE(2440), + [sym__unescaped] = STATE(2440), + [sym__raw] = STATE(2440), + [sym__inline_raw] = STATE(2436), + [sym__multi_line_raw] = STATE(2436), + [sym_attribute] = STATE(2441), + [sym__inline_directive] = STATE(2441), + [sym__nested_directive] = STATE(2441), + [sym_fragment] = STATE(2435), + [sym_section] = STATE(2435), + [sym_once] = STATE(2435), + [sym_verbatim] = STATE(2435), + [sym_stack] = STATE(2435), + [sym__push] = STATE(2434), + [sym__pushOnce] = STATE(2434), + [sym__pushIf] = STATE(2434), + [sym__prepend] = STATE(2434), + [sym__prependOnce] = STATE(2434), + [sym_conditional] = STATE(2435), + [sym__if] = STATE(2425), + [sym__unless] = STATE(2425), + [sym__isset] = STATE(2425), + [sym__empty] = STATE(2425), + [sym__auth] = STATE(2425), + [sym__guest] = STATE(2425), + [sym__production] = STATE(2425), + [sym__env] = STATE(2425), + [sym__hasSection] = STATE(2425), + [sym__sectionMissing] = STATE(2425), + [sym__error] = STATE(2425), + [sym__can] = STATE(2425), + [sym__cannot] = STATE(2425), + [sym__canany] = STATE(2425), + [sym__custom] = STATE(2425), + [sym_switch] = STATE(2435), + [sym_loop] = STATE(2435), + [sym_loop_operator] = STATE(2441), + [sym__for] = STATE(2421), + [sym__foreach] = STATE(2421), + [sym__forelse] = STATE(2421), + [sym__while] = STATE(2421), + [sym_livewire] = STATE(2435), + [sym__persist] = STATE(2420), + [sym__teleport] = STATE(2420), + [sym__volt] = STATE(2420), + [aux_sym__directive_body] = STATE(252), + [sym_text] = STATE(2415), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3201), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3203), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3205), + [anon_sym_ATphp] = ACTIONS(3207), + [aux_sym_attribute_token1] = ACTIONS(3209), + [aux_sym__inline_directive_token1] = ACTIONS(3211), + [anon_sym_ATfragment] = ACTIONS(3213), + [anon_sym_ATsection] = ACTIONS(3215), + [anon_sym_ATonce] = ACTIONS(3217), + [anon_sym_ATendonce] = ACTIONS(7385), + [anon_sym_ATverbatim] = ACTIONS(3221), + [anon_sym_ATpush] = ACTIONS(3223), + [anon_sym_ATpushOnce] = ACTIONS(3225), + [anon_sym_ATpushIf] = ACTIONS(3227), + [anon_sym_ATprepend] = ACTIONS(3229), + [anon_sym_ATprependOnce] = ACTIONS(3231), + [anon_sym_ATif] = ACTIONS(3233), + [anon_sym_ATunless] = ACTIONS(3235), + [anon_sym_ATisset] = ACTIONS(3237), + [anon_sym_ATempty] = ACTIONS(3239), + [anon_sym_ATauth] = ACTIONS(3241), + [anon_sym_ATguest] = ACTIONS(3243), + [anon_sym_ATproduction] = ACTIONS(3245), + [anon_sym_ATenv] = ACTIONS(3247), + [anon_sym_AThasSection] = ACTIONS(3249), + [anon_sym_ATsectionMissing] = ACTIONS(3251), + [anon_sym_ATerror] = ACTIONS(3253), + [anon_sym_ATcan] = ACTIONS(3255), + [anon_sym_ATcannot] = ACTIONS(3257), + [anon_sym_ATcanany] = ACTIONS(3259), + [aux_sym__custom_token1] = ACTIONS(3261), + [aux_sym__custom_token2] = ACTIONS(3263), + [anon_sym_ATswitch] = ACTIONS(3265), + [aux_sym_loop_operator_token1] = ACTIONS(3267), + [anon_sym_ATfor] = ACTIONS(3269), + [anon_sym_ATforeach] = ACTIONS(3271), + [anon_sym_ATforelse] = ACTIONS(3273), + [anon_sym_ATwhile] = ACTIONS(3275), + [anon_sym_ATpersist] = ACTIONS(3277), + [anon_sym_ATteleport] = ACTIONS(3279), + [anon_sym_ATvolt] = ACTIONS(3281), + [aux_sym_text_token1] = ACTIONS(3283), + [aux_sym_text_token2] = ACTIONS(3283), + [aux_sym_text_token3] = ACTIONS(3285), + }, + [471] = { + [sym__definition] = STATE(1665), + [sym_comment] = STATE(471), + [sym_keyword] = STATE(1439), + [sym_php_statement] = STATE(1439), + [sym__escaped] = STATE(1438), + [sym__unescaped] = STATE(1438), + [sym__raw] = STATE(1438), + [sym__inline_raw] = STATE(1437), + [sym__multi_line_raw] = STATE(1437), + [sym_attribute] = STATE(1439), + [sym__inline_directive] = STATE(1439), + [sym__nested_directive] = STATE(1439), + [sym_fragment] = STATE(1436), + [sym_section] = STATE(1436), + [sym_once] = STATE(1436), + [sym_verbatim] = STATE(1436), + [sym_stack] = STATE(1436), + [sym__push] = STATE(1435), + [sym__pushOnce] = STATE(1435), + [sym__pushIf] = STATE(1435), + [sym__prepend] = STATE(1435), + [sym__prependOnce] = STATE(1435), + [sym_conditional] = STATE(1436), + [sym__if] = STATE(1434), + [sym__unless] = STATE(1434), + [sym__isset] = STATE(1434), + [sym__empty] = STATE(1434), + [sym__auth] = STATE(1434), + [sym__guest] = STATE(1434), + [sym__production] = STATE(1434), + [sym__env] = STATE(1434), + [sym__hasSection] = STATE(1434), + [sym__sectionMissing] = STATE(1434), + [sym__error] = STATE(1434), + [sym__can] = STATE(1434), + [sym__cannot] = STATE(1434), + [sym__canany] = STATE(1434), + [sym__custom] = STATE(1434), + [sym_switch] = STATE(1436), + [sym_loop] = STATE(1436), + [sym_loop_operator] = STATE(1439), + [sym__for] = STATE(1433), + [sym__foreach] = STATE(1433), + [sym__forelse] = STATE(1433), + [sym__while] = STATE(1433), + [sym_livewire] = STATE(1436), + [sym__persist] = STATE(1432), + [sym__teleport] = STATE(1432), + [sym__volt] = STATE(1432), + [aux_sym__directive_body] = STATE(390), + [sym_text] = STATE(1431), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(6421), + [anon_sym_LBRACE_LBRACE] = ACTIONS(6423), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(6425), + [anon_sym_ATphp] = ACTIONS(6427), + [aux_sym_attribute_token1] = ACTIONS(6429), + [aux_sym__inline_directive_token1] = ACTIONS(6431), + [anon_sym_ATfragment] = ACTIONS(6433), + [anon_sym_ATsection] = ACTIONS(6435), + [anon_sym_ATonce] = ACTIONS(6437), + [anon_sym_ATverbatim] = ACTIONS(6439), + [anon_sym_ATpush] = ACTIONS(6441), + [anon_sym_ATpushOnce] = ACTIONS(6443), + [anon_sym_ATpushIf] = ACTIONS(6445), + [anon_sym_ATprepend] = ACTIONS(6447), + [anon_sym_ATprependOnce] = ACTIONS(6449), + [anon_sym_ATendPrependOnce] = ACTIONS(3753), + [anon_sym_ATif] = ACTIONS(6451), + [anon_sym_ATunless] = ACTIONS(6453), + [anon_sym_ATisset] = ACTIONS(6455), + [anon_sym_ATempty] = ACTIONS(6457), + [anon_sym_ATauth] = ACTIONS(6459), + [anon_sym_ATguest] = ACTIONS(6461), + [anon_sym_ATproduction] = ACTIONS(6463), + [anon_sym_ATenv] = ACTIONS(6465), + [anon_sym_AThasSection] = ACTIONS(6467), + [anon_sym_ATsectionMissing] = ACTIONS(6469), + [anon_sym_ATerror] = ACTIONS(6471), + [anon_sym_ATcan] = ACTIONS(6473), + [anon_sym_ATcannot] = ACTIONS(6475), + [anon_sym_ATcanany] = ACTIONS(6477), + [aux_sym__custom_token1] = ACTIONS(6479), + [aux_sym__custom_token2] = ACTIONS(6481), + [anon_sym_ATswitch] = ACTIONS(6483), + [aux_sym_loop_operator_token1] = ACTIONS(6485), + [anon_sym_ATfor] = ACTIONS(6487), + [anon_sym_ATforeach] = ACTIONS(6489), + [anon_sym_ATforelse] = ACTIONS(6491), + [anon_sym_ATwhile] = ACTIONS(6493), + [anon_sym_ATpersist] = ACTIONS(6495), + [anon_sym_ATteleport] = ACTIONS(6497), + [anon_sym_ATvolt] = ACTIONS(6499), + [aux_sym_text_token1] = ACTIONS(6501), + [aux_sym_text_token2] = ACTIONS(6501), + [aux_sym_text_token3] = ACTIONS(6503), + }, + [472] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(472), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(7387), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [473] = { + [sym__definition] = STATE(2399), + [sym_comment] = STATE(473), + [sym_keyword] = STATE(1508), + [sym_php_statement] = STATE(1508), + [sym__escaped] = STATE(2342), + [sym__unescaped] = STATE(2342), + [sym__raw] = STATE(2342), + [sym__inline_raw] = STATE(2124), + [sym__multi_line_raw] = STATE(2124), + [sym_attribute] = STATE(1508), + [sym__inline_directive] = STATE(1508), + [sym__nested_directive] = STATE(1508), + [sym_fragment] = STATE(2265), + [sym_section] = STATE(2265), + [sym_once] = STATE(2265), + [sym_verbatim] = STATE(2265), + [sym_stack] = STATE(2265), + [sym__push] = STATE(2266), + [sym__pushOnce] = STATE(2266), + [sym__pushIf] = STATE(2266), + [sym__prepend] = STATE(2266), + [sym__prependOnce] = STATE(2266), + [sym_conditional] = STATE(2265), + [sym__if] = STATE(2267), + [sym__unless] = STATE(2267), + [sym__isset] = STATE(2267), + [sym__empty] = STATE(2267), + [sym__auth] = STATE(2267), + [sym__guest] = STATE(2267), + [sym__production] = STATE(2267), + [sym__env] = STATE(2267), + [sym__hasSection] = STATE(2267), + [sym__sectionMissing] = STATE(2267), + [sym__error] = STATE(2267), + [sym__can] = STATE(2267), + [sym__cannot] = STATE(2267), + [sym__canany] = STATE(2267), + [sym__custom] = STATE(2267), + [sym_switch] = STATE(2265), + [sym_loop] = STATE(2265), + [sym_loop_operator] = STATE(1508), + [sym__for] = STATE(2271), + [sym__foreach] = STATE(2271), + [sym__forelse] = STATE(2271), + [sym__while] = STATE(2271), + [sym_livewire] = STATE(2265), + [sym__persist] = STATE(2273), + [sym__teleport] = STATE(2273), + [sym__volt] = STATE(2273), + [aux_sym__directive_body] = STATE(228), + [sym_text] = STATE(2274), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3115), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3117), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3119), + [anon_sym_ATphp] = ACTIONS(3121), + [aux_sym_attribute_token1] = ACTIONS(3123), + [aux_sym__inline_directive_token1] = ACTIONS(3125), + [anon_sym_ATfragment] = ACTIONS(3127), + [anon_sym_ATsection] = ACTIONS(3129), + [anon_sym_ATonce] = ACTIONS(3131), + [anon_sym_ATverbatim] = ACTIONS(3133), + [anon_sym_ATendverbatim] = ACTIONS(7389), + [anon_sym_ATpush] = ACTIONS(3137), + [anon_sym_ATpushOnce] = ACTIONS(3139), + [anon_sym_ATpushIf] = ACTIONS(3141), + [anon_sym_ATprepend] = ACTIONS(3143), + [anon_sym_ATprependOnce] = ACTIONS(3145), + [anon_sym_ATif] = ACTIONS(3147), + [anon_sym_ATunless] = ACTIONS(3149), + [anon_sym_ATisset] = ACTIONS(3151), + [anon_sym_ATempty] = ACTIONS(3153), + [anon_sym_ATauth] = ACTIONS(3155), + [anon_sym_ATguest] = ACTIONS(3157), + [anon_sym_ATproduction] = ACTIONS(3159), + [anon_sym_ATenv] = ACTIONS(3161), + [anon_sym_AThasSection] = ACTIONS(3163), + [anon_sym_ATsectionMissing] = ACTIONS(3165), + [anon_sym_ATerror] = ACTIONS(3167), + [anon_sym_ATcan] = ACTIONS(3169), + [anon_sym_ATcannot] = ACTIONS(3171), + [anon_sym_ATcanany] = ACTIONS(3173), + [aux_sym__custom_token1] = ACTIONS(3175), + [aux_sym__custom_token2] = ACTIONS(3177), + [anon_sym_ATswitch] = ACTIONS(3179), + [aux_sym_loop_operator_token1] = ACTIONS(3181), + [anon_sym_ATfor] = ACTIONS(3183), + [anon_sym_ATforeach] = ACTIONS(3185), + [anon_sym_ATforelse] = ACTIONS(3187), + [anon_sym_ATwhile] = ACTIONS(3189), + [anon_sym_ATpersist] = ACTIONS(3191), + [anon_sym_ATteleport] = ACTIONS(3193), + [anon_sym_ATvolt] = ACTIONS(3195), + [aux_sym_text_token1] = ACTIONS(3197), + [aux_sym_text_token2] = ACTIONS(3197), + [aux_sym_text_token3] = ACTIONS(3199), + }, + [474] = { + [sym__definition] = STATE(2443), + [sym_comment] = STATE(474), + [sym_keyword] = STATE(2136), + [sym_php_statement] = STATE(2136), + [sym__escaped] = STATE(2137), + [sym__unescaped] = STATE(2137), + [sym__raw] = STATE(2137), + [sym__inline_raw] = STATE(2138), + [sym__multi_line_raw] = STATE(2138), + [sym_attribute] = STATE(2136), + [sym__inline_directive] = STATE(2136), + [sym__nested_directive] = STATE(2136), + [sym_fragment] = STATE(2139), + [sym_section] = STATE(2139), + [sym_once] = STATE(2139), + [sym_verbatim] = STATE(2139), + [sym_stack] = STATE(2139), + [sym__push] = STATE(2140), + [sym__pushOnce] = STATE(2140), + [sym__pushIf] = STATE(2140), + [sym__prepend] = STATE(2140), + [sym__prependOnce] = STATE(2140), + [sym_conditional] = STATE(2139), + [sym__if] = STATE(2141), + [sym__unless] = STATE(2141), + [sym__isset] = STATE(2141), + [sym__empty] = STATE(2141), + [sym__auth] = STATE(2141), + [sym__guest] = STATE(2141), + [sym__production] = STATE(2141), + [sym__env] = STATE(2141), + [sym__hasSection] = STATE(2141), + [sym__sectionMissing] = STATE(2141), + [sym__error] = STATE(2141), + [sym__can] = STATE(2141), + [sym__cannot] = STATE(2141), + [sym__canany] = STATE(2141), + [sym__custom] = STATE(2141), + [sym_switch] = STATE(2139), + [sym_loop] = STATE(2139), + [sym_loop_operator] = STATE(2136), + [sym__for] = STATE(2142), + [sym__foreach] = STATE(2142), + [sym__forelse] = STATE(2142), + [sym__while] = STATE(2142), + [sym_livewire] = STATE(2139), + [sym__persist] = STATE(2143), + [sym__teleport] = STATE(2143), + [sym__volt] = STATE(2143), + [sym_text] = STATE(2144), + [aux_sym_blade_repeat1] = STATE(457), + [anon_sym_LBRACE_LBRACE_DASH_DASH] = ACTIONS(3), + [aux_sym_keyword_token1] = ACTIONS(3029), + [anon_sym_LBRACE_LBRACE] = ACTIONS(3031), + [anon_sym_LBRACE_BANG_BANG] = ACTIONS(3033), + [anon_sym_ATphp] = ACTIONS(3035), + [aux_sym_attribute_token1] = ACTIONS(3037), + [aux_sym__inline_directive_token1] = ACTIONS(3039), + [anon_sym_ATfragment] = ACTIONS(3041), + [anon_sym_ATsection] = ACTIONS(3043), + [anon_sym_ATonce] = ACTIONS(3045), + [anon_sym_ATverbatim] = ACTIONS(3047), + [anon_sym_ATpush] = ACTIONS(3049), + [anon_sym_ATpushOnce] = ACTIONS(3051), + [anon_sym_ATpushIf] = ACTIONS(3053), + [anon_sym_ATprepend] = ACTIONS(3055), + [anon_sym_ATprependOnce] = ACTIONS(3057), + [anon_sym_ATif] = ACTIONS(3059), + [anon_sym_ATunless] = ACTIONS(3061), + [anon_sym_ATisset] = ACTIONS(3063), + [anon_sym_ATempty] = ACTIONS(3065), + [anon_sym_ATauth] = ACTIONS(3067), + [anon_sym_ATguest] = ACTIONS(3069), + [anon_sym_ATproduction] = ACTIONS(3071), + [anon_sym_ATenv] = ACTIONS(3073), + [anon_sym_AThasSection] = ACTIONS(3075), + [anon_sym_ATsectionMissing] = ACTIONS(3077), + [anon_sym_ATerror] = ACTIONS(3079), + [anon_sym_ATcan] = ACTIONS(3081), + [anon_sym_ATcannot] = ACTIONS(3083), + [anon_sym_ATcanany] = ACTIONS(3085), + [aux_sym__custom_token1] = ACTIONS(3087), + [aux_sym__custom_token2] = ACTIONS(3089), + [anon_sym_ATswitch] = ACTIONS(3091), + [anon_sym_ATendswitch] = ACTIONS(7391), + [aux_sym_loop_operator_token1] = ACTIONS(3095), + [anon_sym_ATfor] = ACTIONS(3097), + [anon_sym_ATforeach] = ACTIONS(3099), + [anon_sym_ATforelse] = ACTIONS(3101), + [anon_sym_ATwhile] = ACTIONS(3103), + [anon_sym_ATpersist] = ACTIONS(3105), + [anon_sym_ATteleport] = ACTIONS(3107), + [anon_sym_ATvolt] = ACTIONS(3109), + [aux_sym_text_token1] = ACTIONS(3111), + [aux_sym_text_token2] = ACTIONS(3111), + [aux_sym_text_token3] = ACTIONS(3113), }, }; @@ -56848,15 +65859,15 @@ static const uint16_t ts_small_parse_table[] = { [0] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(430), 1, + STATE(475), 1, sym_comment, - STATE(3783), 1, + STATE(4115), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56864,11 +65875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56882,7 +65894,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -56891,6 +65902,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -56901,18 +65915,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63] = 7, + [66] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(431), 1, + STATE(476), 1, sym_comment, - STATE(3705), 1, + STATE(4199), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56920,11 +65934,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56947,6 +65962,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -56957,18 +65974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [126] = 7, + [132] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(432), 1, + STATE(477), 1, sym_comment, - STATE(3619), 1, + STATE(4255), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -56976,11 +65993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -56994,15 +66012,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57013,18 +66033,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [189] = 7, + [198] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(433), 1, + STATE(478), 1, sym_comment, - STATE(3522), 1, + STATE(4283), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57032,11 +66052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57049,16 +66070,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57069,18 +66092,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [252] = 7, + [264] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(434), 1, + STATE(479), 1, sym_comment, - STATE(3667), 1, + STATE(4227), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57088,11 +66111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57107,6 +66131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -57114,7 +66139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57125,18 +66151,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [315] = 7, + [330] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(435), 1, + STATE(480), 1, sym_comment, - STATE(3822), 1, + STATE(4563), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57144,11 +66170,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57161,16 +66188,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57181,18 +66210,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [378] = 7, + [396] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(436), 1, + STATE(481), 1, sym_comment, - STATE(3622), 1, + STATE(4591), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57200,11 +66229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57220,14 +66250,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -57237,18 +66269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [441] = 7, + [462] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(437), 1, + STATE(482), 1, sym_comment, - STATE(3445), 1, + STATE(4311), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57256,11 +66288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57273,16 +66306,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57293,18 +66328,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [504] = 7, + [528] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(438), 1, + STATE(483), 1, sym_comment, - STATE(3747), 1, + STATE(4171), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57312,11 +66347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57331,7 +66367,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -57339,6 +66374,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57349,18 +66387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [567] = 7, + [594] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(439), 1, + STATE(484), 1, sym_comment, - STATE(3857), 1, + STATE(4059), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57368,11 +66406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57385,7 +66424,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -57395,7 +66433,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -57405,16 +66446,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [630] = 6, + [660] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(440), 1, - sym_comment, - STATE(953), 1, + STATE(77), 1, sym__directive_parameter, - ACTIONS(6252), 11, + STATE(485), 1, + sym_comment, + STATE(4143), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57422,11 +66465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57440,7 +66484,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -57449,6 +66492,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57459,16 +66505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [690] = 6, + [726] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6262), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(441), 1, - sym_comment, - STATE(969), 1, + STATE(77), 1, sym__directive_parameter, - ACTIONS(6260), 11, + STATE(486), 1, + sym_comment, + STATE(4535), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57476,11 +66524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57503,6 +66552,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57513,16 +66564,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [750] = 6, + [792] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(442), 1, - sym_comment, - STATE(587), 1, + STATE(77), 1, sym__directive_parameter, - ACTIONS(6260), 11, + STATE(487), 1, + sym_comment, + STATE(4087), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57530,11 +66583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57549,7 +66603,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -57557,6 +66610,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57567,16 +66623,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [810] = 6, + [858] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7399), 1, anon_sym_LPAREN, - STATE(443), 1, + STATE(488), 1, sym_comment, - STATE(559), 1, + STATE(856), 1, sym__directive_parameter, - ACTIONS(6260), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57584,11 +66640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57601,16 +66658,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57621,16 +66680,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [870] = 6, + [921] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7401), 1, anon_sym_LPAREN, - STATE(444), 1, + STATE(489), 1, sym_comment, - STATE(655), 1, + STATE(887), 1, sym__directive_parameter, - ACTIONS(6260), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57638,11 +66697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57658,13 +66718,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57675,16 +66737,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [930] = 6, + [984] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6268), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(445), 1, + STATE(490), 1, sym_comment, - STATE(1082), 1, + STATE(901), 1, sym__directive_parameter, - ACTIONS(6260), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57692,11 +66754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57713,12 +66776,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57729,16 +66794,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [990] = 6, + [1047] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6270), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(446), 1, + STATE(491), 1, sym_comment, - STATE(830), 1, + STATE(742), 1, sym__directive_parameter, - ACTIONS(6252), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57746,11 +66811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57763,16 +66829,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57783,16 +66851,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1050] = 6, + [1110] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(447), 1, + STATE(492), 1, sym_comment, - STATE(723), 1, + STATE(891), 1, sym__directive_parameter, - ACTIONS(6260), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57800,11 +66868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57826,7 +66895,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57837,16 +66908,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1110] = 6, + [1173] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(448), 1, + STATE(493), 1, sym_comment, - STATE(683), 1, + STATE(972), 1, sym__directive_parameter, - ACTIONS(6252), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57854,11 +66925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57880,8 +66952,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -57891,16 +66965,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1170] = 6, + [1236] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(449), 1, + STATE(494), 1, sym_comment, - STATE(1023), 1, + STATE(540), 1, sym__directive_parameter, - ACTIONS(6252), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57908,11 +66982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57925,8 +67000,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -57935,6 +67010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57945,16 +67022,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1230] = 6, + [1299] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(450), 1, + STATE(495), 1, sym_comment, - STATE(517), 1, + STATE(1284), 1, sym__directive_parameter, - ACTIONS(6260), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -57962,11 +67039,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -57980,8 +67058,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -57989,6 +67067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -57999,16 +67079,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1290] = 6, + [1362] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(451), 1, + STATE(496), 1, sym_comment, - STATE(480), 1, + STATE(603), 1, sym__directive_parameter, - ACTIONS(6260), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58016,11 +67096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58033,6 +67114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -58042,8 +67124,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -58053,16 +67136,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1350] = 6, + [1425] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(452), 1, + STATE(497), 1, sym_comment, - STATE(753), 1, + STATE(1042), 1, sym__directive_parameter, - ACTIONS(6252), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58070,11 +67153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58096,8 +67180,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -58107,16 +67193,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1410] = 6, + [1488] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6270), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(453), 1, + STATE(498), 1, sym_comment, - STATE(627), 1, + STATE(1036), 1, sym__directive_parameter, - ACTIONS(6260), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58124,11 +67210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58144,13 +67231,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58161,16 +67250,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1470] = 6, + [1551] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(454), 1, + STATE(499), 1, sym_comment, - STATE(657), 1, + STATE(830), 1, sym__directive_parameter, - ACTIONS(6260), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58178,11 +67267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58195,7 +67285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -58205,6 +67294,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58215,16 +67307,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1530] = 6, + [1614] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(455), 1, + STATE(500), 1, sym_comment, - STATE(820), 1, + STATE(741), 1, sym__directive_parameter, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58232,11 +67324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58255,11 +67348,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -58269,16 +67364,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1590] = 6, + [1677] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(456), 1, + STATE(501), 1, sym_comment, - STATE(1086), 1, + STATE(817), 1, sym__directive_parameter, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58286,11 +67381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58303,7 +67399,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -58313,6 +67408,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58323,16 +67421,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1650] = 6, + [1740] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6262), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(457), 1, + STATE(502), 1, sym_comment, - STATE(496), 1, + STATE(757), 1, sym__directive_parameter, - ACTIONS(6252), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58340,11 +67438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58362,11 +67461,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58377,16 +67478,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1710] = 6, + [1803] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6268), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(458), 1, + STATE(503), 1, sym_comment, - STATE(579), 1, + STATE(1089), 1, sym__directive_parameter, - ACTIONS(6252), 11, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58394,11 +67495,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58411,16 +67513,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58431,16 +67535,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1770] = 6, + [1866] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7401), 1, anon_sym_LPAREN, - STATE(459), 1, + STATE(504), 1, sym_comment, - STATE(887), 1, + STATE(1263), 1, sym__directive_parameter, - ACTIONS(6252), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -58448,11 +67552,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58467,14 +67572,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58485,29 +67592,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1830] = 7, + [1929] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__directive_parameter, - STATE(460), 1, + STATE(505), 1, sym_comment, - STATE(3500), 1, - sym__if_statement_directive_body, - ACTIONS(6252), 10, + STATE(963), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58518,6 +67625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -58528,40 +67636,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1891] = 7, + [1992] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__directive_parameter, - STATE(461), 1, + STATE(506), 1, sym_comment, - STATE(3958), 1, - sym__if_statement_directive_body, - ACTIONS(6252), 10, + STATE(684), 1, + sym__directive_parameter, + ACTIONS(7405), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58571,8 +67681,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -58580,9 +67690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58593,29 +67706,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [1952] = 7, + [2055] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7399), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__directive_parameter, - STATE(462), 1, + STATE(507), 1, sym_comment, - STATE(3931), 1, - sym__if_statement_directive_body, - ACTIONS(6252), 10, + STATE(1095), 1, + sym__directive_parameter, + ACTIONS(7405), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58625,18 +67738,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58647,30 +67763,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2013] = 7, + [2118] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__directive_parameter, - STATE(463), 1, + STATE(508), 1, sym_comment, - STATE(3633), 1, - sym__if_statement_directive_body, - ACTIONS(6252), 10, + STATE(1347), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, - ts_builtin_sym_end, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58681,6 +67796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -58688,9 +67804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58701,29 +67820,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2074] = 7, + [2181] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7425), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__directive_parameter, - STATE(464), 1, + STATE(509), 1, sym_comment, - STATE(3896), 1, - sym__if_statement_directive_body, - ACTIONS(6252), 10, + STATE(621), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58734,17 +67853,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58755,29 +67877,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2135] = 7, + [2244] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__directive_parameter, - STATE(465), 1, + STATE(510), 1, sym_comment, - STATE(3983), 1, - sym__if_statement_directive_body, - ACTIONS(6252), 10, + STATE(1155), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58786,10 +67908,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -58799,6 +67922,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58809,29 +67934,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2196] = 7, + [2307] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7425), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__directive_parameter, - STATE(466), 1, + STATE(511), 1, sym_comment, - STATE(3941), 1, - sym__if_statement_directive_body, - ACTIONS(6252), 10, + STATE(1161), 1, + sym__directive_parameter, + ACTIONS(7405), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58839,20 +67964,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, 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_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -58863,29 +67991,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2257] = 7, + [2370] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__directive_parameter, - STATE(467), 1, + STATE(512), 1, sym_comment, - STATE(3584), 1, - sym__if_statement_directive_body, - ACTIONS(6252), 10, + STATE(612), 1, + sym__directive_parameter, + ACTIONS(7405), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58896,9 +68024,11 @@ static const uint16_t ts_small_parse_table[] = { 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_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -58906,10 +68036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -58917,29 +68048,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2318] = 7, + [2433] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(62), 1, - sym__directive_parameter, - STATE(468), 1, + STATE(513), 1, sym_comment, - STATE(3541), 1, - sym__if_statement_directive_body, - ACTIONS(6252), 10, + STATE(1220), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -58950,8 +68081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -58960,40 +68093,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2379] = 7, + [2496] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(469), 1, + STATE(514), 1, sym_comment, - STATE(3461), 1, + STATE(3975), 1, sym__if_statement_directive_body, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59014,45 +68149,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2440] = 7, + [2560] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(470), 1, + STATE(515), 1, sym_comment, - STATE(3422), 1, + STATE(4479), 1, sym__if_statement_directive_body, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -59068,6 +68207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59075,39 +68216,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2501] = 7, + [2624] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(471), 1, + STATE(516), 1, sym_comment, - STATE(3717), 1, + STATE(4675), 1, sym__if_statement_directive_body, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, + ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -59123,6 +68264,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59133,29 +68276,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2562] = 7, + [2688] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(472), 1, + STATE(517), 1, sym_comment, - STATE(3385), 1, + STATE(4618), 1, sym__if_statement_directive_body, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59163,6 +68307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -59176,6 +68321,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59184,38 +68331,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2623] = 7, + [2752] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(473), 1, + STATE(518), 1, sym_comment, - STATE(3347), 1, + STATE(4646), 1, sym__if_statement_directive_body, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -59230,6 +68378,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59239,31 +68389,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [2684] = 7, + [2816] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(474), 1, + STATE(519), 1, sym_comment, - STATE(3368), 1, + STATE(4339), 1, sym__if_statement_directive_body, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59271,10 +68421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -59285,6 +68435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59295,29 +68447,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2745] = 7, + [2880] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(475), 1, + STATE(520), 1, sym_comment, - STATE(3313), 1, + STATE(4367), 1, sym__if_statement_directive_body, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59327,6 +68480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -59338,9 +68492,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -59349,39 +68504,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2806] = 7, + [2944] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(476), 1, + STATE(521), 1, sym_comment, - STATE(3793), 1, + STATE(4395), 1, sym__if_statement_directive_body, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -59393,6 +68549,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59403,30 +68561,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2867] = 7, + [3008] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(477), 1, + STATE(522), 1, sym_comment, - STATE(3260), 1, + STATE(4423), 1, sym__if_statement_directive_body, - ACTIONS(6252), 11, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 30, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59435,6 +68593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -59447,9 +68606,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -59457,37 +68618,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2928] = 7, + [3072] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(62), 1, + STATE(77), 1, sym__directive_parameter, - STATE(478), 1, + STATE(523), 1, sym_comment, - STATE(3294), 1, + STATE(4451), 1, sym__if_statement_directive_body, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -59501,6 +68663,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59511,24 +68675,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [2989] = 4, + [3136] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(479), 1, + ACTIONS(7397), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__directive_parameter, + STATE(524), 1, sym_comment, - ACTIONS(6280), 11, + STATE(4031), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59539,21 +68709,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -59561,24 +68732,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3043] = 4, + [3200] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(480), 1, + ACTIONS(7397), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__directive_parameter, + STATE(525), 1, sym_comment, - ACTIONS(6284), 11, + STATE(4003), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59589,7 +68766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -59600,35 +68776,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3097] = 4, + [3264] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(481), 1, + ACTIONS(7397), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__directive_parameter, + STATE(526), 1, sym_comment, - ACTIONS(6288), 11, + STATE(3947), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59639,46 +68823,53 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3151] = 4, + [3328] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(482), 1, + ACTIONS(7397), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__directive_parameter, + STATE(527), 1, sym_comment, - ACTIONS(6292), 11, + STATE(3919), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59689,18 +68880,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59708,27 +68899,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3205] = 4, + [3392] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(483), 1, + ACTIONS(7397), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__directive_parameter, + STATE(528), 1, sym_comment, - ACTIONS(6296), 11, + STATE(3891), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59739,18 +68937,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59759,26 +68957,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3259] = 4, + [3456] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(484), 1, + ACTIONS(7397), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__directive_parameter, + STATE(529), 1, sym_comment, - ACTIONS(6300), 11, + STATE(3863), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59789,18 +68994,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59810,25 +69015,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [3313] = 4, + [3520] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(485), 1, + ACTIONS(7397), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__directive_parameter, + STATE(530), 1, sym_comment, - ACTIONS(6304), 11, + STATE(3835), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59839,20 +69051,21 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -59861,24 +69074,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3367] = 4, + [3584] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(486), 1, + ACTIONS(7397), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__directive_parameter, + STATE(531), 1, sym_comment, - ACTIONS(6308), 11, + STATE(3807), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7393), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59889,18 +69109,75 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [3648] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_LPAREN, + STATE(77), 1, + sym__directive_parameter, + STATE(532), 1, + sym_comment, + STATE(4507), 1, + sym__if_statement_directive_body, + ACTIONS(7395), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7393), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59911,12 +69188,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3421] = 4, + [3712] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(487), 1, + STATE(533), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59924,11 +69201,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59946,11 +69224,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -59961,12 +69241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3475] = 4, + [3769] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(488), 1, + STATE(534), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -59974,11 +69254,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -59995,12 +69276,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60011,12 +69294,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3529] = 4, + [3826] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(489), 1, + STATE(535), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60024,11 +69307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60051,6 +69335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60061,12 +69347,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3583] = 4, + [3883] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(490), 1, + STATE(536), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60074,11 +69360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60095,12 +69382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60111,12 +69400,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3637] = 4, + [3940] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(491), 1, + STATE(537), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60124,11 +69413,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 32, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60151,6 +69441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60161,12 +69453,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3691] = 4, + [3997] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(492), 1, + STATE(538), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60174,11 +69466,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60195,12 +69488,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60211,12 +69506,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3745] = 4, + [4054] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(493), 1, + STATE(539), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(7449), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60224,11 +69519,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60242,15 +69538,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60261,12 +69559,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3799] = 4, + [4111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(494), 1, + STATE(540), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60274,11 +69572,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60292,15 +69591,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60311,12 +69612,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3853] = 4, + [4168] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(495), 1, + STATE(541), 1, sym_comment, - ACTIONS(6340), 11, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60324,11 +69625,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6338), 32, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60343,14 +69645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60361,12 +69665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3907] = 4, + [4225] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(496), 1, + STATE(542), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60374,11 +69678,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60401,6 +69706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60411,12 +69718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [3961] = 4, + [4282] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(497), 1, + STATE(543), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60424,11 +69731,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60451,6 +69759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60461,12 +69771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4015] = 4, + [4339] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(498), 1, + STATE(544), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60474,11 +69784,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60501,6 +69812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60511,12 +69824,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4069] = 4, + [4396] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(499), 1, + STATE(545), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7473), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60524,11 +69837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60545,12 +69859,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60561,12 +69877,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4123] = 4, + [4453] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(500), 1, + STATE(546), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60574,11 +69890,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60601,6 +69918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60611,12 +69930,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4177] = 4, + [4510] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(501), 1, + STATE(547), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60624,11 +69943,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60651,6 +69971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60661,12 +69983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4231] = 4, + [4567] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(502), 1, + STATE(548), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60674,11 +69996,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60695,12 +70018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60711,12 +70036,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4285] = 4, + [4624] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(503), 1, + STATE(549), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60724,11 +70049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60751,6 +70077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60761,12 +70089,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4339] = 4, + [4681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(504), 1, + STATE(550), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60774,11 +70102,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60801,6 +70130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60811,12 +70142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4393] = 4, + [4738] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(505), 1, + STATE(551), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60824,11 +70155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60845,12 +70177,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60861,12 +70195,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4447] = 4, + [4795] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(506), 1, + STATE(552), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60874,11 +70208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60901,6 +70236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60911,12 +70248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4501] = 4, + [4852] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(507), 1, + STATE(553), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60924,11 +70261,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -60951,6 +70289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -60961,12 +70301,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4555] = 4, + [4909] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(508), 1, + STATE(554), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -60974,11 +70314,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61001,6 +70342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61011,12 +70354,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4609] = 4, + [4966] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(509), 1, + STATE(555), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61024,11 +70367,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 32, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61051,6 +70395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61061,12 +70407,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4663] = 4, + [5023] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(510), 1, + STATE(556), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61074,11 +70420,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61101,6 +70448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61111,12 +70460,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4717] = 4, + [5080] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(511), 1, + STATE(557), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61124,11 +70473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61151,6 +70501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61161,12 +70513,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4771] = 4, + [5137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(512), 1, + STATE(558), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61174,11 +70526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61201,6 +70554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61211,12 +70566,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4825] = 4, + [5194] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(513), 1, + STATE(559), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61224,11 +70579,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61245,12 +70601,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61261,12 +70619,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4879] = 4, + [5251] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(514), 1, + STATE(560), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7533), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61274,11 +70632,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61301,6 +70660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61311,12 +70672,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4933] = 4, + [5308] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(515), 1, + STATE(561), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61324,11 +70685,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61351,6 +70713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61361,12 +70725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [4987] = 4, + [5365] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(516), 1, + STATE(562), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61374,11 +70738,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61401,6 +70766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61411,12 +70778,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5041] = 4, + [5422] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(517), 1, + STATE(563), 1, sym_comment, - ACTIONS(6284), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61424,11 +70791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61442,15 +70810,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61461,12 +70831,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5095] = 4, + [5479] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(518), 1, + STATE(564), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61474,11 +70844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61501,6 +70872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61511,12 +70884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5149] = 4, + [5536] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(519), 1, + STATE(565), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61524,11 +70897,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61544,13 +70918,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61561,12 +70937,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5203] = 4, + [5593] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(520), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(566), 1, sym_comment, - ACTIONS(6432), 11, + STATE(2508), 1, + sym__directive_parameter, + ACTIONS(7395), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7393), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [5654] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(567), 1, + sym_comment, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61574,11 +71005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61601,6 +71033,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61611,12 +71045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5257] = 4, + [5711] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(521), 1, + STATE(568), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61624,11 +71058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61651,6 +71086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61661,12 +71098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5311] = 4, + [5768] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(522), 1, + STATE(569), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61674,11 +71111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61701,6 +71139,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61711,12 +71151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5365] = 4, + [5825] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(523), 1, + STATE(570), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61724,11 +71164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61751,6 +71192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61761,12 +71204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5419] = 4, + [5882] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(524), 1, + STATE(571), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61774,11 +71217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61801,6 +71245,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61811,12 +71257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5473] = 4, + [5939] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(525), 1, + STATE(572), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61824,11 +71270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61851,6 +71298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61861,12 +71310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5527] = 4, + [5996] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(526), 1, + STATE(573), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61874,11 +71323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61901,6 +71351,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61911,12 +71363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5581] = 4, + [6053] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(527), 1, + STATE(574), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61924,11 +71376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -61951,6 +71404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -61961,12 +71416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5635] = 4, + [6110] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(528), 1, + STATE(575), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -61974,11 +71429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62001,6 +71457,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62011,12 +71469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5689] = 4, + [6167] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(529), 1, + STATE(576), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62024,11 +71482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62051,6 +71510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62061,12 +71522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5743] = 4, + [6224] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(530), 1, + STATE(577), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62074,11 +71535,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62101,6 +71563,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62111,12 +71575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5797] = 4, + [6281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(531), 1, + STATE(578), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62124,11 +71588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62151,6 +71616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62161,12 +71628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5851] = 4, + [6338] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(532), 1, + STATE(579), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62174,11 +71641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62195,12 +71663,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62211,12 +71681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5905] = 4, + [6395] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(533), 1, + STATE(580), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62224,11 +71694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62245,12 +71716,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62261,12 +71734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [5959] = 4, + [6452] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(534), 1, + STATE(581), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62274,11 +71747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62295,12 +71769,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62311,12 +71787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6013] = 4, + [6509] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(535), 1, + STATE(582), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7533), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62324,11 +71800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62345,12 +71822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62361,12 +71840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6067] = 4, + [6566] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(536), 1, + STATE(583), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62374,11 +71853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62395,12 +71875,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62411,12 +71893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6121] = 4, + [6623] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(537), 1, + STATE(584), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62424,11 +71906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62445,12 +71928,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62461,12 +71946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6175] = 4, + [6680] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(538), 1, + STATE(585), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62474,11 +71959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62495,12 +71981,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62511,12 +71999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6229] = 4, + [6737] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(539), 1, + STATE(586), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62524,11 +72012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62551,6 +72040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62561,12 +72052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6283] = 4, + [6794] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(540), 1, + STATE(587), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62574,11 +72065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62601,6 +72093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62611,41 +72105,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6337] = 6, + [6851] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, - anon_sym_LPAREN, - STATE(541), 1, + STATE(588), 1, sym_comment, - STATE(2026), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7405), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, 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_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -62653,6 +72146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62663,12 +72158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6395] = 4, + [6908] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(542), 1, + STATE(589), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62676,11 +72171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62703,6 +72199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62713,12 +72211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6449] = 4, + [6965] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(543), 1, + STATE(590), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7599), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62726,11 +72224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62748,11 +72247,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62763,12 +72264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6503] = 4, + [7022] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(544), 1, + STATE(591), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62776,11 +72277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62797,12 +72299,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62813,12 +72317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6557] = 4, + [7079] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(545), 1, + STATE(592), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62826,11 +72330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62847,12 +72352,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62863,12 +72370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6611] = 4, + [7136] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(546), 1, + STATE(593), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62876,11 +72383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62897,12 +72405,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62913,12 +72423,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6665] = 4, + [7193] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(547), 1, + STATE(594), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62926,11 +72436,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62947,12 +72458,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -62963,12 +72476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6719] = 4, + [7250] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(548), 1, + STATE(595), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -62976,11 +72489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -62997,12 +72511,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63013,12 +72529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6773] = 4, + [7307] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(549), 1, + STATE(596), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63026,11 +72542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63043,16 +72560,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63063,12 +72582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6827] = 4, + [7364] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(550), 1, + STATE(597), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63076,11 +72595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63097,12 +72617,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63113,12 +72635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6881] = 4, + [7421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(551), 1, + STATE(598), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63126,11 +72648,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63153,6 +72676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63163,12 +72688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6935] = 4, + [7478] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(552), 1, + STATE(599), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7473), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63176,11 +72701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63203,6 +72729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63213,12 +72741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [6989] = 4, + [7535] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(553), 1, + STATE(600), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63226,11 +72754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63253,6 +72782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63263,12 +72794,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7043] = 4, + [7592] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(554), 1, + STATE(601), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63276,11 +72807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63303,6 +72835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63313,12 +72847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7097] = 4, + [7649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(555), 1, + STATE(602), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63326,11 +72860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63353,6 +72888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63363,12 +72900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7151] = 4, + [7706] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(556), 1, + STATE(603), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63376,11 +72913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63393,16 +72931,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63413,12 +72953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7205] = 4, + [7763] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(557), 1, + STATE(604), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7449), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63426,11 +72966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63453,6 +72994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63463,12 +73006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7259] = 4, + [7820] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(558), 1, + STATE(605), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63476,11 +73019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63503,6 +73047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63513,12 +73059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7313] = 4, + [7877] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(559), 1, + STATE(606), 1, sym_comment, - ACTIONS(6284), 11, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63526,11 +73072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63543,16 +73090,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63563,12 +73112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7367] = 4, + [7934] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(560), 1, + STATE(607), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63576,11 +73125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63603,6 +73153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63613,12 +73165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7421] = 4, + [7991] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(561), 1, + STATE(608), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63626,11 +73178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63653,6 +73206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63663,12 +73218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7475] = 4, + [8048] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(562), 1, + STATE(609), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7607), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63676,11 +73231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63703,6 +73259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63713,12 +73271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7529] = 4, + [8105] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(563), 1, + STATE(610), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63726,11 +73284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63745,14 +73304,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63763,12 +73324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7583] = 4, + [8162] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(564), 1, + STATE(611), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7615), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63776,11 +73337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63803,6 +73365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63813,12 +73377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7637] = 4, + [8219] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(565), 1, + STATE(612), 1, sym_comment, - ACTIONS(6340), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63826,11 +73390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6338), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63845,14 +73410,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63863,12 +73430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7691] = 4, + [8276] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(566), 1, + STATE(613), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63876,11 +73443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63903,6 +73471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63913,12 +73483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7745] = 4, + [8333] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(567), 1, + STATE(614), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63926,11 +73496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -63953,6 +73524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -63963,12 +73536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7799] = 4, + [8390] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(568), 1, + STATE(615), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -63976,11 +73549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 32, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64003,6 +73577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64013,12 +73589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7853] = 4, + [8447] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(569), 1, + STATE(616), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64026,11 +73602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64053,6 +73630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64063,12 +73642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7907] = 4, + [8504] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(570), 1, + STATE(617), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64076,11 +73655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64103,6 +73683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64113,12 +73695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [7961] = 4, + [8561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(571), 1, + STATE(618), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7639), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64126,11 +73708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64153,6 +73736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64163,12 +73748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8015] = 4, + [8618] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(572), 1, + STATE(619), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64176,11 +73761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64203,6 +73789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64213,28 +73801,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8069] = 6, + [8675] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6500), 1, - anon_sym_LPAREN, - STATE(573), 1, + STATE(620), 1, sym_comment, - STATE(2014), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7647), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, - ts_builtin_sym_end, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64245,16 +73830,20 @@ static const uint16_t ts_small_parse_table[] = { 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_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64265,12 +73854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8127] = 4, + [8732] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(574), 1, + STATE(621), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7651), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64278,11 +73867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64305,6 +73895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64315,12 +73907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8181] = 4, + [8789] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(575), 1, + STATE(622), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7599), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64328,11 +73920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64346,15 +73939,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64365,12 +73960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8235] = 4, + [8846] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(576), 1, + STATE(623), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64378,11 +73973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64395,16 +73991,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64415,12 +74013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8289] = 4, + [8903] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(577), 1, + STATE(624), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7655), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64428,11 +74026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64455,6 +74054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64465,12 +74066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8343] = 4, + [8960] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(578), 1, + STATE(625), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64478,11 +74079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64505,6 +74107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64515,12 +74119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8397] = 4, + [9017] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(579), 1, + STATE(626), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7663), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64528,11 +74132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64555,6 +74160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64565,12 +74172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8451] = 4, + [9074] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(580), 1, + STATE(627), 1, sym_comment, - ACTIONS(6340), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64578,111 +74185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6338), 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_ATendisset, - 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, - [8505] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(581), 1, - sym_comment, - ACTIONS(6260), 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(6258), 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_ATendunless, - 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, - [8559] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(582), 1, - sym_comment, - ACTIONS(6328), 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(6326), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64705,6 +74213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64715,12 +74225,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8613] = 4, + [9131] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(583), 1, + STATE(628), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64728,11 +74238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64755,6 +74266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64765,62 +74278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8667] = 4, + [9188] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(584), 1, - sym_comment, - ACTIONS(6392), 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(6390), 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, - [8721] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(585), 1, + STATE(629), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64828,11 +74291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64855,6 +74319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64865,12 +74331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8775] = 4, + [9245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(586), 1, + STATE(630), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64878,11 +74344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64905,6 +74372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64915,12 +74384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8829] = 4, + [9302] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(587), 1, + STATE(631), 1, sym_comment, - ACTIONS(6284), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64928,11 +74397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -64947,14 +74417,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -64965,12 +74437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8883] = 4, + [9359] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(588), 1, + STATE(632), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -64978,11 +74450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65005,6 +74478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65015,12 +74490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8937] = 4, + [9416] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(589), 1, + STATE(633), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65028,11 +74503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65055,6 +74531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65065,12 +74543,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [8991] = 4, + [9473] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(590), 1, + STATE(634), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65078,11 +74556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65105,6 +74584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65115,12 +74596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9045] = 4, + [9530] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(591), 1, + STATE(635), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65128,11 +74609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65155,6 +74637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65165,12 +74649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9099] = 4, + [9587] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(592), 1, + STATE(636), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65178,11 +74662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65205,6 +74690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65215,12 +74702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9153] = 4, + [9644] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(593), 1, + STATE(637), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65228,11 +74715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65255,6 +74743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65265,46 +74755,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9207] = 4, + [9701] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(594), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(638), 1, sym_comment, - ACTIONS(6494), 11, + STATE(2218), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, 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_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65315,12 +74810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9261] = 4, + [9762] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(595), 1, + STATE(639), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65328,11 +74823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65348,13 +74844,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65365,12 +74863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9315] = 4, + [9819] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(596), 1, + STATE(640), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65378,11 +74876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65405,6 +74904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65415,12 +74916,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9369] = 4, + [9876] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(597), 1, + STATE(641), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65428,11 +74929,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65455,6 +74957,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65465,12 +74969,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9423] = 4, + [9933] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(598), 1, + STATE(642), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65478,11 +74982,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65505,6 +75010,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65515,12 +75022,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9477] = 4, + [9990] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(599), 1, + STATE(643), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65528,11 +75035,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65555,6 +75063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65565,12 +75075,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9531] = 4, + [10047] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(600), 1, + STATE(644), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65578,11 +75088,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65598,13 +75109,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65615,12 +75128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9585] = 4, + [10104] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(601), 1, + STATE(645), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65628,11 +75141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65655,6 +75169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65665,12 +75181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9639] = 4, + [10161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(602), 1, + STATE(646), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65678,11 +75194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65705,6 +75222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65715,12 +75234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9693] = 4, + [10218] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(603), 1, + STATE(647), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7533), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65728,11 +75247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65755,6 +75275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65765,12 +75287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9747] = 4, + [10275] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(604), 1, + STATE(648), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65778,11 +75300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65805,6 +75328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65815,12 +75340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9801] = 4, + [10332] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(605), 1, + STATE(649), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65828,11 +75353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65855,6 +75381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65865,12 +75393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9855] = 4, + [10389] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(606), 1, + STATE(650), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65878,11 +75406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65898,13 +75427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65915,12 +75446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9909] = 4, + [10446] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(607), 1, + STATE(651), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -65928,11 +75459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -65948,13 +75480,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -65965,64 +75499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [9963] = 6, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6514), 1, - anon_sym_LPAREN, - STATE(608), 1, - sym_comment, - STATE(1918), 1, - sym__directive_parameter, - ACTIONS(6252), 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, - aux_sym_loop_operator_token1, - anon_sym_ATfor, - aux_sym_text_token1, - aux_sym_text_token2, - ACTIONS(6250), 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_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, - anon_sym_ATbreak, - anon_sym_ATforeach, - anon_sym_ATforelse, - anon_sym_ATwhile, - anon_sym_ATpersist, - anon_sym_ATteleport, - anon_sym_ATvolt, - aux_sym_text_token3, - [10021] = 4, + [10503] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(609), 1, + STATE(652), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66030,11 +75512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66057,6 +75540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66067,12 +75552,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10075] = 4, + [10560] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(610), 1, + STATE(653), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66080,11 +75565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66107,6 +75593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66117,38 +75605,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10129] = 6, + [10617] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, - anon_sym_LPAREN, - STATE(611), 1, + STATE(654), 1, sym_comment, - STATE(1544), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7599), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, 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, @@ -66159,7 +75645,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -66169,12 +75658,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10187] = 4, + [10674] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(612), 1, + STATE(655), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66182,11 +75671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66209,6 +75699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66219,12 +75711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10241] = 4, + [10731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(613), 1, + STATE(656), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66232,11 +75724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66252,13 +75745,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66269,12 +75764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10295] = 4, + [10788] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(614), 1, + STATE(657), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7673), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66282,11 +75777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66303,12 +75799,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66319,27 +75817,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10349] = 6, + [10845] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6522), 1, - anon_sym_LPAREN, - STATE(615), 1, + STATE(658), 1, sym_comment, - STATE(1859), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7677), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66350,19 +75846,22 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -66371,12 +75870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10407] = 4, + [10902] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(616), 1, + STATE(659), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66384,11 +75883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66411,6 +75911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66421,12 +75923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10461] = 4, + [10959] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(617), 1, + STATE(660), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66434,11 +75936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66454,13 +75957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66471,12 +75976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10515] = 4, + [11016] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(618), 1, + STATE(661), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66484,11 +75989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66511,6 +76017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66521,27 +76029,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10569] = 6, + [11073] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + STATE(662), 1, + sym_comment, + ACTIONS(7599), 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, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7597), 34, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [11130] = 6, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7679), 1, anon_sym_LPAREN, - STATE(619), 1, + STATE(663), 1, sym_comment, - STATE(1800), 1, + STATE(2215), 1, sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7395), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66562,6 +76125,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [11191] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(664), 1, + sym_comment, + ACTIONS(7639), 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, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7637), 34, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66571,14 +76189,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [10627] = 4, + [11248] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(620), 1, + STATE(665), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7673), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66586,11 +76203,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7671), 34, + 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_ATendguest, + anon_sym_ATproduction, + anon_sym_ATenv, + anon_sym_AThasSection, + anon_sym_ATsectionMissing, + anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [11305] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(666), 1, + sym_comment, + ACTIONS(7677), 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, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66606,13 +76277,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66623,27 +76296,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10681] = 6, + [11362] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - STATE(621), 1, + STATE(667), 1, sym_comment, - STATE(1101), 1, + STATE(2153), 1, sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66664,23 +76338,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10739] = 4, + [11423] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(622), 1, + STATE(668), 1, + sym_comment, + ACTIONS(7607), 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, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7605), 34, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [11480] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(669), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66688,11 +76417,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66715,6 +76445,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66725,27 +76457,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10793] = 6, + [11537] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, - anon_sym_LPAREN, - STATE(623), 1, + STATE(670), 1, sym_comment, - STATE(1682), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7673), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66756,16 +76486,20 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66773,16 +76507,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10851] = 4, + [11594] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(624), 1, + STATE(671), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7677), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66790,11 +76523,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66817,6 +76551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66827,12 +76563,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10905] = 4, + [11651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(625), 1, + STATE(672), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66840,11 +76576,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66860,14 +76597,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -66877,27 +76616,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [10959] = 6, + [11708] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(626), 1, + STATE(673), 1, sym_comment, - STATE(1623), 1, + STATE(2091), 1, sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66918,23 +76658,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [11017] = 4, + [11769] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(627), 1, + STATE(674), 1, sym_comment, - ACTIONS(6284), 11, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -66942,11 +76684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -66962,13 +76705,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -66979,24 +76724,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11071] = 4, + [11826] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(628), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(675), 1, sym_comment, - ACTIONS(6452), 11, + STATE(2029), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67007,18 +76756,18 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -67027,14 +76776,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11125] = 4, + [11887] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(629), 1, + STATE(676), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7615), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67042,11 +76792,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67064,11 +76815,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -67079,27 +76832,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11179] = 6, + [11944] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(630), 1, + STATE(677), 1, sym_comment, - STATE(1564), 1, + STATE(1967), 1, sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67120,23 +76874,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11237] = 4, + [12005] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(631), 1, + STATE(678), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67144,11 +76900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67164,13 +76921,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -67181,12 +76940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11291] = 4, + [12062] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(632), 1, + STATE(679), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67194,11 +76953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67217,11 +76977,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -67231,12 +76993,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11345] = 4, + [12119] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(633), 1, + STATE(680), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67244,11 +77006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67271,6 +77034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -67281,24 +77046,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11399] = 4, + [12176] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(634), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(681), 1, sym_comment, - ACTIONS(6340), 11, + STATE(1905), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6338), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67309,7 +77078,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -67320,23 +77088,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11453] = 4, + [12237] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(635), 1, + STATE(682), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67344,11 +77114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67366,11 +77137,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -67381,27 +77154,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11507] = 6, + [12294] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, - anon_sym_LPAREN, - STATE(636), 1, + STATE(683), 1, sym_comment, - STATE(1505), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7669), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67412,6 +77183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -67422,23 +77194,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11565] = 4, + [12351] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(637), 1, + STATE(684), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67446,11 +77220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67466,13 +77241,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -67483,24 +77260,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11619] = 4, + [12408] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(638), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(685), 1, sym_comment, - ACTIONS(6520), 11, + STATE(1843), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67511,11 +77292,9 @@ static const uint16_t ts_small_parse_table[] = { 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_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -67523,37 +77302,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11673] = 6, + [12469] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, - anon_sym_LPAREN, - STATE(639), 1, + STATE(686), 1, sym_comment, - STATE(1446), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7473), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67564,20 +77344,23 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -67585,12 +77368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11731] = 4, + [12526] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(640), 1, + STATE(687), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67598,11 +77381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67618,13 +77402,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -67635,12 +77421,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11785] = 4, + [12583] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(641), 1, + STATE(688), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67648,11 +77434,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67668,13 +77455,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -67685,24 +77474,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11839] = 4, + [12640] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(642), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(689), 1, sym_comment, - ACTIONS(6428), 11, + STATE(1781), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67713,7 +77506,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -67724,23 +77516,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11893] = 4, + [12701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(643), 1, + STATE(690), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67748,11 +77542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67770,12 +77565,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -67785,12 +77582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [11947] = 4, + [12758] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(644), 1, + STATE(691), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67798,11 +77595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67818,13 +77616,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -67835,24 +77635,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12001] = 4, + [12815] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(645), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(692), 1, sym_comment, - ACTIONS(6376), 11, + STATE(1719), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67863,7 +77667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -67874,10 +77677,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -67885,12 +77690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12055] = 4, + [12876] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(646), 1, + STATE(693), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67898,11 +77703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67920,12 +77726,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -67935,12 +77743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12109] = 4, + [12933] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(647), 1, + STATE(694), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67948,11 +77756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -67974,6 +77783,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -67985,12 +77796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12163] = 4, + [12990] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(648), 1, + STATE(695), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -67998,11 +77809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68024,6 +77836,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68035,12 +77849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12217] = 4, + [13047] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(649), 1, + STATE(696), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68048,11 +77862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68074,6 +77889,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68085,12 +77902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12271] = 4, + [13104] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(650), 1, + STATE(697), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7533), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68098,11 +77915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68124,6 +77942,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68135,12 +77955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12325] = 4, + [13161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(651), 1, + STATE(698), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68148,11 +77968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68174,6 +77995,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68185,12 +78008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12379] = 4, + [13218] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(652), 1, + STATE(699), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68198,11 +78021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68224,6 +78048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68235,12 +78061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12433] = 4, + [13275] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(653), 1, + STATE(700), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68248,11 +78074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68274,6 +78101,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68285,12 +78114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12487] = 4, + [13332] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(654), 1, + STATE(701), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68298,11 +78127,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68324,6 +78154,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68335,12 +78167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12541] = 4, + [13389] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(655), 1, + STATE(702), 1, sym_comment, - ACTIONS(6284), 11, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68348,11 +78180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68371,11 +78204,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -68385,12 +78220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12595] = 4, + [13446] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(656), 1, + STATE(703), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68398,11 +78233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68424,6 +78260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68435,12 +78273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12649] = 4, + [13503] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(657), 1, + STATE(704), 1, sym_comment, - ACTIONS(6284), 11, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68448,11 +78286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68465,7 +78304,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -68475,7 +78313,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -68485,12 +78326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12703] = 4, + [13560] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(658), 1, + STATE(705), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68498,11 +78339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68524,6 +78366,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68535,12 +78379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12757] = 4, + [13617] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(659), 1, + STATE(706), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68548,11 +78392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68574,6 +78419,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68585,12 +78432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12811] = 4, + [13674] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(660), 1, + STATE(707), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68598,11 +78445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68624,6 +78472,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68635,12 +78485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12865] = 4, + [13731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(661), 1, + STATE(708), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68648,11 +78498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68674,6 +78525,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68685,12 +78538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12919] = 4, + [13788] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(662), 1, + STATE(709), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68698,11 +78551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68724,6 +78578,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68735,12 +78591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [12973] = 4, + [13845] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(663), 1, + STATE(710), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68748,11 +78604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68770,12 +78627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -68785,24 +78644,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13027] = 4, + [13902] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(664), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(711), 1, sym_comment, - ACTIONS(6420), 11, + STATE(1663), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68810,10 +78673,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -68824,8 +78687,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -68835,12 +78699,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13081] = 4, + [13963] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(665), 1, + STATE(712), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68848,11 +78712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68869,13 +78734,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -68885,12 +78752,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13135] = 4, + [14020] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(666), 1, + STATE(713), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68898,11 +78765,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68924,6 +78792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68935,12 +78805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13189] = 4, + [14077] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(667), 1, + STATE(714), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68948,11 +78818,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -68974,6 +78845,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -68985,12 +78858,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13243] = 4, + [14134] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(668), 1, + STATE(715), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7473), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -68998,11 +78871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69024,6 +78898,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69035,12 +78911,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13297] = 4, + [14191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(669), 1, + STATE(716), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69048,11 +78924,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69074,6 +78951,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69085,12 +78964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13351] = 4, + [14248] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(670), 1, + STATE(717), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69098,11 +78977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 32, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69124,6 +79004,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69135,12 +79017,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13405] = 4, + [14305] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(671), 1, + STATE(718), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69148,11 +79030,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69174,6 +79057,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69185,12 +79070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13459] = 4, + [14362] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(672), 1, + STATE(719), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7449), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69198,11 +79083,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69224,6 +79110,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69235,12 +79123,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13513] = 4, + [14419] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(673), 1, + STATE(720), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69248,11 +79136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69274,6 +79163,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69285,12 +79176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13567] = 4, + [14476] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(674), 1, + STATE(721), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69298,11 +79189,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69324,6 +79216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69335,12 +79229,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13621] = 4, + [14533] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(675), 1, + STATE(722), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69348,11 +79242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69374,6 +79269,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69385,12 +79282,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13675] = 4, + [14590] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(676), 1, + STATE(723), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69398,11 +79295,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69424,6 +79322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69435,12 +79335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13729] = 4, + [14647] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(677), 1, + STATE(724), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7607), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69448,11 +79348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69474,6 +79375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69485,12 +79388,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13783] = 4, + [14704] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(678), 1, + STATE(725), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69498,11 +79401,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69518,14 +79422,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -69535,27 +79441,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13837] = 6, + [14761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, - anon_sym_LPAREN, - STATE(679), 1, + STATE(726), 1, sym_comment, - STATE(1372), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7615), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69563,10 +79467,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -69577,7 +79481,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -69587,12 +79494,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13895] = 4, + [14818] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(680), 1, + STATE(727), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69600,11 +79507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69621,13 +79529,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -69637,12 +79547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [13949] = 4, + [14875] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(681), 1, + STATE(728), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69650,11 +79560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69670,14 +79581,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -69687,12 +79600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14003] = 4, + [14932] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(682), 1, + STATE(729), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69700,11 +79613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69726,6 +79640,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69737,12 +79653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14057] = 4, + [14989] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(683), 1, + STATE(730), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69750,11 +79666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69776,6 +79693,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69787,12 +79706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14111] = 4, + [15046] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(684), 1, + STATE(731), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69800,11 +79719,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 32, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69826,6 +79746,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -69837,12 +79759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14165] = 4, + [15103] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(685), 1, + STATE(732), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69850,11 +79772,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69870,14 +79793,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -69887,12 +79812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14219] = 4, + [15160] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(686), 1, + STATE(733), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69900,11 +79825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69926,8 +79852,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -69937,12 +79865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14273] = 4, + [15217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(687), 1, + STATE(734), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -69950,11 +79878,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -69970,14 +79899,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -69987,12 +79918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14327] = 4, + [15274] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(688), 1, + STATE(735), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7599), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70000,11 +79931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70026,8 +79958,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -70037,12 +79971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14381] = 4, + [15331] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(689), 1, + STATE(736), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70050,11 +79984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70076,6 +80011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70087,12 +80024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14435] = 4, + [15388] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(690), 1, + STATE(737), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7639), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70100,11 +80037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70126,6 +80064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70137,12 +80077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14489] = 4, + [15445] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(691), 1, + STATE(738), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70150,11 +80090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70176,6 +80117,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70187,12 +80130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14543] = 4, + [15502] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(692), 1, + STATE(739), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7677), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70200,11 +80143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70217,6 +80161,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -70226,8 +80171,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -70237,12 +80183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14597] = 4, + [15559] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(693), 1, + STATE(740), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7647), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70250,11 +80196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70276,6 +80223,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70287,12 +80236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14651] = 4, + [15616] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(694), 1, + STATE(741), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7651), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70300,11 +80249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70326,6 +80276,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70337,12 +80289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14705] = 4, + [15673] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(695), 1, + STATE(742), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70350,11 +80302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70367,6 +80320,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -70376,8 +80330,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -70387,12 +80342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14759] = 4, + [15730] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(696), 1, + STATE(743), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7655), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70400,11 +80355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70420,14 +80376,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -70437,12 +80395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14813] = 4, + [15787] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(697), 1, + STATE(744), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70450,11 +80408,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70476,6 +80435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70487,12 +80448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14867] = 4, + [15844] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(698), 1, + STATE(745), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7449), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70500,11 +80461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70520,14 +80482,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -70537,12 +80501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14921] = 4, + [15901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(699), 1, + STATE(746), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7663), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70550,11 +80514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70576,6 +80541,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70587,12 +80554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [14975] = 4, + [15958] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(700), 1, + STATE(747), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70600,11 +80567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70626,8 +80594,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -70637,12 +80607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15029] = 4, + [16015] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(701), 1, + STATE(748), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70650,11 +80620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70670,14 +80641,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -70687,12 +80660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15083] = 4, + [16072] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(702), 1, + STATE(749), 1, sym_comment, - ACTIONS(6340), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70700,11 +80673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6338), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70726,6 +80700,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70737,12 +80713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15137] = 4, + [16129] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(703), 1, + STATE(750), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70750,11 +80726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70776,6 +80753,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70787,12 +80766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15191] = 4, + [16186] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(704), 1, + STATE(751), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70800,11 +80779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70826,6 +80806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, aux_sym__custom_token3, anon_sym_ATswitch, @@ -70837,12 +80819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15245] = 4, + [16243] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(705), 1, + STATE(752), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70850,11 +80832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70868,7 +80851,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -70877,7 +80859,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -70887,12 +80872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15299] = 4, + [16300] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(706), 1, + STATE(753), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70900,11 +80885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70917,16 +80903,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -70937,12 +80925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15353] = 4, + [16357] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(707), 1, + STATE(754), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -70950,11 +80938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -70970,14 +80959,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -70987,12 +80978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15407] = 4, + [16414] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(708), 1, + STATE(755), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71000,11 +80991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71020,14 +81012,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -71037,12 +81031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15461] = 4, + [16471] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(709), 1, + STATE(756), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71050,11 +81044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71070,14 +81065,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -71087,12 +81084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15515] = 4, + [16528] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(710), 1, + STATE(757), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71100,11 +81097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71126,8 +81124,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -71137,12 +81137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15569] = 4, + [16585] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(711), 1, + STATE(758), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71150,11 +81150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71176,8 +81177,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -71187,12 +81190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15623] = 4, + [16642] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(712), 1, + STATE(759), 1, sym_comment, - ACTIONS(6340), 11, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71200,11 +81203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6338), 32, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71217,16 +81221,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71237,12 +81243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15677] = 4, + [16699] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(713), 1, + STATE(760), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71250,11 +81256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71276,8 +81283,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -71287,12 +81296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15731] = 4, + [16756] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(714), 1, + STATE(761), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71300,11 +81309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71326,8 +81336,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -71337,12 +81349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15785] = 4, + [16813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(715), 1, + STATE(762), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71350,11 +81362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71376,8 +81389,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -71387,12 +81402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15839] = 4, + [16870] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(716), 1, + STATE(763), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71400,11 +81415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71426,8 +81442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -71437,12 +81455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15893] = 4, + [16927] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(717), 1, + STATE(764), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71450,11 +81468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71477,6 +81496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATsectionMissing, anon_sym_ATerror, anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71487,12 +81508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [15947] = 4, + [16984] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(718), 1, + STATE(765), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71500,11 +81521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71520,13 +81542,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71537,12 +81561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16001] = 4, + [17041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(719), 1, + STATE(766), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71550,11 +81574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71570,13 +81595,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71587,12 +81614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16055] = 4, + [17098] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(720), 1, + STATE(767), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71600,11 +81627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71626,8 +81654,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -71637,12 +81667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16109] = 4, + [17155] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(721), 1, + STATE(768), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71650,11 +81680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71676,7 +81707,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71687,12 +81720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16163] = 4, + [17212] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(722), 1, + STATE(769), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71700,11 +81733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71726,7 +81760,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71737,12 +81773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16217] = 4, + [17269] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(723), 1, + STATE(770), 1, sym_comment, - ACTIONS(6284), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71750,11 +81786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71776,7 +81813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71787,12 +81826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16271] = 4, + [17326] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(724), 1, + STATE(771), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7533), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71800,11 +81839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71826,7 +81866,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71837,12 +81879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16325] = 4, + [17383] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(725), 1, + STATE(772), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71850,11 +81892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71870,13 +81913,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71887,12 +81932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16379] = 4, + [17440] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(726), 1, + STATE(773), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71900,11 +81945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71926,7 +81972,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71937,12 +81985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16433] = 4, + [17497] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(727), 1, + STATE(774), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -71950,11 +81998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -71976,7 +82025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -71987,12 +82038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16487] = 4, + [17554] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(728), 1, + STATE(775), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72000,11 +82051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72026,7 +82078,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72037,12 +82091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16541] = 4, + [17611] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(729), 1, + STATE(776), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72050,11 +82104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72076,7 +82131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72087,12 +82144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16595] = 4, + [17668] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(730), 1, + STATE(777), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72100,11 +82157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72126,7 +82184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72137,12 +82197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16649] = 4, + [17725] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(731), 1, + STATE(778), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7673), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72150,11 +82210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72167,6 +82228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -72176,7 +82238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72187,12 +82250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16703] = 4, + [17782] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(732), 1, + STATE(779), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72200,11 +82263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72226,7 +82290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72237,12 +82303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16757] = 4, + [17839] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(733), 1, + STATE(780), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72250,11 +82316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72276,7 +82343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72287,12 +82356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16811] = 4, + [17896] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(734), 1, + STATE(781), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72300,11 +82369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72326,7 +82396,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72337,12 +82409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16865] = 4, + [17953] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(735), 1, + STATE(782), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72350,11 +82422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72376,7 +82449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72387,12 +82462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16919] = 4, + [18010] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(736), 1, + STATE(783), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72400,11 +82475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72422,11 +82498,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72437,24 +82515,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [16973] = 4, + [18067] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(737), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(784), 1, sym_comment, - ACTIONS(6400), 11, + STATE(1603), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72463,9 +82545,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -72476,7 +82558,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72487,12 +82570,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17027] = 4, + [18128] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(738), 1, + STATE(785), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72500,11 +82583,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72522,11 +82606,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72537,12 +82623,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17081] = 4, + [18185] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(739), 1, + STATE(786), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72550,11 +82636,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72576,7 +82663,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72587,12 +82676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17135] = 4, + [18242] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(740), 1, + STATE(787), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72600,11 +82689,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72626,7 +82716,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72637,12 +82729,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17189] = 4, + [18299] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(741), 1, + STATE(788), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72650,11 +82742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72667,7 +82760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -72677,6 +82769,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72687,12 +82782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17243] = 4, + [18356] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(742), 1, + STATE(789), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72700,11 +82795,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72726,7 +82822,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72737,12 +82835,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17297] = 4, + [18413] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(743), 1, + STATE(790), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7473), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72750,11 +82848,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72776,7 +82875,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72787,12 +82888,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17351] = 4, + [18470] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(744), 1, + STATE(791), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72800,11 +82901,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72826,7 +82928,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72837,12 +82941,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17405] = 4, + [18527] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(745), 1, + STATE(792), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72850,11 +82954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72876,7 +82981,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72887,12 +82994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17459] = 4, + [18584] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(746), 1, + STATE(793), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -72900,11 +83007,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72920,13 +83028,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72937,27 +83047,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17513] = 6, + [18641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, - anon_sym_LPAREN, - STATE(747), 1, + STATE(794), 1, sym_comment, - STATE(1228), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7449), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -72966,9 +83074,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -72979,6 +83087,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -72989,12 +83100,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17571] = 4, + [18698] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(748), 1, + STATE(795), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73002,11 +83113,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73024,11 +83136,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73039,12 +83153,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17625] = 4, + [18755] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(749), 1, + STATE(796), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73052,11 +83166,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73078,7 +83193,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73089,12 +83206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17679] = 4, + [18812] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(750), 1, + STATE(797), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73102,11 +83219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73128,7 +83246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73139,12 +83259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17733] = 4, + [18869] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(751), 1, + STATE(798), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73152,11 +83272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73178,7 +83299,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73189,12 +83312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17787] = 4, + [18926] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(752), 1, + STATE(799), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7607), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73202,11 +83325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73228,7 +83352,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73239,12 +83365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17841] = 4, + [18983] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(753), 1, + STATE(800), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73252,11 +83378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73278,7 +83405,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73289,12 +83418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17895] = 4, + [19040] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(754), 1, + STATE(801), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7607), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73302,11 +83431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 32, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73322,13 +83452,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73339,12 +83471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [17949] = 4, + [19097] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(755), 1, + STATE(802), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7615), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73352,11 +83484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73378,7 +83511,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73389,12 +83524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18003] = 4, + [19154] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(756), 1, + STATE(803), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73402,11 +83537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73428,7 +83564,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73439,12 +83577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18057] = 4, + [19211] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(757), 1, + STATE(804), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73452,11 +83590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73478,7 +83617,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73489,12 +83630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18111] = 4, + [19268] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(758), 1, + STATE(805), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73502,11 +83643,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73522,13 +83664,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73539,12 +83683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18165] = 4, + [19325] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(759), 1, + STATE(806), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73552,11 +83696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73578,7 +83723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73589,12 +83736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18219] = 4, + [19382] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(760), 1, + STATE(807), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7615), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73602,11 +83749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73622,13 +83770,15 @@ static const uint16_t ts_small_parse_table[] = { 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, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73639,12 +83789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18273] = 4, + [19439] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(761), 1, + STATE(808), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7599), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73652,11 +83802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73678,7 +83829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73689,12 +83842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18327] = 4, + [19496] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(762), 1, + STATE(809), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73702,11 +83855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73728,7 +83882,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73739,12 +83895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18381] = 4, + [19553] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(763), 1, + STATE(810), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73752,11 +83908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73778,7 +83935,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73789,12 +83948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18435] = 4, + [19610] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(764), 1, + STATE(811), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73802,11 +83961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73822,13 +83982,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73839,12 +84001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18489] = 4, + [19667] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(765), 1, + STATE(812), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7677), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73852,11 +84014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73869,6 +84032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -73878,7 +84042,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73889,12 +84054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18543] = 4, + [19724] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(766), 1, + STATE(813), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7639), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73902,11 +84067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73928,7 +84094,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73939,12 +84107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18597] = 4, + [19781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(767), 1, + STATE(814), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -73952,11 +84120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -73978,7 +84147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -73989,12 +84160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18651] = 4, + [19838] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(768), 1, + STATE(815), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74002,11 +84173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74022,14 +84194,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -74039,12 +84213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18705] = 4, + [19895] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(769), 1, + STATE(816), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7647), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74052,11 +84226,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7645), 34, + 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_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, + 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, + [19952] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(817), 1, + sym_comment, + ACTIONS(7651), 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, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7649), 34, + 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_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, + 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, + [20009] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(818), 1, + sym_comment, + ACTIONS(7663), 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, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74079,6 +84360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74089,12 +84372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18759] = 4, + [20066] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(770), 1, + STATE(819), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7655), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74102,11 +84385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74128,7 +84412,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74139,12 +84425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18813] = 4, + [20123] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(771), 1, + STATE(820), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74152,11 +84438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74178,7 +84465,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74189,12 +84478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18867] = 4, + [20180] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(772), 1, + STATE(821), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7663), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74202,11 +84491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74228,7 +84518,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74239,12 +84531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18921] = 4, + [20237] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(773), 1, + STATE(822), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74252,11 +84544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74269,7 +84562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -74279,6 +84571,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74289,12 +84584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [18975] = 4, + [20294] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(774), 1, + STATE(823), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74302,11 +84597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74328,7 +84624,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74339,12 +84637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19029] = 4, + [20351] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(775), 1, + STATE(824), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74352,11 +84650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74369,7 +84668,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -74379,6 +84677,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74389,12 +84690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19083] = 4, + [20408] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(776), 1, + STATE(825), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74402,11 +84703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74422,13 +84724,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74439,12 +84743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19137] = 4, + [20465] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(777), 1, + STATE(826), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74452,11 +84756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74479,6 +84784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74489,12 +84796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19191] = 4, + [20522] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(778), 1, + STATE(827), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74502,11 +84809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74522,13 +84830,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74539,12 +84849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19245] = 4, + [20579] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(779), 1, + STATE(828), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74552,11 +84862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74572,13 +84883,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74589,12 +84902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19299] = 4, + [20636] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(780), 1, + STATE(829), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74602,11 +84915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74628,7 +84942,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74639,12 +84955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19353] = 4, + [20693] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(781), 1, + STATE(830), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74652,11 +84968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74675,10 +84992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74689,12 +85008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19407] = 4, + [20750] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(782), 1, + STATE(831), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74702,11 +85021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74725,10 +85045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74739,12 +85061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19461] = 4, + [20807] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(783), 1, + STATE(832), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74752,11 +85074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74772,13 +85095,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74789,12 +85114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19515] = 4, + [20864] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(784), 1, + STATE(833), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74802,11 +85127,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74825,10 +85151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74839,12 +85167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19569] = 4, + [20921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(785), 1, + STATE(834), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74852,11 +85180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74875,10 +85204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74889,12 +85220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19623] = 4, + [20978] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(786), 1, + STATE(835), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74902,11 +85233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74925,10 +85257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74939,12 +85273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19677] = 4, + [21035] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(787), 1, + STATE(836), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -74952,11 +85286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -74975,10 +85310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -74989,12 +85326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19731] = 4, + [21092] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(788), 1, + STATE(837), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75002,11 +85339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75025,10 +85363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75039,12 +85379,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19785] = 4, + [21149] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(789), 1, + STATE(838), 1, + sym_comment, + ACTIONS(7591), 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, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7589), 34, + 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_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, + 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, + [21206] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(839), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75052,11 +85445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75079,6 +85473,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75089,12 +85485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19839] = 4, + [21263] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(790), 1, + STATE(840), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75102,11 +85498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75122,13 +85519,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75139,12 +85538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19893] = 4, + [21320] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(791), 1, + STATE(841), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7639), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75152,11 +85551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75172,13 +85572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75189,12 +85591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [19947] = 4, + [21377] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(792), 1, + STATE(842), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75202,11 +85604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75225,10 +85628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75239,12 +85644,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20001] = 4, + [21434] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(793), 1, + STATE(843), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75252,11 +85657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75275,10 +85681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75289,12 +85697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20055] = 4, + [21491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(794), 1, + STATE(844), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75302,11 +85710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75325,10 +85734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75339,12 +85750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20109] = 4, + [21548] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(795), 1, + STATE(845), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75352,11 +85763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75375,10 +85787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75389,12 +85803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20163] = 4, + [21605] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(796), 1, + STATE(846), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7533), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75402,11 +85816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75425,10 +85840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75439,12 +85856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20217] = 4, + [21662] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(797), 1, + STATE(847), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75452,11 +85869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75475,10 +85893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75489,12 +85909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20271] = 4, + [21719] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(798), 1, + STATE(848), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75502,11 +85922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75525,10 +85946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75539,12 +85962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20325] = 4, + [21776] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(799), 1, + STATE(849), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75552,11 +85975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75575,10 +85999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75589,12 +86015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20379] = 4, + [21833] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(800), 1, + STATE(850), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75602,11 +86028,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75625,10 +86052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75639,12 +86068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20433] = 4, + [21890] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(801), 1, + STATE(851), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7673), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75652,11 +86081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75669,16 +86099,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75689,12 +86121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20487] = 4, + [21947] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(802), 1, + STATE(852), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75702,11 +86134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75725,10 +86158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75739,12 +86174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20541] = 4, + [22004] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(803), 1, + STATE(853), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75752,11 +86187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75775,10 +86211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75789,12 +86227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20595] = 4, + [22061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(804), 1, + STATE(854), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75802,11 +86240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75825,10 +86264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75839,12 +86280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20649] = 4, + [22118] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(805), 1, + STATE(855), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75852,11 +86293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75875,10 +86317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75889,12 +86333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20703] = 4, + [22175] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(806), 1, + STATE(856), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7651), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75902,11 +86346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75924,11 +86369,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75939,12 +86386,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20757] = 4, + [22232] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(807), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(857), 1, sym_comment, - ACTIONS(6508), 11, + STATE(1542), 1, + sym__directive_parameter, + ACTIONS(7395), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7393), 33, + 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_ATendPushIf, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [22293] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(858), 1, + sym_comment, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -75952,11 +86454,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -75969,7 +86472,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -75979,6 +86481,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -75989,12 +86494,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20811] = 4, + [22350] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(808), 1, + STATE(859), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76002,11 +86507,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76025,10 +86531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76039,12 +86547,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20865] = 4, + [22407] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(809), 1, + STATE(860), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76052,11 +86560,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76075,10 +86584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76089,12 +86600,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20919] = 4, + [22464] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(810), 1, + STATE(861), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76102,11 +86613,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76125,10 +86637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76139,12 +86653,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [20973] = 4, + [22521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(811), 1, + STATE(862), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76152,11 +86666,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76175,10 +86690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76189,12 +86706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21027] = 4, + [22578] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(812), 1, + STATE(863), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76202,11 +86719,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76222,13 +86740,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76239,27 +86759,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21081] = 6, + [22635] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, - anon_sym_LPAREN, - STATE(813), 1, + STATE(864), 1, sym_comment, - STATE(1257), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7473), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76269,8 +86787,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -76281,6 +86799,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76291,12 +86812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21139] = 4, + [22692] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(814), 1, + STATE(865), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76304,11 +86825,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76327,10 +86849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76341,12 +86865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21193] = 4, + [22749] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(815), 1, + STATE(866), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76354,11 +86878,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76377,10 +86902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76391,12 +86918,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21247] = 4, + [22806] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(816), 1, + STATE(867), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76404,11 +86931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76427,10 +86955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76441,12 +86971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21301] = 4, + [22863] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(817), 1, + STATE(868), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7449), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76454,11 +86984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76477,10 +87008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76491,12 +87024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21355] = 4, + [22920] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(818), 1, + STATE(869), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76504,11 +87037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76527,10 +87061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76541,12 +87077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21409] = 4, + [22977] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(819), 1, + STATE(870), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76554,11 +87090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76577,10 +87114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76591,12 +87130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21463] = 4, + [23034] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(820), 1, + STATE(871), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76604,11 +87143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76627,10 +87167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76641,12 +87183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21517] = 4, + [23091] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(821), 1, + STATE(872), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76654,11 +87196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 32, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76677,10 +87220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76691,12 +87236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21571] = 4, + [23148] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(822), 1, + STATE(873), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7607), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76704,11 +87249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76727,10 +87273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76741,12 +87289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21625] = 4, + [23205] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(823), 1, + STATE(874), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76754,11 +87302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76774,13 +87323,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76791,12 +87342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21679] = 4, + [23262] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(824), 1, + STATE(875), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76804,11 +87355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76827,10 +87379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76841,12 +87395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21733] = 4, + [23319] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(825), 1, + STATE(876), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7615), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76854,11 +87408,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76877,10 +87432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76891,12 +87448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21787] = 4, + [23376] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(826), 1, + STATE(877), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76904,11 +87461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76927,10 +87485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76941,12 +87501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21841] = 4, + [23433] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(827), 1, + STATE(878), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -76954,11 +87514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -76977,10 +87538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -76991,12 +87554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21895] = 4, + [23490] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(828), 1, + STATE(879), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7647), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77004,11 +87567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77024,13 +87588,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77041,12 +87607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [21949] = 4, + [23547] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(829), 1, + STATE(880), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7599), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77054,11 +87620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77077,10 +87644,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77091,12 +87660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22003] = 4, + [23604] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(830), 1, + STATE(881), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77104,11 +87673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77124,13 +87694,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77141,12 +87713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22057] = 4, + [23661] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(831), 1, + STATE(882), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77154,11 +87726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77177,10 +87750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77191,12 +87766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22111] = 4, + [23718] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(832), 1, + STATE(883), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77204,11 +87779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77227,10 +87803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77241,12 +87819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22165] = 4, + [23775] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(833), 1, + STATE(884), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7677), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77254,11 +87832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77272,15 +87851,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77291,12 +87872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22219] = 4, + [23832] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(834), 1, + STATE(885), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77304,11 +87885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77327,10 +87909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77341,12 +87925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22273] = 4, + [23889] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(835), 1, + STATE(886), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7639), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77354,11 +87938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77377,10 +87962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77391,12 +87978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22327] = 4, + [23946] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(836), 1, + STATE(887), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7651), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77404,11 +87991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77424,13 +88012,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77441,12 +88031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22381] = 4, + [24003] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(837), 1, + STATE(888), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77454,11 +88044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77472,7 +88063,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -77481,6 +88071,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77491,12 +88084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22435] = 4, + [24060] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(838), 1, + STATE(889), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7647), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77504,11 +88097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77527,10 +88121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77541,12 +88137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22489] = 4, + [24117] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(839), 1, + STATE(890), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7599), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77554,11 +88150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77571,16 +88168,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77591,12 +88190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22543] = 4, + [24174] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(840), 1, + STATE(891), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7651), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77604,11 +88203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77624,13 +88224,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77641,12 +88243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22597] = 4, + [24231] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(841), 1, + STATE(892), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7655), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77654,11 +88256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 32, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77671,7 +88274,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -77681,6 +88283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77691,12 +88296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22651] = 4, + [24288] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(842), 1, + STATE(893), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77704,11 +88309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77721,7 +88327,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -77731,6 +88336,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77741,12 +88349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22705] = 4, + [24345] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(843), 1, + STATE(894), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77754,11 +88362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 32, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77774,13 +88383,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77791,12 +88402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22759] = 4, + [24402] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(844), 1, + STATE(895), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77804,11 +88415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77824,13 +88436,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77841,12 +88455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22813] = 4, + [24459] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(845), 1, + STATE(896), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77854,11 +88468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77877,10 +88492,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77891,12 +88508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22867] = 4, + [24516] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(846), 1, + STATE(897), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77904,11 +88521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77923,7 +88541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -77931,6 +88548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77941,12 +88561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22921] = 4, + [24573] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(847), 1, + STATE(898), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -77954,11 +88574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -77973,7 +88594,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -77981,6 +88601,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -77991,12 +88614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [22975] = 4, + [24630] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(848), 1, + STATE(899), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78004,11 +88627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78023,7 +88647,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78031,6 +88654,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78041,12 +88667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23029] = 4, + [24687] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(849), 1, + STATE(900), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78054,11 +88680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78074,13 +88701,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78091,12 +88720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23083] = 4, + [24744] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(850), 1, + STATE(901), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78104,11 +88733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78123,7 +88753,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78131,6 +88760,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78141,12 +88773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23137] = 4, + [24801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(851), 1, + STATE(902), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78154,11 +88786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78173,7 +88806,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78181,6 +88813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78191,12 +88826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23191] = 4, + [24858] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(852), 1, + STATE(903), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78204,11 +88839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78221,9 +88857,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78231,6 +88867,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78241,12 +88879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23245] = 4, + [24915] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(853), 1, + STATE(904), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78254,11 +88892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78273,7 +88912,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78281,6 +88919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78291,12 +88932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23299] = 4, + [24972] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(854), 1, + STATE(905), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78304,11 +88945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78323,7 +88965,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78331,6 +88972,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78341,12 +88985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23353] = 4, + [25029] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(855), 1, + STATE(906), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78354,11 +88998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78373,7 +89018,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78381,6 +89025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78391,12 +89038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23407] = 4, + [25086] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(856), 1, + STATE(907), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78404,11 +89051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78423,7 +89071,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78431,6 +89078,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78441,12 +89091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23461] = 4, + [25143] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(857), 1, + STATE(908), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78454,11 +89104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78473,7 +89124,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78481,6 +89131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78491,12 +89144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23515] = 4, + [25200] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(858), 1, + STATE(909), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78504,11 +89157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78523,7 +89177,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78531,6 +89184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78541,12 +89197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23569] = 4, + [25257] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(859), 1, + STATE(910), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78554,11 +89210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78573,7 +89230,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78581,6 +89237,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78591,12 +89250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23623] = 4, + [25314] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(860), 1, + STATE(911), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78604,11 +89263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78631,6 +89291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78641,12 +89303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23677] = 4, + [25371] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(861), 1, + STATE(912), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7655), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78654,11 +89316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78673,14 +89336,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78691,12 +89356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23731] = 4, + [25428] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(862), 1, + STATE(913), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78704,11 +89369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78723,14 +89389,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78741,12 +89409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23785] = 4, + [25485] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(863), 1, + STATE(914), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78754,11 +89422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78773,7 +89442,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78781,6 +89449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78791,12 +89462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23839] = 4, + [25542] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(864), 1, + STATE(915), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78804,11 +89475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78823,7 +89495,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78831,6 +89502,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78841,12 +89515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23893] = 4, + [25599] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(865), 1, + STATE(916), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78854,11 +89528,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78873,7 +89548,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78881,6 +89555,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78891,12 +89568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [23947] = 4, + [25656] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(866), 1, + STATE(917), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78904,11 +89581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78923,7 +89601,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78931,6 +89608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78941,12 +89621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24001] = 4, + [25713] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(867), 1, + STATE(918), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7533), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -78954,11 +89634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -78973,7 +89654,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -78981,6 +89661,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -78991,12 +89674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24055] = 4, + [25770] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(868), 1, + STATE(919), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79004,11 +89687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79023,7 +89707,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79031,6 +89714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79041,12 +89727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24109] = 4, + [25827] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(869), 1, + STATE(920), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79054,11 +89740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79073,7 +89760,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79081,6 +89767,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79091,12 +89780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24163] = 4, + [25884] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(870), 1, + STATE(921), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79104,11 +89793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79122,7 +89812,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -79131,6 +89820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79141,12 +89833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24217] = 4, + [25941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(871), 1, + STATE(922), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7673), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79154,11 +89846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79172,8 +89865,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79181,6 +89874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79191,12 +89886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24271] = 4, + [25998] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(872), 1, + STATE(923), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79204,11 +89899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79223,7 +89919,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79231,6 +89926,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79241,12 +89939,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24325] = 4, + [26055] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(873), 1, + STATE(924), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79254,11 +89952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 32, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79273,7 +89972,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79281,6 +89979,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79291,12 +89992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24379] = 4, + [26112] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(874), 1, + STATE(925), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79304,11 +90005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79323,7 +90025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79331,6 +90032,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79341,12 +90045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24433] = 4, + [26169] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(875), 1, + STATE(926), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79354,11 +90058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79374,13 +90079,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79391,27 +90098,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24487] = 6, + [26226] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + STATE(927), 1, + sym_comment, + ACTIONS(7647), 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, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7645), 34, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [26283] = 6, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(876), 1, + STATE(928), 1, sym_comment, - STATE(1200), 1, + STATE(1418), 1, sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79433,6 +90194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79443,12 +90206,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24545] = 4, + [26344] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(877), 1, + STATE(929), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79456,11 +90219,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79475,7 +90239,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79483,6 +90246,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79493,12 +90259,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24599] = 4, + [26401] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(878), 1, + STATE(930), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79506,11 +90272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79525,7 +90292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79533,6 +90299,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79543,12 +90312,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24653] = 4, + [26458] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(879), 1, + STATE(931), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79556,11 +90325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79576,13 +90346,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79593,12 +90365,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24707] = 4, + [26515] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(880), 1, + STATE(932), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79606,11 +90378,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79625,7 +90398,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79633,6 +90405,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79643,12 +90418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24761] = 4, + [26572] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(881), 1, + STATE(933), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79656,11 +90431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79675,7 +90451,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79683,6 +90458,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79693,12 +90471,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24815] = 4, + [26629] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(882), 1, + STATE(934), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79706,11 +90484,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79725,7 +90504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79733,6 +90511,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79743,12 +90524,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24869] = 4, + [26686] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(883), 1, + STATE(935), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79756,11 +90537,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79775,7 +90557,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79783,6 +90564,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79793,12 +90577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24923] = 4, + [26743] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(884), 1, + STATE(936), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7473), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79806,11 +90590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79826,13 +90611,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79843,12 +90630,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [24977] = 4, + [26800] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(885), 1, + STATE(937), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79856,11 +90643,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79875,7 +90663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79883,6 +90670,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79893,12 +90683,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25031] = 4, + [26857] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(886), 1, + STATE(938), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79906,11 +90696,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79925,7 +90716,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79933,6 +90723,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79943,12 +90736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25085] = 4, + [26914] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(887), 1, + STATE(939), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -79956,11 +90749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -79975,7 +90769,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -79983,6 +90776,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -79993,12 +90789,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25139] = 4, + [26971] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(888), 1, + STATE(940), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7449), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80006,11 +90802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 32, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80025,7 +90822,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80033,6 +90829,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80043,12 +90842,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25193] = 4, + [27028] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(889), 1, + STATE(941), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80056,11 +90855,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80075,7 +90875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80083,6 +90882,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80093,12 +90895,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25247] = 4, + [27085] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(890), 1, + STATE(942), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80106,11 +90908,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80125,7 +90928,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80133,6 +90935,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80143,12 +90948,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25301] = 4, + [27142] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(891), 1, + STATE(943), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7663), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80156,11 +90961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80175,14 +90981,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80193,12 +91001,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25355] = 4, + [27199] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(892), 1, + STATE(944), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80206,11 +91014,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80225,7 +91034,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80233,6 +91041,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80243,12 +91054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25409] = 4, + [27256] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(893), 1, + STATE(945), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80256,11 +91067,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80283,6 +91095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80293,12 +91107,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25463] = 4, + [27313] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(894), 1, + STATE(946), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7607), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80306,11 +91120,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80325,7 +91140,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80333,6 +91147,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80343,12 +91160,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25517] = 4, + [27370] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(895), 1, + STATE(947), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80356,11 +91173,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80375,7 +91193,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80383,6 +91200,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80393,12 +91213,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25571] = 4, + [27427] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(896), 1, + STATE(948), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7615), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80406,11 +91226,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80425,7 +91246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80433,6 +91253,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80443,12 +91266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25625] = 4, + [27484] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(897), 1, + STATE(949), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80456,11 +91279,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80475,7 +91299,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80483,6 +91306,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80493,12 +91319,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25679] = 4, + [27541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(898), 1, + STATE(950), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80506,11 +91332,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80525,14 +91352,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80543,12 +91372,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25733] = 4, + [27598] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(899), 1, + STATE(951), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80556,11 +91385,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80575,14 +91405,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80593,12 +91425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25787] = 4, + [27655] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(900), 1, + STATE(952), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80606,11 +91438,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80625,14 +91458,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, + anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80643,12 +91478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25841] = 4, + [27712] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(901), 1, + STATE(953), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7663), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80656,11 +91491,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80675,7 +91511,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80683,6 +91518,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80693,12 +91531,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25895] = 4, + [27769] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(902), 1, + STATE(954), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80706,11 +91544,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80725,7 +91564,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80733,6 +91571,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80743,12 +91584,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [25949] = 4, + [27826] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(903), 1, + STATE(955), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7677), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80756,11 +91597,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80775,14 +91617,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, - anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80793,12 +91637,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26003] = 4, + [27883] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(904), 1, + STATE(956), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80806,11 +91650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80825,7 +91670,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80833,6 +91677,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80843,12 +91690,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26057] = 4, + [27940] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(905), 1, + STATE(957), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80856,11 +91703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80875,7 +91723,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80883,6 +91730,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80893,12 +91743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26111] = 4, + [27997] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(906), 1, + STATE(958), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80906,11 +91756,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80933,6 +91784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80943,12 +91796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26165] = 4, + [28054] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(907), 1, + STATE(959), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7639), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -80956,11 +91809,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -80975,7 +91829,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -80983,6 +91836,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -80993,12 +91849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26219] = 4, + [28111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(908), 1, + STATE(960), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81006,11 +91862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81025,7 +91882,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -81033,6 +91889,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81043,12 +91902,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26273] = 4, + [28168] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(909), 1, + STATE(961), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81056,11 +91915,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81083,6 +91943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81093,12 +91955,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26327] = 4, + [28225] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(910), 1, + STATE(962), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7647), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81106,11 +91968,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81126,13 +91989,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81143,12 +92008,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26381] = 4, + [28282] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(911), 1, + STATE(963), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7651), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81156,11 +92021,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81175,7 +92041,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -81183,6 +92048,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81193,12 +92061,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26435] = 4, + [28339] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(912), 1, + STATE(964), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7655), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81206,11 +92074,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81224,7 +92093,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81233,6 +92101,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81243,12 +92114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26489] = 4, + [28396] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(913), 1, + STATE(965), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81256,11 +92127,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81274,7 +92146,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81283,6 +92154,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81293,12 +92167,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26543] = 4, + [28453] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(914), 1, + STATE(966), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7663), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81306,11 +92180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81324,7 +92199,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81333,6 +92207,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81343,12 +92220,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26597] = 4, + [28510] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(915), 1, + STATE(967), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81356,11 +92233,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81382,8 +92260,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -81393,12 +92273,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26651] = 4, + [28567] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(916), 1, + STATE(968), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81406,11 +92286,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81424,7 +92305,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81433,6 +92313,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81443,12 +92326,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26705] = 4, + [28624] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(917), 1, + STATE(969), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81456,11 +92339,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81474,7 +92358,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81483,6 +92366,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81493,12 +92379,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26759] = 4, + [28681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(918), 1, + STATE(970), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81506,11 +92392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81524,7 +92411,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81533,6 +92419,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81543,12 +92432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26813] = 4, + [28738] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(919), 1, + STATE(971), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81556,11 +92445,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81574,7 +92464,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81583,6 +92472,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81593,12 +92485,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26867] = 4, + [28795] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(920), 1, + STATE(972), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81606,11 +92498,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81624,7 +92517,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81633,6 +92525,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81643,12 +92538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26921] = 4, + [28852] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(921), 1, + STATE(973), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81656,11 +92551,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81674,7 +92570,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81683,6 +92578,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81693,12 +92591,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [26975] = 4, + [28909] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(922), 1, + STATE(974), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81706,11 +92604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81724,15 +92623,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81743,12 +92644,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27029] = 4, + [28966] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(923), 1, + STATE(975), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81756,11 +92657,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81774,7 +92676,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81783,6 +92684,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81793,12 +92697,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27083] = 4, + [29023] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(924), 1, + STATE(976), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81806,11 +92710,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81824,7 +92729,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81833,6 +92737,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81843,12 +92750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27137] = 4, + [29080] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(925), 1, + STATE(977), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81856,11 +92763,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81874,7 +92782,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81883,6 +92790,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81893,12 +92803,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27191] = 4, + [29137] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(926), 1, + STATE(978), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81906,11 +92816,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81924,7 +92835,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81933,6 +92843,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81943,12 +92856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27245] = 4, + [29194] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(927), 1, + STATE(979), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -81956,11 +92869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -81974,7 +92888,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -81983,6 +92896,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -81993,12 +92909,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27299] = 4, + [29251] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(928), 1, + STATE(980), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82006,11 +92922,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82024,7 +92941,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82033,6 +92949,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82043,12 +92962,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27353] = 4, + [29308] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(929), 1, + STATE(981), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82056,11 +92975,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82074,7 +92994,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82083,6 +93002,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82093,12 +93015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27407] = 4, + [29365] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(930), 1, + STATE(982), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82106,11 +93028,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82124,7 +93047,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82133,6 +93055,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82143,12 +93068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27461] = 4, + [29422] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(931), 1, + STATE(983), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82156,11 +93081,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82183,6 +93109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82193,12 +93121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27515] = 4, + [29479] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(932), 1, + STATE(984), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82206,11 +93134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82224,15 +93153,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82243,12 +93174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27569] = 4, + [29536] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(933), 1, + STATE(985), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82256,11 +93187,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82275,14 +93207,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, - anon_sym_ATendempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82293,12 +93227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27623] = 4, + [29593] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(934), 1, + STATE(986), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82306,11 +93240,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82324,7 +93259,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82333,6 +93267,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82343,12 +93280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27677] = 4, + [29650] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(935), 1, + STATE(987), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82356,11 +93293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82374,7 +93312,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82383,6 +93320,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82393,12 +93333,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27731] = 4, + [29707] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(936), 1, + STATE(988), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82406,11 +93346,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82424,7 +93365,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82433,6 +93373,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82443,12 +93386,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27785] = 4, + [29764] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(937), 1, + STATE(989), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82456,11 +93399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82474,7 +93418,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82483,6 +93426,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82493,12 +93439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27839] = 4, + [29821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(938), 1, + STATE(990), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7673), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82506,11 +93452,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82526,14 +93473,16 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -82543,27 +93492,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27893] = 6, + [29878] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(939), 1, + STATE(991), 1, sym_comment, - STATE(1142), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7533), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82574,7 +93521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -82585,6 +93532,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82595,12 +93545,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [27951] = 4, + [29935] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(940), 1, + STATE(992), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82608,11 +93558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82626,7 +93577,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82635,6 +93585,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82645,12 +93598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28005] = 4, + [29992] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(941), 1, + STATE(993), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7673), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82658,11 +93611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 32, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82676,8 +93630,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -82685,6 +93639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82695,12 +93651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28059] = 4, + [30049] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(942), 1, + STATE(994), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82708,11 +93664,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82726,7 +93683,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82735,6 +93691,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82745,12 +93704,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28113] = 4, + [30106] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(943), 1, + STATE(995), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82758,11 +93717,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82776,7 +93736,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82785,6 +93744,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82795,12 +93757,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28167] = 4, + [30163] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(944), 1, + STATE(996), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82808,11 +93770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82826,7 +93789,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82835,6 +93797,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82845,12 +93810,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28221] = 4, + [30220] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(945), 1, + STATE(997), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82858,11 +93823,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82878,13 +93844,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82895,12 +93863,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28275] = 4, + [30277] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(946), 1, + STATE(998), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7599), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -82908,11 +93876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82926,8 +93895,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -82935,6 +93904,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82945,24 +93916,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28329] = 4, + [30334] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(947), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(999), 1, sym_comment, - ACTIONS(6368), 11, + STATE(1421), 1, + sym__directive_parameter, + ACTIONS(7395), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -82973,10 +93948,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - aux_sym_conditional_keyword_token1, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -82985,6 +93959,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -82995,12 +93971,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28383] = 4, + [30395] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(948), 1, + STATE(1000), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83008,11 +93984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83026,7 +94003,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83035,6 +94011,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83045,12 +94024,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28437] = 4, + [30452] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(949), 1, + STATE(1001), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83058,11 +94037,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83076,7 +94056,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83085,6 +94064,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83095,12 +94077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28491] = 4, + [30509] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(950), 1, + STATE(1002), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83108,11 +94090,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83134,8 +94117,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, - aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -83145,12 +94130,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28545] = 4, + [30566] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(951), 1, + STATE(1003), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83158,11 +94143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83176,7 +94162,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83185,6 +94170,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83195,12 +94183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28599] = 4, + [30623] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(952), 1, + STATE(1004), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83208,11 +94196,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83226,7 +94215,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83235,6 +94223,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83245,12 +94236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28653] = 4, + [30680] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(953), 1, + STATE(1005), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83258,11 +94249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83276,7 +94268,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83285,6 +94276,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83295,12 +94289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28707] = 4, + [30737] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(954), 1, + STATE(1006), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83308,11 +94302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83326,7 +94321,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83335,6 +94329,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83345,12 +94342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28761] = 4, + [30794] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(955), 1, + STATE(1007), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83358,11 +94355,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83376,7 +94374,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83385,6 +94382,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83395,12 +94395,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28815] = 4, + [30851] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(956), 1, + STATE(1008), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83408,11 +94408,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83428,13 +94429,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83445,12 +94448,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28869] = 4, + [30908] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(957), 1, + STATE(1009), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7473), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83458,11 +94461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83476,7 +94480,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83485,6 +94488,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83495,12 +94501,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28923] = 4, + [30965] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(958), 1, + STATE(1010), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83508,11 +94514,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83526,7 +94533,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83535,6 +94541,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83545,12 +94554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [28977] = 4, + [31022] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(959), 1, + STATE(1011), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83558,11 +94567,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83576,7 +94586,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83585,6 +94594,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83595,12 +94607,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29031] = 4, + [31079] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(960), 1, + STATE(1012), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83608,11 +94620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83626,7 +94639,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83635,6 +94647,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83645,12 +94660,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29085] = 4, + [31136] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(961), 1, + STATE(1013), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7449), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83658,11 +94673,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83676,7 +94692,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83685,6 +94700,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83695,12 +94713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29139] = 4, + [31193] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(962), 1, + STATE(1014), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83708,11 +94726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83726,7 +94745,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83735,6 +94753,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83745,12 +94766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29193] = 4, + [31250] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(963), 1, + STATE(1015), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83758,11 +94779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 32, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83775,7 +94797,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -83785,6 +94806,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83795,12 +94819,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29247] = 4, + [31307] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(964), 1, + STATE(1016), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83808,11 +94832,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83826,15 +94851,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83845,12 +94872,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29301] = 4, + [31364] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(965), 1, + STATE(1017), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83858,11 +94885,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83876,7 +94904,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83885,6 +94912,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83895,12 +94925,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29355] = 4, + [31421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(966), 1, + STATE(1018), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83908,11 +94938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83928,13 +94959,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83945,12 +94978,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29409] = 4, + [31478] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(967), 1, + STATE(1019), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7607), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -83958,11 +94991,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -83976,7 +95010,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -83985,6 +95018,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -83995,12 +95031,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29463] = 4, + [31535] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(968), 1, + STATE(1020), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84008,11 +95044,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84026,7 +95063,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -84035,7 +95071,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -84045,12 +95084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29517] = 4, + [31592] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(969), 1, + STATE(1021), 1, sym_comment, - ACTIONS(6284), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84058,11 +95097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84078,13 +95118,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, + anon_sym_ATendauth, anon_sym_ATguest, anon_sym_ATproduction, - anon_sym_ATendproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84095,12 +95137,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29571] = 4, + [31649] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(970), 1, + STATE(1022), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84108,11 +95150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84126,7 +95169,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -84135,6 +95177,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84145,12 +95190,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29625] = 4, + [31706] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(971), 1, + STATE(1023), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7615), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84158,11 +95203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84176,7 +95222,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -84185,6 +95230,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84195,12 +95243,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29679] = 4, + [31763] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(972), 1, + STATE(1024), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84208,11 +95256,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84226,7 +95275,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -84235,6 +95283,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84245,12 +95296,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29733] = 4, + [31820] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(973), 1, + STATE(1025), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84258,11 +95309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84276,15 +95328,17 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84295,12 +95349,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29787] = 4, + [31877] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(974), 1, + STATE(1026), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84308,11 +95362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84326,7 +95381,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -84335,6 +95389,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84345,12 +95402,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29841] = 4, + [31934] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(975), 1, + STATE(1027), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84358,11 +95415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84378,13 +95436,15 @@ static const uint16_t ts_small_parse_table[] = { 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, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84395,12 +95455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29895] = 4, + [31991] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(976), 1, + STATE(1028), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84408,11 +95468,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84435,6 +95496,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84445,12 +95508,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [29949] = 4, + [32048] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(977), 1, + STATE(1029), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84458,11 +95521,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84476,7 +95540,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, - anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -84485,6 +95548,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84495,12 +95561,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30003] = 4, + [32105] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(978), 1, + STATE(1030), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84508,11 +95574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84525,7 +95592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -84535,6 +95601,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84545,12 +95614,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30057] = 4, + [32162] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(979), 1, + STATE(1031), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84558,11 +95627,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84575,16 +95645,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84595,12 +95667,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30111] = 4, + [32219] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(980), 1, + STATE(1032), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7639), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84608,11 +95680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84625,7 +95698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -84635,6 +95707,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84645,12 +95720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30165] = 4, + [32276] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(981), 1, + STATE(1033), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7677), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84658,11 +95733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84684,8 +95760,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -84695,12 +95773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30219] = 4, + [32333] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(982), 1, + STATE(1034), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84708,11 +95786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84725,7 +95804,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -84735,6 +95813,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84745,12 +95826,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30273] = 4, + [32390] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(983), 1, + STATE(1035), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7647), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84758,11 +95839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84775,7 +95857,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -84785,6 +95866,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84795,12 +95879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30327] = 4, + [32447] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(984), 1, + STATE(1036), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7651), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84808,11 +95892,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84825,7 +95910,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -84835,6 +95919,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84845,12 +95932,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30381] = 4, + [32504] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(985), 1, + STATE(1037), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7655), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84858,11 +95945,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84875,7 +95963,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -84885,6 +95972,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84895,12 +95985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30435] = 4, + [32561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(986), 1, + STATE(1038), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84908,11 +95998,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84925,7 +96016,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -84935,6 +96025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84945,12 +96038,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30489] = 4, + [32618] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(987), 1, + STATE(1039), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7663), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -84958,11 +96051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -84975,7 +96069,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -84985,6 +96078,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -84995,12 +96091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30543] = 4, + [32675] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(988), 1, + STATE(1040), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85008,11 +96104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85025,7 +96122,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85035,6 +96131,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85045,12 +96144,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30597] = 4, + [32732] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(989), 1, + STATE(1041), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85058,11 +96157,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85075,7 +96175,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85085,6 +96184,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85095,12 +96197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30651] = 4, + [32789] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(990), 1, + STATE(1042), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85108,11 +96210,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85125,7 +96228,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85135,7 +96237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, + aux_sym__custom_token3, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, @@ -85145,12 +96250,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30705] = 4, + [32846] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(991), 1, + STATE(1043), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85158,11 +96263,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85175,7 +96281,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85185,6 +96290,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85195,12 +96303,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30759] = 4, + [32903] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(992), 1, + STATE(1044), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85208,11 +96316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85225,7 +96334,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85235,6 +96343,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85245,12 +96356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30813] = 4, + [32960] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(993), 1, + STATE(1045), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85258,11 +96369,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85275,7 +96387,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85285,6 +96396,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85295,12 +96409,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30867] = 4, + [33017] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(994), 1, + STATE(1046), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85308,11 +96422,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85325,7 +96440,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85335,6 +96449,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85345,12 +96462,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30921] = 4, + [33074] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(995), 1, + STATE(1047), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85358,11 +96475,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85375,7 +96493,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85385,6 +96502,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85395,12 +96515,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [30975] = 4, + [33131] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(996), 1, + STATE(1048), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85408,11 +96528,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85425,7 +96546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85435,6 +96555,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85445,12 +96568,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31029] = 4, + [33188] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(997), 1, + STATE(1049), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85458,11 +96581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85475,7 +96599,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85485,6 +96608,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85495,12 +96621,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31083] = 4, + [33245] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(998), 1, + STATE(1050), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85508,11 +96634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85525,7 +96652,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85535,6 +96661,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85545,12 +96674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31137] = 4, + [33302] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(999), 1, + STATE(1051), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85558,11 +96687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85575,7 +96705,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85585,6 +96714,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85595,12 +96727,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31191] = 4, + [33359] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1000), 1, + STATE(1052), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85608,11 +96740,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85625,7 +96758,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85635,6 +96767,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85645,38 +96780,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31245] = 6, + [33416] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6548), 1, - anon_sym_LPAREN, - STATE(1001), 1, + STATE(1053), 1, sym_comment, - STATE(2154), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7587), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, 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, @@ -85687,6 +96820,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85697,12 +96833,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31303] = 4, + [33473] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1002), 1, + STATE(1054), 1, sym_comment, - ACTIONS(6340), 11, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85710,11 +96846,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6338), 32, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85727,7 +96864,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85737,6 +96873,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85747,12 +96886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31357] = 4, + [33530] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1003), 1, + STATE(1055), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7669), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85760,11 +96899,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85787,6 +96927,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85797,12 +96939,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31411] = 4, + [33587] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1004), 1, + STATE(1056), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85810,11 +96952,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85827,16 +96970,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85847,12 +96992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31465] = 4, + [33644] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1005), 1, + STATE(1057), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85860,11 +97005,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85877,16 +97023,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85897,12 +97045,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31519] = 4, + [33701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1006), 1, + STATE(1058), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85910,11 +97058,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85927,7 +97076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -85937,6 +97085,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85947,12 +97098,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31573] = 4, + [33758] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1007), 1, + STATE(1059), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -85960,11 +97111,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -85977,16 +97129,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -85997,12 +97151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31627] = 4, + [33815] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1008), 1, + STATE(1060), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86010,11 +97164,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86027,16 +97182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86047,12 +97204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31681] = 4, + [33872] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1009), 1, + STATE(1061), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86060,11 +97217,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86077,16 +97235,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86097,12 +97257,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31735] = 4, + [33929] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1010), 1, + STATE(1062), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86110,11 +97270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86127,16 +97288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86147,12 +97310,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31789] = 4, + [33986] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1011), 1, + STATE(1063), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7673), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86160,11 +97323,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86177,7 +97341,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -86187,6 +97350,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86197,12 +97363,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31843] = 4, + [34043] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1012), 1, + STATE(1064), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7533), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86210,11 +97376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86227,16 +97394,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86247,12 +97416,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31897] = 4, + [34100] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1013), 1, + STATE(1065), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86260,11 +97429,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86277,16 +97447,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86297,12 +97469,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [31951] = 4, + [34157] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1014), 1, + STATE(1066), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86310,11 +97482,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86337,6 +97510,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86347,12 +97522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32005] = 4, + [34214] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1015), 1, + STATE(1067), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86360,11 +97535,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86377,16 +97553,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86397,12 +97575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32059] = 4, + [34271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1016), 1, + STATE(1068), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86410,11 +97588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86427,16 +97606,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86447,12 +97628,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32113] = 4, + [34328] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1017), 1, + STATE(1069), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86460,11 +97641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86477,16 +97659,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86497,12 +97681,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32167] = 4, + [34385] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1018), 1, + STATE(1070), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86510,11 +97694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86537,6 +97722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86547,12 +97734,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32221] = 4, + [34442] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1019), 1, + STATE(1071), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86560,11 +97747,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86577,16 +97765,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86597,12 +97787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32275] = 4, + [34499] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1020), 1, + STATE(1072), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86610,11 +97800,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86637,6 +97828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86647,12 +97840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32329] = 4, + [34556] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1021), 1, + STATE(1073), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86660,11 +97853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86677,7 +97871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -86687,6 +97881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86697,12 +97893,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32383] = 4, + [34613] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1022), 1, + STATE(1074), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86710,11 +97906,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86737,6 +97934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86747,12 +97946,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32437] = 4, + [34670] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1023), 1, + STATE(1075), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86760,11 +97959,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86787,6 +97987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86797,12 +97999,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32491] = 4, + [34727] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1024), 1, + STATE(1076), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86810,11 +98012,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86837,6 +98040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86847,12 +98052,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32545] = 4, + [34784] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1025), 1, + STATE(1077), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86860,11 +98065,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86887,6 +98093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86897,12 +98105,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32599] = 4, + [34841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1026), 1, + STATE(1078), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86910,11 +98118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86927,16 +98136,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86947,12 +98158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32653] = 4, + [34898] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1027), 1, + STATE(1079), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -86960,11 +98171,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -86987,6 +98199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -86997,12 +98211,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32707] = 4, + [34955] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1028), 1, + STATE(1080), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87010,11 +98224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87037,6 +98252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87047,12 +98264,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32761] = 4, + [35012] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1029), 1, + STATE(1081), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87060,11 +98277,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87077,16 +98295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87097,12 +98317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32815] = 4, + [35069] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1030), 1, + STATE(1082), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87110,11 +98330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87137,6 +98358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87147,12 +98370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32869] = 4, + [35126] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1031), 1, + STATE(1083), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87160,11 +98383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87187,6 +98411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87197,27 +98423,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32923] = 6, + [35183] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6550), 1, - anon_sym_LPAREN, - STATE(1032), 1, + STATE(1084), 1, sym_comment, - STATE(2140), 1, - sym__directive_parameter, - ACTIONS(6252), 10, + ACTIONS(7663), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6250), 31, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87225,11 +98449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -87239,6 +98464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87249,12 +98476,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [32981] = 4, + [35240] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1033), 1, + STATE(1085), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87262,11 +98489,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87279,16 +98507,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87299,12 +98529,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33035] = 4, + [35297] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1034), 1, + STATE(1086), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87312,11 +98542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87339,6 +98570,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87349,12 +98582,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33089] = 4, + [35354] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1035), 1, + STATE(1087), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87362,11 +98595,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87379,16 +98613,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87399,12 +98635,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33143] = 4, + [35411] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1036), 1, + STATE(1088), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7655), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87412,11 +98648,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 32, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87439,6 +98676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87449,12 +98688,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33197] = 4, + [35468] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1037), 1, + STATE(1089), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7651), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87462,11 +98701,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 32, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87489,6 +98729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87499,12 +98741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33251] = 4, + [35525] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1038), 1, + STATE(1090), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7647), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87512,11 +98754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87539,6 +98782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87549,12 +98794,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33305] = 4, + [35582] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1039), 1, + STATE(1091), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87562,11 +98807,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87589,6 +98835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87599,12 +98847,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33359] = 4, + [35639] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1040), 1, + STATE(1092), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7677), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87612,11 +98860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 32, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87629,16 +98878,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87649,12 +98900,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33413] = 4, + [35696] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1041), 1, + STATE(1093), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7639), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87662,11 +98913,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 32, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87689,6 +98941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87699,12 +98953,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33467] = 4, + [35753] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1042), 1, + STATE(1094), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87712,11 +98966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 32, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87739,6 +98994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87749,12 +99006,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33521] = 4, + [35810] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1043), 1, + STATE(1095), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7453), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87762,11 +99019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 32, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87779,16 +99037,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87799,12 +99059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33575] = 4, + [35867] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1044), 1, + STATE(1096), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87812,11 +99072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 32, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87839,6 +99100,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87849,12 +99112,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33629] = 4, + [35924] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1045), 1, + STATE(1097), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87862,11 +99125,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 32, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87889,6 +99153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87899,12 +99165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33683] = 4, + [35981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1046), 1, + STATE(1098), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7599), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87912,11 +99178,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 32, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87939,6 +99206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87949,12 +99218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33737] = 4, + [36038] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1047), 1, + STATE(1099), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -87962,11 +99231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 32, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -87989,6 +99259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -87999,12 +99271,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33791] = 4, + [36095] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1048), 1, + STATE(1100), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88012,11 +99284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 32, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88039,6 +99312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88049,12 +99324,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33845] = 4, + [36152] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1049), 1, + STATE(1101), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7615), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88062,11 +99337,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 32, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88089,6 +99365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88099,12 +99377,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33899] = 4, + [36209] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1050), 1, + STATE(1102), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88112,11 +99390,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 32, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88139,6 +99418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88149,12 +99430,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [33953] = 4, + [36266] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1051), 1, + STATE(1103), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7607), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88162,11 +99443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 32, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88189,6 +99471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88199,12 +99483,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34007] = 4, + [36323] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1052), 1, + STATE(1104), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88212,11 +99496,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 32, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88239,6 +99524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88249,12 +99536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34061] = 4, + [36380] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1053), 1, + STATE(1105), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88262,11 +99549,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 32, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88289,6 +99577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88299,12 +99589,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34115] = 4, + [36437] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1054), 1, + STATE(1106), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88312,11 +99602,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 32, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88339,6 +99630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88349,12 +99642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34169] = 4, + [36494] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1055), 1, + STATE(1107), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88362,11 +99655,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 32, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88389,6 +99683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88399,12 +99695,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34223] = 4, + [36551] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1056), 1, + STATE(1108), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7449), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88412,11 +99708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 32, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88439,6 +99736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88449,12 +99748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34277] = 4, + [36608] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1057), 1, + STATE(1109), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88462,11 +99761,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 32, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88489,6 +99789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88499,12 +99801,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34331] = 4, + [36665] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1058), 1, + STATE(1110), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88512,11 +99814,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 32, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88539,6 +99842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88549,12 +99854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34385] = 4, + [36722] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1059), 1, + STATE(1111), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88562,11 +99867,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 32, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88579,16 +99885,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, - anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88599,12 +99907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34439] = 4, + [36779] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1060), 1, + STATE(1112), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7473), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88612,11 +99920,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 32, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88639,6 +99948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88649,12 +99960,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34493] = 4, + [36836] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1061), 1, + STATE(1113), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88662,11 +99973,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 32, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88689,6 +100001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88699,12 +100013,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34547] = 4, + [36893] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1062), 1, + STATE(1114), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88712,11 +100026,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 32, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88739,6 +100054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88749,12 +100066,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34601] = 4, + [36950] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1063), 1, + STATE(1115), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88762,11 +100079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 32, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88779,7 +100097,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -88789,6 +100107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88799,12 +100119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34655] = 4, + [37007] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1064), 1, + STATE(1116), 1, sym_comment, - ACTIONS(6340), 11, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88812,11 +100132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6338), 32, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88829,16 +100150,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88849,12 +100172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34709] = 4, + [37064] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1065), 1, + STATE(1117), 1, sym_comment, - ACTIONS(6554), 11, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88862,11 +100185,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6552), 32, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88879,16 +100203,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88899,12 +100225,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34763] = 4, + [37121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1066), 1, + STATE(1118), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88912,11 +100238,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 32, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88929,7 +100256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -88939,6 +100266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88949,12 +100278,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34817] = 4, + [37178] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1067), 1, + STATE(1119), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -88962,11 +100291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 32, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -88979,7 +100309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -88989,6 +100319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -88999,12 +100331,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34871] = 4, + [37235] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1068), 1, + STATE(1120), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89012,11 +100344,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 32, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89029,7 +100362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89039,6 +100372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89049,12 +100384,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34925] = 4, + [37292] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1069), 1, + STATE(1121), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89062,11 +100397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 32, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89079,7 +100415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89089,6 +100425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89099,12 +100437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [34979] = 4, + [37349] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1070), 1, + STATE(1122), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89112,11 +100450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 32, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89129,7 +100468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89139,6 +100478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89149,12 +100490,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35033] = 4, + [37406] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1071), 1, + STATE(1123), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89162,11 +100503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89179,7 +100521,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89189,6 +100531,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89199,12 +100543,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35087] = 4, + [37463] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1072), 1, + STATE(1124), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89212,11 +100556,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 32, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89229,7 +100574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89239,6 +100584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89249,12 +100596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35141] = 4, + [37520] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1073), 1, + STATE(1125), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7525), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89262,11 +100609,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 32, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89279,7 +100627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89289,6 +100637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89299,12 +100649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35195] = 4, + [37577] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1074), 1, + STATE(1126), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89312,11 +100662,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 32, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89329,7 +100680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89339,6 +100690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89349,12 +100702,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35249] = 4, + [37634] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1075), 1, + STATE(1127), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7533), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89362,11 +100715,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 32, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89379,7 +100733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89389,6 +100743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89399,12 +100755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35303] = 4, + [37691] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1076), 1, + STATE(1128), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7673), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89412,11 +100768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 32, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89429,16 +100786,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89449,12 +100808,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35357] = 4, + [37748] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1077), 1, + STATE(1129), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7541), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89462,11 +100821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 32, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89479,7 +100839,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89489,6 +100849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89499,12 +100861,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35411] = 4, + [37805] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1078), 1, + STATE(1130), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7545), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89512,11 +100874,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 32, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89529,7 +100892,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89539,6 +100902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89549,12 +100914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35465] = 4, + [37862] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1079), 1, + STATE(1131), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7549), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89562,11 +100927,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 32, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89579,7 +100945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -89589,6 +100955,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89599,12 +100967,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35519] = 4, + [37919] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1080), 1, + STATE(1132), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89612,11 +100980,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 32, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89639,6 +101008,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89649,12 +101020,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35573] = 4, + [37976] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1081), 1, + STATE(1133), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89662,11 +101033,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 32, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89679,16 +101051,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, - anon_sym_ATendunless, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89699,12 +101073,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35627] = 4, + [38033] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1082), 1, + ACTIONS(7707), 1, + anon_sym_LPAREN, + STATE(1134), 1, + sym_comment, + STATE(2302), 1, + sym__directive_parameter, + ACTIONS(7395), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7393), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [38094] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(1135), 1, sym_comment, - ACTIONS(6284), 11, + ACTIONS(7517), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89712,11 +101141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6282), 32, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89733,12 +101163,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89749,12 +101181,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35681] = 4, + [38151] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1083), 1, + STATE(1136), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89762,11 +101194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 32, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89789,6 +101222,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89799,12 +101234,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35735] = 4, + [38208] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1084), 1, + STATE(1137), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89812,11 +101247,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 32, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89839,6 +101275,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89849,12 +101287,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35789] = 4, + [38265] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1085), 1, + STATE(1138), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89862,11 +101300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 32, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89889,6 +101328,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89899,12 +101340,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35843] = 4, + [38322] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1086), 1, + STATE(1139), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89912,11 +101353,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 32, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89939,6 +101381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89949,12 +101393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35897] = 4, + [38379] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1087), 1, + STATE(1140), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -89962,11 +101406,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 32, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -89989,6 +101434,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -89999,12 +101446,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [35951] = 4, + [38436] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1088), 1, + STATE(1141), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90012,11 +101459,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 32, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90039,6 +101487,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90049,12 +101499,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36005] = 4, + [38493] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1089), 1, + STATE(1142), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90062,11 +101512,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 32, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90079,6 +101530,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -90088,7 +101540,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, - anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90099,12 +101552,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36059] = 4, + [38550] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1090), 1, + STATE(1143), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90112,11 +101565,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 32, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90139,6 +101593,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90149,12 +101605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36113] = 4, + [38607] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1091), 1, + STATE(1144), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90162,11 +101618,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 32, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90189,6 +101646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90199,12 +101658,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36167] = 4, + [38664] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1092), 1, + STATE(1145), 1, sym_comment, - ACTIONS(6340), 11, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90212,11 +101671,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6338), 32, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90229,16 +101689,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90249,12 +101711,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36221] = 4, + [38721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1093), 1, + STATE(1146), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90262,11 +101724,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 32, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90289,6 +101752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90299,12 +101764,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36275] = 4, + [38778] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1094), 1, + STATE(1147), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90312,11 +101777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 32, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90339,6 +101805,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90349,12 +101817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36329] = 4, + [38835] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1095), 1, + STATE(1148), 1, sym_comment, - ACTIONS(6260), 11, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90362,11 +101830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6258), 32, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90379,16 +101848,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, - anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90399,12 +101870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36383] = 4, + [38892] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1096), 1, + STATE(1149), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90412,11 +101883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 32, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90439,6 +101911,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90449,12 +101923,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36437] = 4, + [38949] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1097), 1, + STATE(1150), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7663), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90462,11 +101936,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 32, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90489,6 +101964,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90499,12 +101976,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36491] = 4, + [39006] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1098), 1, + STATE(1151), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7405), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90512,11 +101989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90530,6 +102008,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -90538,6 +102017,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90548,12 +102029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36544] = 4, + [39063] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1099), 1, + STATE(1152), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, @@ -90561,11 +102042,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprepend, anon_sym_ATelse, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90578,6 +102060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATprependOnce, aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -90587,6 +102070,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90597,34 +102082,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36597] = 4, + [39120] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1100), 1, + STATE(1153), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7513), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, 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, @@ -90632,9 +102119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90645,23 +102135,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36649] = 4, + [39177] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1101), 1, + STATE(1154), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7655), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90672,7 +102164,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -90682,6 +102176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90690,26 +102186,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36701] = 4, + [39234] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1102), 1, + STATE(1155), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7651), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90720,7 +102217,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -90730,6 +102229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90738,26 +102239,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36753] = 4, + [39291] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1103), 1, + STATE(1156), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7647), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90767,9 +102269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -90779,6 +102282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90789,23 +102294,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36805] = 4, + [39348] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1104), 1, + STATE(1157), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7643), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90816,7 +102323,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -90826,6 +102335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90833,27 +102344,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36857] = 4, + [39405] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1105), 1, + STATE(1158), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7677), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90862,9 +102374,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -90875,6 +102387,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90885,23 +102400,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36909] = 4, + [39462] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1106), 1, + STATE(1159), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7639), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90912,8 +102429,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -90923,6 +102441,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90933,23 +102453,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [36961] = 4, + [39519] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1107), 1, + STATE(1160), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7635), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -90960,8 +102482,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -90971,6 +102494,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -90981,23 +102506,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37013] = 4, + [39576] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1108), 1, + STATE(1161), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7453), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91008,17 +102535,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91029,23 +102559,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37065] = 4, + [39633] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1109), 1, + STATE(1162), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7631), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91056,8 +102588,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91067,6 +102600,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91077,23 +102612,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37117] = 4, + [39690] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1110), 1, + STATE(1163), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7627), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91104,8 +102641,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91115,6 +102653,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91125,23 +102665,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37169] = 4, + [39747] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1111), 1, + STATE(1164), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7599), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91152,17 +102694,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, + anon_sym_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91173,23 +102718,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37221] = 4, + [39804] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1112), 1, + STATE(1165), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7623), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91200,8 +102747,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91211,6 +102759,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91221,23 +102771,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37273] = 4, + [39861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1113), 1, + STATE(1166), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7619), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91248,8 +102800,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91259,6 +102812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91269,23 +102824,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37325] = 4, + [39918] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1114), 1, + STATE(1167), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7615), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91296,8 +102853,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91307,6 +102865,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91317,23 +102877,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37377] = 4, + [39975] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1115), 1, + STATE(1168), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7611), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91344,8 +102906,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91355,6 +102918,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91365,23 +102930,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37429] = 4, + [40032] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1116), 1, + STATE(1169), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7607), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91392,8 +102959,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91403,6 +102971,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91413,23 +102983,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37481] = 4, + [40089] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1117), 1, + STATE(1170), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7603), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91440,8 +103012,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91451,6 +103024,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91461,23 +103036,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37533] = 4, + [40146] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1118), 1, + STATE(1171), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7429), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91488,8 +103065,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91499,6 +103077,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91509,23 +103089,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37585] = 4, + [40203] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1119), 1, + STATE(1172), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7441), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91536,8 +103118,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91547,6 +103130,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91557,23 +103142,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37637] = 4, + [40260] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1120), 1, + STATE(1173), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7445), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91584,8 +103171,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91595,6 +103183,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91605,23 +103195,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37689] = 4, + [40317] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1121), 1, + STATE(1174), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7449), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91632,8 +103224,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91643,6 +103236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91653,23 +103248,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37741] = 4, + [40374] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1122), 1, + STATE(1175), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7457), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91680,8 +103277,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91691,6 +103289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91701,23 +103301,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37793] = 4, + [40431] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1123), 1, + STATE(1176), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7465), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91728,8 +103330,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91739,6 +103342,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91749,23 +103354,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37845] = 4, + [40488] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1124), 1, + STATE(1177), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7469), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91776,8 +103383,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91787,6 +103395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91797,23 +103407,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37897] = 4, + [40545] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1125), 1, + STATE(1178), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7473), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91824,8 +103436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91835,6 +103448,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91845,23 +103460,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [37949] = 4, + [40602] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1126), 1, + STATE(1179), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7477), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91872,8 +103489,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91883,6 +103501,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91893,23 +103513,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38001] = 4, + [40659] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1127), 1, + STATE(1180), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7481), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91920,8 +103542,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91931,6 +103554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91941,23 +103566,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38053] = 4, + [40716] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1128), 1, + STATE(1181), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7485), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -91968,8 +103595,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -91979,6 +103607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -91989,23 +103619,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38105] = 4, + [40773] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1129), 1, + STATE(1182), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7489), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92015,9 +103647,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92027,6 +103660,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92037,23 +103672,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38157] = 4, + [40830] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1130), 1, + STATE(1183), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7493), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92064,8 +103701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92075,6 +103713,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92085,23 +103725,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38209] = 4, + [40887] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1131), 1, + STATE(1184), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7497), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92112,8 +103754,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92123,6 +103766,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92133,23 +103778,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38261] = 4, + [40944] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1132), 1, + STATE(1185), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7501), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92160,8 +103807,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92171,6 +103819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92181,23 +103831,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38313] = 4, + [41001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1133), 1, + STATE(1186), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7505), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92208,8 +103860,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92219,6 +103872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92229,23 +103884,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38365] = 4, + [41058] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1134), 1, + STATE(1187), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7509), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92256,8 +103913,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92267,6 +103925,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92277,23 +103937,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38417] = 4, + [41115] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1135), 1, + STATE(1188), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7513), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92304,8 +103966,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92315,6 +103978,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92325,23 +103990,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38469] = 4, + [41172] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1136), 1, + STATE(1189), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7517), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92352,8 +104019,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92363,6 +104031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92373,23 +104043,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38521] = 4, + [41229] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1137), 1, + STATE(1190), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7521), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92400,8 +104072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92411,6 +104084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92421,23 +104096,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38573] = 4, + [41286] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1138), 1, + STATE(1191), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7525), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92448,8 +104125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92459,6 +104137,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92469,23 +104149,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38625] = 4, + [41343] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1139), 1, + STATE(1192), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7529), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92496,8 +104178,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92507,6 +104190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92517,23 +104202,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38677] = 4, + [41400] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1140), 1, + STATE(1193), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7533), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92544,8 +104231,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92555,6 +104243,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92565,23 +104255,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38729] = 4, + [41457] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1141), 1, + STATE(1194), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7673), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92592,7 +104284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -92603,6 +104295,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATenderror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92613,23 +104308,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38781] = 4, + [41514] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1142), 1, + STATE(1195), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7541), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92640,8 +104337,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92651,6 +104349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92661,23 +104361,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38833] = 4, + [41571] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1143), 1, + STATE(1196), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7545), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92688,8 +104390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92699,6 +104402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92709,23 +104414,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38885] = 4, + [41628] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1144), 1, + STATE(1197), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7549), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92736,7 +104443,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendunless, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -92746,34 +104455,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38937] = 4, + [41685] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1145), 1, + STATE(1198), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7595), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92784,9 +104496,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -92795,6 +104508,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92805,23 +104520,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [38989] = 4, + [41742] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1146), 1, + STATE(1199), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7405), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92832,16 +104549,20 @@ static const uint16_t ts_small_parse_table[] = { 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_ATendguest, anon_sym_ATproduction, anon_sym_ATenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92851,36 +104572,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [39041] = 4, + [41799] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1147), 1, + ACTIONS(7709), 1, + anon_sym_LPAREN, + STATE(1200), 1, sym_comment, - ACTIONS(6312), 10, + STATE(2382), 1, + sym__directive_parameter, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7393), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -92891,6 +104616,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92901,23 +104628,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39093] = 4, + [41860] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1148), 1, + STATE(1201), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7509), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92928,7 +104657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -92936,9 +104665,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92949,23 +104681,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39145] = 4, + [41917] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1149), 1, + STATE(1202), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7591), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -92976,9 +104710,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -92987,6 +104722,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -92997,23 +104734,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39197] = 4, + [41974] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1150), 1, + STATE(1203), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7587), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93024,9 +104763,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93035,6 +104775,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93045,23 +104787,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39249] = 4, + [42031] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1151), 1, + STATE(1204), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7583), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93072,9 +104816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93083,6 +104828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93093,23 +104840,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39301] = 4, + [42088] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1152), 1, + STATE(1205), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7579), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93120,9 +104869,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93131,6 +104881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93141,23 +104893,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39353] = 4, + [42145] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1153), 1, + STATE(1206), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7575), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93168,9 +104922,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93179,6 +104934,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93189,23 +104946,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39405] = 4, + [42202] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1154), 1, + STATE(1207), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7571), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93216,9 +104975,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93227,6 +104987,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93237,23 +104999,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39457] = 4, + [42259] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1155), 1, + STATE(1208), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7567), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93264,9 +105028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93275,6 +105040,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93285,23 +105052,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39509] = 4, + [42316] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1156), 1, + STATE(1209), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7433), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93312,9 +105081,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93323,6 +105093,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93333,23 +105105,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39561] = 4, + [42373] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1157), 1, + STATE(1210), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7563), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93360,9 +105134,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93371,6 +105146,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93381,23 +105158,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39613] = 4, + [42430] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1158), 1, + STATE(1211), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7559), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93408,9 +105187,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93419,6 +105199,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93429,23 +105211,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39665] = 4, + [42487] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1159), 1, + STATE(1212), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7555), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93456,9 +105240,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93467,6 +105252,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93477,23 +105264,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39717] = 4, + [42544] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1160), 1, + STATE(1213), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7437), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93504,9 +105293,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93515,6 +105305,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93525,23 +105317,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39769] = 4, + [42601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1161), 1, + STATE(1214), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7537), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93552,9 +105346,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93563,6 +105358,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93573,23 +105370,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39821] = 4, + [42658] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1162), 1, + STATE(1215), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7461), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93597,12 +105396,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93611,6 +105411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93621,23 +105423,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39873] = 4, + [42715] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1163), 1, + STATE(1216), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7663), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93648,9 +105452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93659,6 +105464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93669,23 +105476,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39925] = 4, + [42772] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1164), 1, + STATE(1217), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7659), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93695,10 +105504,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93707,6 +105517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93717,23 +105529,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [39977] = 4, + [42829] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1165), 1, + STATE(1218), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7505), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93743,8 +105557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -93752,9 +105566,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93765,23 +105582,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40029] = 4, + [42886] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1166), 1, + STATE(1219), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7655), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93791,10 +105610,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93803,6 +105623,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93813,23 +105635,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40081] = 4, + [42943] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1167), 1, + STATE(1220), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7651), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93839,10 +105663,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93851,6 +105676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93861,23 +105688,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40133] = 4, + [43000] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1168), 1, + STATE(1221), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7647), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93887,10 +105716,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93899,6 +105729,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93909,23 +105741,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40185] = 4, + [43057] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1169), 1, + STATE(1222), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7643), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93935,10 +105769,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -93947,6 +105782,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -93957,23 +105794,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40237] = 4, + [43114] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1170), 1, + STATE(1223), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7677), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -93983,8 +105822,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -93995,6 +105834,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94005,23 +105847,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40289] = 4, + [43171] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1171), 1, + STATE(1224), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7639), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94031,10 +105875,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94043,6 +105888,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94053,23 +105900,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40341] = 4, + [43228] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1172), 1, + STATE(1225), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7635), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94079,10 +105928,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94091,6 +105941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94101,23 +105953,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40393] = 4, + [43285] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1173), 1, + STATE(1226), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7631), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94127,10 +105981,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94139,6 +105994,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94149,23 +106006,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40445] = 4, + [43342] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1174), 1, + STATE(1227), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7627), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94175,10 +106034,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94187,6 +106047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94197,23 +106059,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40497] = 4, + [43399] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1175), 1, + STATE(1228), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7655), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94223,18 +106087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94245,23 +106112,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40549] = 4, + [43456] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1176), 1, + STATE(1229), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7623), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94271,10 +106140,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94283,6 +106153,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94293,23 +106165,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40601] = 4, + [43513] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1177), 1, + STATE(1230), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7619), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94319,10 +106193,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94331,6 +106206,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94341,23 +106218,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40653] = 4, + [43570] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1178), 1, + STATE(1231), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7615), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94367,10 +106246,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94379,6 +106259,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94389,23 +106271,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40705] = 4, + [43627] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1179), 1, + STATE(1232), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7611), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94415,10 +106299,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94427,6 +106312,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94437,23 +106324,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40757] = 4, + [43684] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1180), 1, + STATE(1233), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7607), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94463,10 +106352,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94475,6 +106365,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94485,23 +106377,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40809] = 4, + [43741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1181), 1, + STATE(1234), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7603), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94511,10 +106405,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94523,6 +106418,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94533,23 +106430,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40861] = 4, + [43798] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1182), 1, + STATE(1235), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7429), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94559,10 +106458,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94571,6 +106471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94581,23 +106483,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40913] = 4, + [43855] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1183), 1, + STATE(1236), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7441), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94607,10 +106511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94619,6 +106524,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94629,23 +106536,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [40965] = 4, + [43912] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1184), 1, + STATE(1237), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7445), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94655,10 +106564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94667,6 +106577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94677,23 +106589,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41017] = 4, + [43969] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1185), 1, + STATE(1238), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7449), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94703,10 +106617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94715,6 +106630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94725,23 +106642,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41069] = 4, + [44026] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1186), 1, + STATE(1239), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7457), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94751,10 +106670,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94763,6 +106683,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94773,23 +106695,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41121] = 4, + [44083] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1187), 1, + STATE(1240), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7465), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94799,10 +106723,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94811,6 +106736,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94821,23 +106748,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41173] = 4, + [44140] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1188), 1, + STATE(1241), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7469), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94847,10 +106776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94859,6 +106789,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94869,23 +106801,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41225] = 4, + [44197] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1189), 1, + STATE(1242), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7473), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94895,10 +106829,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94907,6 +106842,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94917,23 +106854,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41277] = 4, + [44254] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1190), 1, + STATE(1243), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7477), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94944,9 +106883,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -94955,6 +106895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -94965,23 +106907,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41329] = 4, + [44311] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1191), 1, + STATE(1244), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7481), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -94991,10 +106935,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95003,6 +106948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95013,23 +106960,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41381] = 4, + [44368] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1192), 1, + STATE(1245), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7485), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95039,10 +106988,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95051,6 +107001,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95061,23 +107013,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41433] = 4, + [44425] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1193), 1, + STATE(1246), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7489), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95087,10 +107041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95099,6 +107054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95109,23 +107066,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41485] = 4, + [44482] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1194), 1, + STATE(1247), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7493), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95135,10 +107094,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95147,6 +107107,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95157,23 +107119,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41537] = 4, + [44539] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1195), 1, + STATE(1248), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7497), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95183,10 +107147,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95195,6 +107160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95205,23 +107172,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41589] = 4, + [44596] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1196), 1, + STATE(1249), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7501), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95231,10 +107200,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95243,6 +107213,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95253,23 +107225,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41641] = 4, + [44653] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1197), 1, + STATE(1250), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7505), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95279,10 +107253,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95291,6 +107266,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95301,23 +107278,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41693] = 4, + [44710] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1198), 1, + STATE(1251), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7509), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95327,10 +107306,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95339,6 +107319,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95349,23 +107331,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41745] = 4, + [44767] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1199), 1, + STATE(1252), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7513), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95375,10 +107359,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95387,6 +107372,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95397,23 +107384,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41797] = 4, + [44824] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1200), 1, + STATE(1253), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7517), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95423,10 +107412,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95435,6 +107425,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95445,23 +107437,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41849] = 4, + [44881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1201), 1, + STATE(1254), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7521), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95471,10 +107465,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95483,6 +107478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95493,23 +107490,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41901] = 4, + [44938] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1202), 1, + STATE(1255), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7525), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95520,8 +107519,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95530,34 +107531,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [41953] = 4, + [44995] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1203), 1, + STATE(1256), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7529), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95567,10 +107571,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95579,6 +107584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95589,23 +107596,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42005] = 4, + [45052] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1204), 1, + STATE(1257), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7533), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95615,10 +107624,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95627,6 +107637,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95637,23 +107649,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42057] = 4, + [45109] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1205), 1, + STATE(1258), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7673), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95663,8 +107677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -95675,6 +107689,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATendcan, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95685,23 +107702,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42109] = 4, + [45166] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1206), 1, + STATE(1259), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7541), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95711,10 +107730,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95723,6 +107743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95733,24 +107755,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42161] = 4, + [45223] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1207), 1, + STATE(1260), 1, sym_comment, - ACTIONS(6558), 11, + ACTIONS(7545), 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, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 30, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95761,8 +107784,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95771,9 +107796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -95781,23 +107808,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42213] = 4, + [45280] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1208), 1, + STATE(1261), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7549), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95807,10 +107836,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, + anon_sym_ATendisset, anon_sym_ATempty, anon_sym_ATauth, anon_sym_ATguest, @@ -95819,6 +107849,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95829,23 +107861,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42265] = 4, + [45337] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1209), 1, + STATE(1262), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7595), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95855,11 +107889,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -95867,6 +107902,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95877,23 +107914,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42317] = 4, + [45394] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1210), 1, + STATE(1263), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7453), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7451), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95903,18 +107942,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95925,23 +107967,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42369] = 4, + [45451] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1211), 1, + STATE(1264), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7713), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7711), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95951,18 +107995,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -95973,23 +108020,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42421] = 4, + [45508] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1212), 1, + STATE(1265), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7501), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -95999,8 +108048,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -96008,9 +108057,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96021,23 +108073,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42473] = 4, + [45565] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1213), 1, + STATE(1266), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7591), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96047,11 +108101,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96059,6 +108114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96069,23 +108126,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42525] = 4, + [45622] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1214), 1, + STATE(1267), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7587), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96095,11 +108154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96107,6 +108167,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96117,23 +108179,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42577] = 4, + [45679] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1215), 1, + STATE(1268), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7583), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96143,11 +108207,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96155,6 +108220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96165,23 +108232,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42629] = 4, + [45736] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1216), 1, + STATE(1269), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7579), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96191,11 +108260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96203,6 +108273,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96213,23 +108285,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42681] = 4, + [45793] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1217), 1, + STATE(1270), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7575), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96239,11 +108313,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96251,6 +108326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96261,23 +108338,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42733] = 4, + [45850] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1218), 1, + STATE(1271), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7571), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96287,11 +108366,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96299,6 +108379,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96309,23 +108391,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42785] = 4, + [45907] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1219), 1, + STATE(1272), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7567), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96335,11 +108419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96347,6 +108432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96357,37 +108444,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42837] = 4, + [45964] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1220), 1, + STATE(1273), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7433), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, 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_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96395,6 +108485,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96405,23 +108497,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42889] = 4, + [46021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1221), 1, + STATE(1274), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7563), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96431,11 +108525,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96443,6 +108538,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96453,23 +108550,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42941] = 4, + [46078] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1222), 1, + STATE(1275), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7559), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96479,11 +108578,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96491,6 +108591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96501,23 +108603,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [42993] = 4, + [46135] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1223), 1, + STATE(1276), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7555), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96527,11 +108631,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96539,6 +108644,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96549,23 +108656,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43045] = 4, + [46192] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1224), 1, + STATE(1277), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7437), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96575,11 +108684,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96587,6 +108697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96597,23 +108709,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43097] = 4, + [46249] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1225), 1, + STATE(1278), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7537), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96623,11 +108737,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96635,6 +108750,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96645,23 +108762,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43149] = 4, + [46306] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1226), 1, + STATE(1279), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7461), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96671,11 +108790,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96683,6 +108803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96693,23 +108815,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43201] = 4, + [46363] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1227), 1, + STATE(1280), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7663), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96719,11 +108843,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96731,6 +108856,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96741,23 +108868,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43253] = 4, + [46420] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1228), 1, + STATE(1281), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7659), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96766,12 +108895,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96779,6 +108909,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96789,23 +108921,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43305] = 4, + [46477] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1229), 1, + STATE(1282), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7497), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96815,8 +108949,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -96824,9 +108958,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96837,23 +108974,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43357] = 4, + [46534] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1230), 1, + STATE(1283), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7655), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96863,11 +109002,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96875,6 +109015,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96885,23 +109027,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43409] = 4, + [46591] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1231), 1, + STATE(1284), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7651), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96911,11 +109055,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96923,6 +109068,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96933,23 +109080,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43461] = 4, + [46648] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1232), 1, + STATE(1285), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7647), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -96959,11 +109108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -96971,6 +109121,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -96981,23 +109133,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43513] = 4, + [46705] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1233), 1, + STATE(1286), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7643), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97007,11 +109161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97019,6 +109174,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97029,23 +109186,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43565] = 4, + [46762] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1234), 1, + STATE(1287), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7677), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97055,8 +109214,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -97067,6 +109226,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97077,23 +109239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43617] = 4, + [46819] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1235), 1, + STATE(1288), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7639), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97103,11 +109267,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97115,6 +109280,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97125,23 +109292,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43669] = 4, + [46876] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1236), 1, + STATE(1289), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7635), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97151,11 +109320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97163,6 +109333,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97173,23 +109345,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43721] = 4, + [46933] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1237), 1, + STATE(1290), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7631), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97199,11 +109373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97211,6 +109386,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97221,23 +109398,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43773] = 4, + [46990] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1238), 1, + STATE(1291), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7627), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97247,11 +109426,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97259,6 +109439,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97269,23 +109451,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43825] = 4, + [47047] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1239), 1, + STATE(1292), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7599), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7597), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97295,18 +109479,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97317,23 +109504,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43877] = 4, + [47104] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1240), 1, + STATE(1293), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7623), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97343,11 +109532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97355,6 +109545,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97365,23 +109557,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43929] = 4, + [47161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1241), 1, + STATE(1294), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7619), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97391,11 +109585,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97403,6 +109598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97413,23 +109610,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [43981] = 4, + [47218] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1242), 1, + STATE(1295), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7615), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97439,11 +109638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97451,6 +109651,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97461,23 +109663,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44033] = 4, + [47275] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1243), 1, + STATE(1296), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7611), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97487,11 +109691,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97499,6 +109704,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97509,23 +109716,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44085] = 4, + [47332] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1244), 1, + STATE(1297), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7607), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97535,11 +109744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97547,6 +109757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97557,23 +109769,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44137] = 4, + [47389] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1245), 1, + STATE(1298), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7603), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97583,11 +109797,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97595,6 +109810,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97605,23 +109822,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44189] = 4, + [47446] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1246), 1, + STATE(1299), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7429), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97631,11 +109850,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97643,6 +109863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97653,23 +109875,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44241] = 4, + [47503] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1247), 1, + STATE(1300), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7441), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97679,11 +109903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97691,6 +109916,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97701,23 +109928,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44293] = 4, + [47560] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1248), 1, + STATE(1301), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7445), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97727,11 +109956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97739,6 +109969,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97749,23 +109981,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44345] = 4, + [47617] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1249), 1, + STATE(1302), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7449), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97775,11 +110009,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97787,6 +110022,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97797,23 +110034,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44397] = 4, + [47674] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1250), 1, + STATE(1303), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7457), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97823,11 +110062,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97835,6 +110075,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97845,23 +110087,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44449] = 4, + [47731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1251), 1, + STATE(1304), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7465), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97871,11 +110115,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97883,6 +110128,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97893,23 +110140,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44501] = 4, + [47788] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1252), 1, + STATE(1305), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7469), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97919,11 +110168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97931,6 +110181,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97941,23 +110193,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44553] = 4, + [47845] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1253), 1, + STATE(1306), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7473), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -97967,11 +110221,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -97979,6 +110234,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -97989,23 +110246,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44605] = 4, + [47902] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1254), 1, + STATE(1307), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7477), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98015,11 +110274,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98027,6 +110287,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98037,23 +110299,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44657] = 4, + [47959] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1255), 1, + STATE(1308), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7481), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98063,11 +110327,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98075,6 +110340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98085,23 +110352,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44709] = 4, + [48016] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1256), 1, + STATE(1309), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7485), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7483), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98111,11 +110380,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98123,6 +110393,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98133,23 +110405,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44761] = 4, + [48073] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1257), 1, + STATE(1310), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7489), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7487), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98159,11 +110433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98171,6 +110446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98181,23 +110458,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44813] = 4, + [48130] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1258), 1, + STATE(1311), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7493), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7491), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98207,11 +110486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98219,6 +110499,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98229,23 +110511,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44865] = 4, + [48187] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1259), 1, + STATE(1312), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7497), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7495), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98256,9 +110540,11 @@ static const uint16_t ts_small_parse_table[] = { 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_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98266,34 +110552,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44917] = 4, + [48244] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1260), 1, + STATE(1313), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7501), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7499), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98303,11 +110592,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98315,6 +110605,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98325,23 +110617,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [44969] = 4, + [48301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1261), 1, + STATE(1314), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7505), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7503), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98351,11 +110645,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98363,6 +110658,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98373,23 +110670,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45021] = 4, + [48358] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1262), 1, + STATE(1315), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7509), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7507), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98399,11 +110698,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98411,6 +110711,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98421,23 +110723,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45073] = 4, + [48415] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1263), 1, + STATE(1316), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7513), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7511), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98447,11 +110751,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98459,6 +110764,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98469,23 +110776,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45125] = 4, + [48472] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1264), 1, + STATE(1317), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7517), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7515), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98495,11 +110804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98507,6 +110817,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98517,23 +110829,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45177] = 4, + [48529] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1265), 1, + STATE(1318), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7521), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7519), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98543,11 +110857,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98555,6 +110870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98565,23 +110882,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45229] = 4, + [48586] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1266), 1, + STATE(1319), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7525), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7523), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98591,11 +110910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98603,6 +110923,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98613,23 +110935,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45281] = 4, + [48643] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1267), 1, + STATE(1320), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7529), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7527), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98639,11 +110963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98651,6 +110976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98661,23 +110988,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45333] = 4, + [48700] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1268), 1, + STATE(1321), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7533), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7531), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98687,11 +111016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98699,6 +111029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98709,23 +111041,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45385] = 4, + [48757] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1269), 1, + STATE(1322), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7673), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7671), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98735,8 +111069,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -98747,6 +111081,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATendcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98757,23 +111094,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45437] = 4, + [48814] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1270), 1, + STATE(1323), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7541), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7539), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98783,11 +111122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98795,6 +111135,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98805,23 +111147,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45489] = 4, + [48871] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1271), 1, + STATE(1324), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7545), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7543), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98831,11 +111175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, + anon_sym_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98843,6 +111188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98853,23 +111200,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45541] = 4, + [48928] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1272), 1, + STATE(1325), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7549), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7547), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98880,9 +111229,11 @@ static const uint16_t ts_small_parse_table[] = { 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_ATendempty, anon_sym_ATauth, anon_sym_ATguest, anon_sym_ATproduction, @@ -98890,10 +111241,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -98901,23 +111253,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45593] = 4, + [48985] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1273), 1, + STATE(1326), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7595), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7593), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98927,8 +111281,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -98936,9 +111290,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98949,23 +111306,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45645] = 4, + [49042] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1274), 1, + STATE(1327), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7405), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7403), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -98975,18 +111334,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, 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, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -98997,23 +111359,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45697] = 4, + [49099] = 6, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1275), 1, + ACTIONS(7715), 1, + anon_sym_LPAREN, + STATE(1328), 1, sym_comment, - ACTIONS(6478), 10, + STATE(2442), 1, + sym__directive_parameter, + ACTIONS(7395), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7393), 33, + ts_builtin_sym_end, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99023,7 +111391,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -99035,6 +111402,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99045,23 +111414,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45749] = 4, + [49160] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1276), 1, + STATE(1329), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7669), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7667), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99071,9 +111442,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, + anon_sym_ATendif, anon_sym_ATisset, anon_sym_ATempty, anon_sym_ATauth, @@ -99083,6 +111455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99093,34 +111467,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45801] = 4, + [49217] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1277), 1, + STATE(1330), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7591), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7589), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, 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, @@ -99128,9 +111504,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99141,23 +111520,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45853] = 4, + [49274] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1278), 1, + STATE(1331), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7587), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7585), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99167,8 +111548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99176,9 +111557,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99189,23 +111573,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45905] = 4, + [49331] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1279), 1, + STATE(1332), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7583), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7581), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99214,9 +111600,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99224,9 +111610,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99237,23 +111626,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [45957] = 4, + [49388] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1280), 1, + STATE(1333), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7579), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7577), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99262,9 +111653,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99272,9 +111663,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99285,23 +111679,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46009] = 4, + [49445] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1281), 1, + STATE(1334), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7575), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7573), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99310,9 +111706,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99320,9 +111716,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99333,23 +111732,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46061] = 4, + [49502] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1282), 1, + STATE(1335), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7571), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7569), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99358,9 +111759,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99368,9 +111769,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99381,23 +111785,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46113] = 4, + [49559] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1283), 1, + STATE(1336), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7567), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7565), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99406,9 +111812,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99416,9 +111822,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99429,23 +111838,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46165] = 4, + [49616] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1284), 1, + STATE(1337), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7433), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7431), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99454,9 +111865,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99464,9 +111875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99477,23 +111891,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46217] = 4, + [49673] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1285), 1, + STATE(1338), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7563), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7561), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99502,9 +111918,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99512,9 +111928,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99525,23 +111944,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46269] = 4, + [49730] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1286), 1, + STATE(1339), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7559), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7557), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99550,9 +111971,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99560,9 +111981,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99573,23 +111997,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46321] = 4, + [49787] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1287), 1, + STATE(1340), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7555), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7553), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99598,9 +112024,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99608,9 +112034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99621,23 +112050,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46373] = 4, + [49844] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1288), 1, + STATE(1341), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7437), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7435), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99646,9 +112077,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99656,9 +112087,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99669,23 +112103,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46425] = 4, + [49901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1289), 1, + STATE(1342), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7537), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7535), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99694,9 +112130,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99704,9 +112140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99717,23 +112156,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46477] = 4, + [49958] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1290), 1, + STATE(1343), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7461), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7459), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99742,9 +112183,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99752,9 +112193,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99765,23 +112209,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46529] = 4, + [50015] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1291), 1, + STATE(1344), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7663), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7661), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99790,9 +112236,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99800,9 +112246,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99813,23 +112262,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46581] = 4, + [50072] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1292), 1, + STATE(1345), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7659), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7657), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99838,9 +112289,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99848,9 +112299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99861,23 +112315,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46633] = 4, + [50129] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1293), 1, + STATE(1346), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7655), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7653), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99886,9 +112342,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99896,9 +112352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99909,23 +112368,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46685] = 4, + [50186] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1294), 1, + STATE(1347), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7651), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7649), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99934,9 +112395,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99944,9 +112405,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -99957,23 +112421,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46737] = 4, + [50243] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1295), 1, + STATE(1348), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7647), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7645), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -99982,9 +112448,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -99992,9 +112458,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100005,23 +112474,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46789] = 4, + [50300] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1296), 1, + STATE(1349), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7643), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7641), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100030,9 +112501,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100040,9 +112511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100053,23 +112527,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46841] = 4, + [50357] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1297), 1, + STATE(1350), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7677), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7675), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100078,9 +112554,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100091,6 +112567,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, + anon_sym_ATendcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100101,23 +112580,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46893] = 4, + [50414] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1298), 1, + STATE(1351), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7639), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7637), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100126,9 +112607,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100136,9 +112617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100149,23 +112633,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46945] = 4, + [50471] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1299), 1, + STATE(1352), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7635), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7633), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100174,9 +112660,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100184,9 +112670,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100197,23 +112686,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [46997] = 4, + [50528] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1300), 1, + STATE(1353), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7631), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7629), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100222,9 +112713,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100232,9 +112723,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100245,23 +112739,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47049] = 4, + [50585] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1301), 1, + STATE(1354), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7627), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7625), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100270,9 +112766,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100280,9 +112776,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100293,23 +112792,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47101] = 4, + [50642] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1302), 1, + STATE(1355), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7623), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7621), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100318,9 +112819,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100328,9 +112829,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100341,23 +112845,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47153] = 4, + [50699] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1303), 1, + STATE(1356), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7619), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7617), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100368,6 +112874,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100375,13 +112882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -100389,23 +112898,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47205] = 4, + [50756] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1304), 1, + STATE(1357), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7615), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7613), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100414,9 +112925,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100424,9 +112935,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100437,23 +112951,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47257] = 4, + [50813] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1305), 1, + STATE(1358), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7611), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7609), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100462,9 +112978,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100472,9 +112988,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100485,23 +113004,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47309] = 4, + [50870] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1306), 1, + STATE(1359), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7607), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7605), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100510,9 +113031,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100520,9 +113041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100533,23 +113057,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47361] = 4, + [50927] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1307), 1, + STATE(1360), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7603), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7601), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100558,9 +113084,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100568,9 +113094,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100581,23 +113110,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47413] = 4, + [50984] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1308), 1, + STATE(1361), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7429), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7427), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100606,9 +113137,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100616,9 +113147,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100629,23 +113163,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47465] = 4, + [51041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1309), 1, + STATE(1362), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7441), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7439), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100654,9 +113190,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100664,9 +113200,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100677,23 +113216,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47517] = 4, + [51098] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1310), 1, + STATE(1363), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7445), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7443), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100702,9 +113243,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100712,9 +113253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100725,23 +113269,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47569] = 4, + [51155] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1311), 1, + STATE(1364), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7449), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7447), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100750,9 +113296,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100760,9 +113306,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100773,23 +113322,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47621] = 4, + [51212] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1312), 1, + STATE(1365), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7457), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7455), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100798,9 +113349,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100808,9 +113359,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100821,23 +113375,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47673] = 4, + [51269] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1313), 1, + STATE(1366), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7465), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7463), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100846,9 +113402,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100856,9 +113412,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100869,23 +113428,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47725] = 4, + [51326] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1314), 1, + STATE(1367), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7469), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7467), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100894,9 +113455,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100904,9 +113465,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100917,23 +113481,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47777] = 4, + [51383] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1315), 1, + STATE(1368), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7473), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7471), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100941,10 +113507,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -100952,9 +113518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -100965,23 +113534,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47829] = 4, + [51440] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1316), 1, + STATE(1369), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7477), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7475), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -100990,9 +113561,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101000,9 +113571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101013,23 +113587,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47881] = 4, + [51497] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1317), 1, + STATE(1370), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7481), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7479), 34, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101040,6 +113616,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101047,13 +113624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATguest, anon_sym_ATproduction, anon_sym_ATenv, + anon_sym_ATendenv, anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -101061,23 +113640,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47933] = 4, + [51554] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1318), 1, + STATE(1371), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7673), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101086,9 +113667,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101099,6 +113680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101109,23 +113692,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [47985] = 4, + [51610] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1319), 1, + STATE(1372), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7677), 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, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101134,9 +113719,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + aux_sym_conditional_keyword_token1, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101147,6 +113732,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101157,23 +113744,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48037] = 4, + [51666] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1320), 1, + STATE(1373), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101182,7 +113770,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -101195,33 +113782,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48089] = 4, + [51721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1321), 1, + STATE(1374), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101230,7 +113821,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -101243,6 +113833,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101252,24 +113844,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [48141] = 4, + [51776] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1322), 1, + STATE(1375), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101278,8 +113872,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -101291,6 +113885,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101301,23 +113897,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48193] = 4, + [51831] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1323), 1, + STATE(1376), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101326,9 +113923,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101339,6 +113936,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101349,23 +113948,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48245] = 4, + [51886] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1324), 1, + STATE(1377), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7719), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7717), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101374,7 +113974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -101387,6 +113986,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101396,24 +113997,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [48297] = 4, + [51941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1325), 1, + STATE(1378), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101422,9 +114025,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101435,6 +114038,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101445,23 +114050,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48349] = 4, + [51996] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1326), 1, + STATE(1379), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7719), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7717), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101470,7 +114076,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -101483,6 +114088,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101491,25 +114098,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48401] = 4, + [52051] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1327), 1, + STATE(1380), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101518,8 +114127,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -101531,6 +114140,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101541,23 +114152,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48453] = 4, + [52106] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1328), 1, + STATE(1381), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7719), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7717), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101566,7 +114178,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -101579,6 +114190,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101586,26 +114199,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48505] = 4, + [52161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1329), 1, + STATE(1382), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101627,6 +114242,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101637,23 +114254,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48557] = 4, + [52216] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1330), 1, + STATE(1383), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101662,9 +114280,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101675,6 +114293,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101685,23 +114305,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48609] = 4, + [52271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1331), 1, + STATE(1384), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101712,6 +114333,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101722,34 +114344,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48661] = 4, + [52326] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1332), 1, + STATE(1385), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101758,9 +114382,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101771,6 +114395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101781,23 +114407,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48713] = 4, + [52381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1333), 1, + STATE(1386), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101806,9 +114433,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101819,6 +114446,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101829,23 +114458,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48765] = 4, + [52436] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1334), 1, + STATE(1387), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101854,9 +114484,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101867,6 +114497,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101877,23 +114509,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48817] = 4, + [52491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1335), 1, + STATE(1388), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101902,9 +114535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101915,6 +114548,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101925,23 +114560,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48869] = 4, + [52546] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1336), 1, + STATE(1389), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101949,10 +114585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -101963,6 +114599,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -101973,23 +114611,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48921] = 4, + [52601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1337), 1, + STATE(1390), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -101997,10 +114636,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102011,6 +114650,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102021,23 +114662,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [48973] = 4, + [52656] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1338), 1, + STATE(1391), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102045,10 +114687,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102059,6 +114701,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102069,23 +114713,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49025] = 4, + [52711] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1339), 1, + STATE(1392), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102093,10 +114738,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102107,6 +114752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102117,23 +114764,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49077] = 4, + [52766] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1340), 1, + STATE(1393), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102141,10 +114789,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102155,6 +114803,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102165,23 +114815,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49129] = 4, + [52821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1341), 1, + STATE(1394), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102189,10 +114840,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102203,6 +114854,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102213,23 +114866,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49181] = 4, + [52876] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1342), 1, + STATE(1395), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102237,10 +114891,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102251,6 +114905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102261,23 +114917,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49233] = 4, + [52931] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1343), 1, + STATE(1396), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102285,10 +114942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102299,6 +114956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102309,23 +114968,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49285] = 4, + [52986] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1344), 1, + STATE(1397), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102333,10 +114993,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102347,6 +115007,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102357,23 +115019,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49337] = 4, + [53041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1345), 1, + STATE(1398), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102381,10 +115044,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102395,6 +115058,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102405,23 +115070,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49389] = 4, + [53096] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1346), 1, + STATE(1399), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102429,10 +115095,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102443,6 +115109,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102453,23 +115121,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49441] = 4, + [53151] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1347), 1, + STATE(1400), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102477,10 +115146,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102491,6 +115160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102501,23 +115172,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49493] = 4, + [53206] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1348), 1, + STATE(1401), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102525,10 +115197,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102539,6 +115211,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102549,23 +115223,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49545] = 4, + [53261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1349), 1, + STATE(1402), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102573,10 +115248,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102587,6 +115262,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102597,23 +115274,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49597] = 4, + [53316] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1350), 1, + STATE(1403), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102621,10 +115299,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102635,6 +115313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102645,23 +115325,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49649] = 4, + [53371] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1351), 1, + STATE(1404), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102669,10 +115350,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102683,6 +115364,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102693,23 +115376,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49701] = 4, + [53426] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1352), 1, + STATE(1405), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102717,10 +115401,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102731,6 +115415,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102741,23 +115427,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49753] = 4, + [53481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1353), 1, + STATE(1406), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102765,10 +115452,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102779,6 +115466,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102789,23 +115478,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49805] = 4, + [53536] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1354), 1, + STATE(1407), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102813,10 +115503,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102827,6 +115517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102837,23 +115529,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49857] = 4, + [53591] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1355), 1, + STATE(1408), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102861,10 +115554,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102875,6 +115568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102885,34 +115580,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49909] = 4, + [53646] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1356), 1, + STATE(1409), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102923,6 +115619,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102933,23 +115631,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [49961] = 4, + [53701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1357), 1, + STATE(1410), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -102957,10 +115656,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -102971,6 +115670,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -102981,23 +115682,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50013] = 4, + [53756] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1358), 1, + STATE(1411), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103005,10 +115707,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103019,6 +115721,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103029,23 +115733,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50065] = 4, + [53811] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1359), 1, + STATE(1412), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103053,10 +115758,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103067,6 +115772,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103077,23 +115784,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50117] = 4, + [53866] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1360), 1, + STATE(1413), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103101,10 +115809,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103115,6 +115823,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103125,23 +115835,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50169] = 4, + [53921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1361), 1, + STATE(1414), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103149,10 +115860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103163,6 +115874,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103173,23 +115886,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50221] = 4, + [53976] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1362), 1, + STATE(1415), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103200,6 +115914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103210,34 +115925,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50273] = 4, + [54031] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1363), 1, + STATE(1416), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103245,10 +115962,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103259,6 +115976,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103269,23 +115988,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50325] = 4, + [54086] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1364), 1, + STATE(1417), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103293,10 +116013,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103307,6 +116027,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103317,23 +116039,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50377] = 4, + [54141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1365), 1, + STATE(1418), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103341,9 +116064,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -103355,6 +116078,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103365,23 +116090,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50429] = 4, + [54196] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1366), 1, + STATE(1419), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103389,10 +116115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103403,6 +116129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103413,23 +116141,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50481] = 4, + [54251] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1367), 1, + STATE(1420), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103437,10 +116166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103451,6 +116180,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103461,23 +116192,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50533] = 4, + [54306] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1368), 1, + STATE(1421), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103485,10 +116217,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103499,6 +116231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103509,23 +116243,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50585] = 4, + [54361] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1369), 1, + STATE(1422), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103533,10 +116268,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103547,6 +116282,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103557,23 +116294,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50637] = 4, + [54416] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1370), 1, + STATE(1423), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7719), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7717), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103581,7 +116319,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -103595,33 +116332,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50689] = 4, + [54471] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1371), 1, + STATE(1424), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103629,10 +116370,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103643,6 +116384,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103653,23 +116396,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50741] = 4, + [54526] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1372), 1, + STATE(1425), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103677,10 +116421,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103691,6 +116435,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103701,23 +116447,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50793] = 4, + [54581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1373), 1, + STATE(1426), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103725,10 +116472,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103739,6 +116486,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103749,23 +116498,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50845] = 4, + [54636] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1374), 1, + STATE(1427), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103787,6 +116537,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103797,23 +116549,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50897] = 4, + [54691] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1375), 1, + STATE(1428), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103821,10 +116574,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103835,6 +116588,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103845,23 +116600,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [50949] = 4, + [54746] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1376), 1, + STATE(1429), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103869,10 +116625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103883,6 +116639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103893,23 +116651,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51001] = 4, + [54801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1377), 1, + STATE(1430), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103917,10 +116676,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103931,6 +116690,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103941,23 +116702,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51053] = 4, + [54856] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1378), 1, + STATE(1431), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -103965,10 +116727,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -103979,6 +116741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -103989,23 +116753,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51105] = 4, + [54911] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1379), 1, + STATE(1432), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104013,10 +116778,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104027,6 +116792,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104037,23 +116804,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51157] = 4, + [54966] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1380), 1, + STATE(1433), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104061,10 +116829,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104075,6 +116843,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104085,23 +116855,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51209] = 4, + [55021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1381), 1, + STATE(1434), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104109,10 +116880,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104123,6 +116894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104133,23 +116906,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51261] = 4, + [55076] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1382), 1, + STATE(1435), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104157,10 +116931,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104171,6 +116945,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104181,23 +116957,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51313] = 4, + [55131] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1383), 1, + STATE(1436), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104205,10 +116982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104219,6 +116996,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104229,23 +117008,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51365] = 4, + [55186] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1384), 1, + STATE(1437), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104253,10 +117033,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104267,6 +117047,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104277,23 +117059,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51417] = 4, + [55241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1385), 1, + STATE(1438), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104301,10 +117084,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104315,6 +117098,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104325,23 +117110,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51469] = 4, + [55296] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1386), 1, + STATE(1439), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104349,10 +117135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104363,6 +117149,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104373,23 +117161,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51521] = 4, + [55351] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1387), 1, + STATE(1440), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104411,6 +117200,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104421,23 +117212,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51573] = 4, + [55406] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1388), 1, + STATE(1441), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104445,10 +117237,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104459,6 +117251,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104469,23 +117263,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51625] = 4, + [55461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1389), 1, + STATE(1442), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104493,9 +117288,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104507,6 +117302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104517,23 +117314,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51677] = 4, + [55516] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1390), 1, + STATE(1443), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104543,6 +117341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104554,34 +117353,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51729] = 4, + [55571] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1391), 1, + STATE(1444), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104589,9 +117390,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104603,6 +117404,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104613,23 +117416,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51781] = 4, + [55626] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1392), 1, + STATE(1445), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104637,9 +117441,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104651,6 +117455,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104661,33 +117467,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51833] = 4, + [55681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1393), 1, + STATE(1446), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104699,6 +117506,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104709,33 +117518,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51885] = 4, + [55736] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1394), 1, + STATE(1447), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104747,6 +117557,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104757,33 +117569,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51937] = 4, + [55791] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1395), 1, + STATE(1448), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104795,6 +117608,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104805,23 +117620,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [51989] = 4, + [55846] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1396), 1, + STATE(1449), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -104831,8 +117647,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -104843,6 +117659,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104853,33 +117671,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52041] = 4, + [55901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1397), 1, + STATE(1450), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104891,6 +117710,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104901,33 +117722,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52093] = 4, + [55956] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1398), 1, + STATE(1451), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104939,6 +117761,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104949,33 +117773,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52145] = 4, + [56011] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1399), 1, + STATE(1452), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -104987,6 +117812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -104997,33 +117824,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52197] = 4, + [56066] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1400), 1, + STATE(1453), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105035,6 +117863,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105045,33 +117875,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52249] = 4, + [56121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1401), 1, + STATE(1454), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105083,6 +117914,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105093,33 +117926,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52301] = 4, + [56176] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1402), 1, + STATE(1455), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105131,6 +117965,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105141,33 +117977,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52353] = 4, + [56231] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1403), 1, + STATE(1456), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105179,6 +118016,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105189,33 +118028,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52405] = 4, + [56286] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1404), 1, + STATE(1457), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105227,6 +118067,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105237,33 +118079,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52457] = 4, + [56341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1405), 1, + STATE(1458), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105275,6 +118118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105285,33 +118130,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52509] = 4, + [56396] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1406), 1, + STATE(1459), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105323,6 +118169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105333,33 +118181,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52561] = 4, + [56451] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1407), 1, + STATE(1460), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105371,6 +118220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105381,33 +118232,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52613] = 4, + [56506] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1408), 1, + STATE(1461), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105419,6 +118271,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105429,33 +118283,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52665] = 4, + [56561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1409), 1, + STATE(1462), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105467,6 +118322,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105477,33 +118334,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52717] = 4, + [56616] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1410), 1, + STATE(1463), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105515,6 +118373,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105525,33 +118385,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52769] = 4, + [56671] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1411), 1, + STATE(1464), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105563,6 +118424,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105573,33 +118436,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52821] = 4, + [56726] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1412), 1, + STATE(1465), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105611,6 +118475,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105621,33 +118487,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52873] = 4, + [56781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1413), 1, + STATE(1466), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105659,6 +118526,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105669,33 +118538,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52925] = 4, + [56836] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1414), 1, + STATE(1467), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105707,6 +118577,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105717,33 +118589,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [52977] = 4, + [56891] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1415), 1, + STATE(1468), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105755,6 +118628,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105765,33 +118640,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53029] = 4, + [56946] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1416), 1, + STATE(1469), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105803,6 +118679,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105813,33 +118691,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53081] = 4, + [57001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1417), 1, + STATE(1470), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105851,6 +118730,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105861,33 +118742,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53133] = 4, + [57056] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1418), 1, + STATE(1471), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105899,6 +118781,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105909,33 +118793,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53185] = 4, + [57111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1419), 1, + STATE(1472), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105947,6 +118832,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -105957,33 +118844,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53237] = 4, + [57166] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1420), 1, + STATE(1473), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -105995,6 +118883,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -106005,29 +118895,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53289] = 4, + [57221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1421), 1, + STATE(1474), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -106042,44 +118934,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53341] = 4, + [57276] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1422), 1, + STATE(1475), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106091,6 +118985,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -106101,33 +118997,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53393] = 4, + [57331] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1423), 1, + STATE(1476), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106139,6 +119036,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -106149,33 +119048,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53445] = 4, + [57386] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1424), 1, + STATE(1477), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106187,6 +119087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -106197,23 +119099,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53497] = 4, + [57441] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1425), 1, + STATE(1478), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106223,6 +119126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106234,10 +119138,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106245,23 +119150,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53549] = 4, + [57496] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1426), 1, + STATE(1479), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106271,8 +119177,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, - anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -106283,6 +119189,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -106293,33 +119201,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53601] = 4, + [57551] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1427), 1, + STATE(1480), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106331,6 +119240,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -106341,33 +119252,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53653] = 4, + [57606] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1428), 1, + STATE(1481), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106379,6 +119291,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -106389,23 +119303,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53705] = 4, + [57661] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1429), 1, + STATE(1482), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106415,6 +119330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106426,10 +119342,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106437,23 +119354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53757] = 4, + [57716] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1430), 1, + STATE(1483), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7719), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7717), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106474,34 +119392,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53809] = 4, + [57771] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1431), 1, + STATE(1484), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106511,6 +119432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106522,10 +119444,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106533,23 +119456,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53861] = 4, + [57826] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1432), 1, + STATE(1485), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106559,6 +119483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106570,10 +119495,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106581,23 +119507,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53913] = 4, + [57881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1433), 1, + STATE(1486), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106607,6 +119534,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106618,10 +119546,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106629,23 +119558,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [53965] = 4, + [57936] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1434), 1, + STATE(1487), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106655,6 +119585,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106666,10 +119597,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106677,23 +119609,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54017] = 4, + [57991] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1435), 1, + STATE(1488), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106703,6 +119636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106714,10 +119648,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106725,23 +119660,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54069] = 4, + [58046] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1436), 1, + STATE(1489), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106751,6 +119687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106762,10 +119699,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106773,23 +119711,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54121] = 4, + [58101] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1437), 1, + STATE(1490), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106799,6 +119738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106810,10 +119750,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106821,23 +119762,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54173] = 4, + [58156] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1438), 1, + STATE(1491), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106847,6 +119789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106858,10 +119801,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106869,23 +119813,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54225] = 4, + [58211] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1439), 1, + STATE(1492), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106895,6 +119840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106906,10 +119852,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106917,23 +119864,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54277] = 4, + [58266] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1440), 1, + STATE(1493), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106943,6 +119891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -106954,10 +119903,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -106965,23 +119915,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54329] = 4, + [58321] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1441), 1, + STATE(1494), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -106991,6 +119942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107002,10 +119954,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107013,23 +119966,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54381] = 4, + [58376] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1442), 1, + STATE(1495), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107039,6 +119993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107050,10 +120005,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107061,23 +120017,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54433] = 4, + [58431] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1443), 1, + STATE(1496), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107087,6 +120044,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107098,10 +120056,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107109,23 +120068,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54485] = 4, + [58486] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1444), 1, + STATE(1497), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107135,6 +120095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107146,10 +120107,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107157,23 +120119,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54537] = 4, + [58541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1445), 1, + STATE(1498), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107183,6 +120146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107194,10 +120158,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107205,23 +120170,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54589] = 4, + [58596] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1446), 1, + STATE(1499), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107231,6 +120197,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107242,10 +120209,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107253,28 +120221,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54641] = 4, + [58651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1447), 1, + STATE(1500), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -107290,10 +120260,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107301,23 +120272,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54693] = 4, + [58706] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1448), 1, + STATE(1501), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107327,6 +120299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107338,10 +120311,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107349,23 +120323,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54745] = 4, + [58761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1449), 1, + STATE(1502), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107375,6 +120350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107386,34 +120362,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54797] = 4, + [58816] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1450), 1, + STATE(1503), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107423,6 +120401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107434,10 +120413,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107445,23 +120425,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54849] = 4, + [58871] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1451), 1, + STATE(1504), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107471,6 +120452,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107482,10 +120464,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107493,23 +120476,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54901] = 4, + [58926] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1452), 1, + STATE(1505), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107519,6 +120503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107530,10 +120515,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107541,23 +120527,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [54953] = 4, + [58981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1453), 1, + STATE(1506), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107567,6 +120554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107578,10 +120566,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107589,23 +120578,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55005] = 4, + [59036] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1454), 1, + STATE(1507), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107615,6 +120605,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107626,10 +120617,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107637,23 +120629,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55057] = 4, + [59091] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1455), 1, + STATE(1508), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107661,6 +120654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -107674,10 +120668,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107685,23 +120680,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55109] = 4, + [59146] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1456), 1, + STATE(1509), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107711,6 +120707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107722,10 +120719,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107733,23 +120731,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55161] = 4, + [59201] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1457), 1, + STATE(1510), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107759,6 +120758,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107770,10 +120770,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107781,23 +120782,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55213] = 4, + [59256] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1458), 1, + STATE(1511), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107807,6 +120809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107818,10 +120821,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107829,23 +120833,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55265] = 4, + [59311] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1459), 1, + STATE(1512), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107855,6 +120860,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107866,10 +120872,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107877,23 +120884,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55317] = 4, + [59366] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1460), 1, + STATE(1513), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107903,6 +120911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107914,10 +120923,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107925,23 +120935,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55369] = 4, + [59421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1461), 1, + STATE(1514), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107951,6 +120962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -107962,10 +120974,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -107973,23 +120986,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55421] = 4, + [59476] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1462), 1, + STATE(1515), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -107999,6 +121013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108010,10 +121025,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108021,23 +121037,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55473] = 4, + [59531] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1463), 1, + STATE(1516), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108047,6 +121064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108058,10 +121076,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108069,23 +121088,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55525] = 4, + [59586] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1464), 1, + STATE(1517), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108095,6 +121115,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108106,10 +121127,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108117,23 +121139,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55577] = 4, + [59641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1465), 1, + STATE(1518), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108143,6 +121166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108154,10 +121178,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108165,23 +121190,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55629] = 4, + [59696] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1466), 1, + STATE(1519), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108191,6 +121217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108202,10 +121229,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108213,23 +121241,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55681] = 4, + [59751] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1467), 1, + STATE(1520), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108239,6 +121268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108250,10 +121280,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108261,23 +121292,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55733] = 4, + [59806] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1468), 1, + STATE(1521), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108287,6 +121319,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108298,10 +121331,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108309,23 +121343,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55785] = 4, + [59861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1469), 1, + STATE(1522), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108335,6 +121370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108346,10 +121382,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108357,23 +121394,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55837] = 4, + [59916] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1470), 1, + STATE(1523), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108383,6 +121421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108394,10 +121433,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108405,23 +121445,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55889] = 4, + [59971] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1471), 1, + STATE(1524), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108431,6 +121472,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108442,10 +121484,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108453,23 +121496,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55941] = 4, + [60026] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1472), 1, + STATE(1525), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108479,6 +121523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108490,10 +121535,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108501,23 +121547,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [55993] = 4, + [60081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1473), 1, + STATE(1526), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108527,6 +121574,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108538,10 +121586,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108549,23 +121598,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56045] = 4, + [60136] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1474), 1, + STATE(1527), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108574,6 +121624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -108586,10 +121637,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108597,23 +121649,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56097] = 4, + [60191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1475), 1, + STATE(1528), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108623,6 +121676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108634,10 +121688,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108645,23 +121700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56149] = 4, + [60246] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1476), 1, + STATE(1529), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108671,6 +121727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108682,10 +121739,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108693,23 +121751,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56201] = 4, + [60301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1477), 1, + STATE(1530), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108719,6 +121778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108730,10 +121790,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108741,23 +121802,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56253] = 4, + [60356] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1478), 1, + STATE(1531), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108767,6 +121829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108778,10 +121841,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108789,23 +121853,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56305] = 4, + [60411] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1479), 1, + STATE(1532), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108815,6 +121880,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108826,10 +121892,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108837,23 +121904,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56357] = 4, + [60466] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1480), 1, + STATE(1533), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108863,6 +121931,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108874,34 +121943,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56409] = 4, + [60521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1481), 1, + STATE(1534), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108911,6 +121982,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108922,10 +121994,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108933,23 +122006,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56461] = 4, + [60576] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1482), 1, + STATE(1535), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -108959,6 +122033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -108970,10 +122045,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, - anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -108981,23 +122057,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56513] = 4, + [60631] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1483), 1, + STATE(1536), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109018,6 +122095,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -109029,23 +122108,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56565] = 4, + [60686] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1484), 1, + STATE(1537), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109055,6 +122135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109066,44 +122147,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56617] = 4, + [60741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1485), 1, + STATE(1538), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109115,6 +122198,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -109125,33 +122210,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56669] = 4, + [60796] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1486), 1, + STATE(1539), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109163,6 +122249,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -109173,33 +122261,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56721] = 4, + [60851] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1487), 1, + STATE(1540), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109211,6 +122300,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -109221,23 +122312,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56773] = 4, + [60906] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1488), 1, + STATE(1541), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109247,6 +122339,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109258,34 +122351,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56825] = 4, + [60961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1489), 1, + STATE(1542), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109295,6 +122390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109306,34 +122402,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56877] = 4, + [61016] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1490), 1, + STATE(1543), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109343,6 +122441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109354,34 +122453,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56929] = 4, + [61071] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1491), 1, + STATE(1544), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7719), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7717), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109402,6 +122503,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -109413,23 +122516,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [56981] = 4, + [61126] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1492), 1, + STATE(1545), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109439,6 +122543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109450,34 +122555,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57033] = 4, + [61181] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1493), 1, + STATE(1546), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109487,6 +122594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109498,34 +122606,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57085] = 4, + [61236] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1494), 1, + STATE(1547), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109535,6 +122645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109546,34 +122657,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57137] = 4, + [61291] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1495), 1, + STATE(1548), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109583,6 +122696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109594,34 +122708,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57189] = 4, + [61346] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1496), 1, + STATE(1549), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109631,6 +122747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109642,34 +122759,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57241] = 4, + [61401] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1497), 1, + STATE(1550), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109679,6 +122798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109690,34 +122810,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57293] = 4, + [61456] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1498), 1, + STATE(1551), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109727,6 +122849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109738,34 +122861,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57345] = 4, + [61511] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1499), 1, + STATE(1552), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109775,6 +122900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109786,34 +122912,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57397] = 4, + [61566] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1500), 1, + STATE(1553), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109823,6 +122951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109834,34 +122963,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57449] = 4, + [61621] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1501), 1, + STATE(1554), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109871,6 +123002,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109882,34 +123014,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57501] = 4, + [61676] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1502), 1, + STATE(1555), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109919,6 +123053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109930,34 +123065,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57553] = 4, + [61731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1503), 1, + STATE(1556), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -109967,6 +123104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -109978,34 +123116,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57605] = 4, + [61786] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1504), 1, + STATE(1557), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110015,6 +123155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -110026,34 +123167,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57657] = 4, + [61841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1505), 1, + STATE(1558), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110063,6 +123206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -110074,34 +123218,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57709] = 4, + [61896] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1506), 1, + STATE(1559), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110111,6 +123257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -110122,34 +123269,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57761] = 4, + [61951] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1507), 1, + STATE(1560), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110159,6 +123308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -110170,39 +123320,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57813] = 4, + [62006] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1508), 1, + STATE(1561), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -110218,6 +123371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -110225,27 +123380,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57865] = 4, + [62061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1509), 1, + STATE(1562), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110255,6 +123410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, + anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -110266,34 +123422,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57917] = 4, + [62116] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1510), 1, + STATE(1563), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110302,6 +123460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110314,34 +123473,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [57969] = 4, + [62171] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1511), 1, + STATE(1564), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110350,6 +123511,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110362,34 +123524,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58021] = 4, + [62226] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1512), 1, + STATE(1565), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110398,6 +123562,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110410,34 +123575,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58073] = 4, + [62281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1513), 1, + STATE(1566), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110446,6 +123613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110458,34 +123626,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58125] = 4, + [62336] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1514), 1, + STATE(1567), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110494,6 +123664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110506,34 +123677,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58177] = 4, + [62391] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1515), 1, + STATE(1568), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110542,6 +123715,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110554,34 +123728,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58229] = 4, + [62446] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1516), 1, + STATE(1569), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110590,6 +123766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110602,34 +123779,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58281] = 4, + [62501] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1517), 1, + STATE(1570), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110650,34 +123829,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58333] = 4, + [62556] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1518), 1, + STATE(1571), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110686,6 +123868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110698,34 +123881,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58385] = 4, + [62611] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1519), 1, + STATE(1572), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110734,6 +123919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110746,34 +123932,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58437] = 4, + [62666] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1520), 1, + STATE(1573), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110782,6 +123970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110794,34 +123983,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58489] = 4, + [62721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1521), 1, + STATE(1574), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110830,6 +124021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110842,34 +124034,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58541] = 4, + [62776] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1522), 1, + STATE(1575), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110878,6 +124072,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110890,34 +124085,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58593] = 4, + [62831] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1523), 1, + STATE(1576), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110926,6 +124123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110938,34 +124136,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58645] = 4, + [62886] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1524), 1, + STATE(1577), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -110974,6 +124174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -110986,34 +124187,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58697] = 4, + [62941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1525), 1, + STATE(1578), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111022,6 +124225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111034,34 +124238,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58749] = 4, + [62996] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1526), 1, + STATE(1579), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111070,6 +124276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111082,34 +124289,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58801] = 4, + [63051] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1527), 1, + STATE(1580), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111118,6 +124327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111130,34 +124340,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58853] = 4, + [63106] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1528), 1, + STATE(1581), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111166,6 +124378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111178,34 +124391,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58905] = 4, + [63161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1529), 1, + STATE(1582), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111214,6 +124429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111226,34 +124442,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [58957] = 4, + [63216] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1530), 1, + STATE(1583), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111262,6 +124480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111274,34 +124493,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59009] = 4, + [63271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1531), 1, + STATE(1584), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111310,6 +124531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111322,34 +124544,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59061] = 4, + [63326] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1532), 1, + STATE(1585), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111358,6 +124582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111370,34 +124595,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59113] = 4, + [63381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1533), 1, + STATE(1586), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111406,6 +124633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111418,34 +124646,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59165] = 4, + [63436] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1534), 1, + STATE(1587), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111454,6 +124684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111466,34 +124697,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59217] = 4, + [63491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1535), 1, + STATE(1588), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111502,6 +124735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111514,34 +124748,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59269] = 4, + [63546] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1536), 1, + STATE(1589), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111550,6 +124786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111562,34 +124799,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59321] = 4, + [63601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1537), 1, + STATE(1590), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111598,6 +124837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111610,34 +124850,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59373] = 4, + [63656] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1538), 1, + STATE(1591), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111646,6 +124888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111658,34 +124901,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59425] = 4, + [63711] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1539), 1, + STATE(1592), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111694,6 +124939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111706,6 +124952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -111713,27 +124961,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59477] = 4, + [63766] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1540), 1, + STATE(1593), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111742,6 +124990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111754,34 +125003,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59529] = 4, + [63821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1541), 1, + STATE(1594), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111790,6 +125041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111802,34 +125054,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59581] = 4, + [63876] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1542), 1, + STATE(1595), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111838,6 +125092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111850,34 +125105,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, - anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59633] = 4, + [63931] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1543), 1, + STATE(1596), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -111886,6 +125143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111898,43 +125156,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59685] = 4, + [63986] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1544), 1, + STATE(1597), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -111947,6 +125207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -111957,29 +125219,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59737] = 4, + [64041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1545), 1, + STATE(1598), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -111995,33 +125257,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59789] = 4, + [64096] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1546), 1, + STATE(1599), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112030,8 +125296,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -112043,6 +125309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -112053,23 +125321,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59841] = 4, + [64151] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1547), 1, + STATE(1600), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112078,6 +125347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112090,34 +125360,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59893] = 4, + [64206] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1548), 1, + STATE(1601), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112126,6 +125398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112138,34 +125411,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59945] = 4, + [64261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1549), 1, + STATE(1602), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112174,6 +125449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112186,34 +125462,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [59997] = 4, + [64316] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1550), 1, + STATE(1603), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112222,6 +125500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112234,34 +125513,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60049] = 4, + [64371] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1551), 1, + STATE(1604), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112270,6 +125551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112282,34 +125564,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60101] = 4, + [64426] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1552), 1, + STATE(1605), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7719), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7717), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112330,34 +125614,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60153] = 4, + [64481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1553), 1, + STATE(1606), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112366,6 +125653,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112378,34 +125666,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60205] = 4, + [64536] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1554), 1, + STATE(1607), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112414,6 +125704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112426,34 +125717,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60257] = 4, + [64591] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1555), 1, + STATE(1608), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112462,6 +125755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112474,34 +125768,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60309] = 4, + [64646] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1556), 1, + STATE(1609), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112509,6 +125805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -112522,34 +125819,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60361] = 4, + [64701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1557), 1, + STATE(1610), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112558,6 +125857,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112570,34 +125870,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60413] = 4, + [64756] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1558), 1, + STATE(1611), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112606,6 +125908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112618,34 +125921,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60465] = 4, + [64811] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1559), 1, + STATE(1612), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112654,6 +125959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112666,34 +125972,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60517] = 4, + [64866] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1560), 1, + STATE(1613), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112702,6 +126010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112714,34 +126023,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60569] = 4, + [64921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1561), 1, + STATE(1614), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112750,6 +126061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112762,34 +126074,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60621] = 4, + [64976] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1562), 1, + STATE(1615), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112798,6 +126112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112810,34 +126125,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60673] = 4, + [65031] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1563), 1, + STATE(1616), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112846,6 +126163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112858,34 +126176,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60725] = 4, + [65086] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1564), 1, + STATE(1617), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112894,6 +126214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112906,34 +126227,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60777] = 4, + [65141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1565), 1, + STATE(1618), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112942,6 +126265,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -112954,34 +126278,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60829] = 4, + [65196] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1566), 1, + STATE(1619), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -112990,6 +126316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -113002,34 +126329,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60881] = 4, + [65251] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1567), 1, + STATE(1620), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113038,6 +126367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -113050,6 +126380,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -113058,26 +126390,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60933] = 4, + [65306] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1568), 1, + STATE(1621), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113086,6 +126418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -113098,34 +126431,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [60985] = 4, + [65361] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1569), 1, + STATE(1622), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113134,6 +126469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, + anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -113146,34 +126482,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61037] = 4, + [65416] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1570), 1, + STATE(1623), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113181,6 +126519,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113194,34 +126533,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61089] = 4, + [65471] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1571), 1, + STATE(1624), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113229,6 +126570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113242,34 +126584,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61141] = 4, + [65526] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1572), 1, + STATE(1625), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113277,6 +126621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113290,34 +126635,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61193] = 4, + [65581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1573), 1, + STATE(1626), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113325,6 +126672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113338,34 +126686,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61245] = 4, + [65636] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1574), 1, + STATE(1627), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113373,6 +126723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113386,34 +126737,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61297] = 4, + [65691] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1575), 1, + STATE(1628), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113421,6 +126774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113434,34 +126788,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61349] = 4, + [65746] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1576), 1, + STATE(1629), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113469,6 +126825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113482,34 +126839,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61401] = 4, + [65801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1577), 1, + STATE(1630), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113517,6 +126876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113530,34 +126890,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61453] = 4, + [65856] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1578), 1, + STATE(1631), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113565,6 +126927,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113578,34 +126941,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61505] = 4, + [65911] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1579), 1, + STATE(1632), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113626,34 +126991,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61557] = 4, + [65966] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1580), 1, + STATE(1633), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113661,6 +127029,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113674,39 +127043,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61609] = 4, + [66021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1581), 1, + STATE(1634), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -113722,34 +127094,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61661] = 4, + [66076] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1582), 1, + STATE(1635), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113757,6 +127131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113770,34 +127145,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61713] = 4, + [66131] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1583), 1, + STATE(1636), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113805,6 +127182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113818,34 +127196,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61765] = 4, + [66186] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1584), 1, + STATE(1637), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113853,6 +127233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113866,34 +127247,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61817] = 4, + [66241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1585), 1, + STATE(1638), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113901,6 +127284,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113914,34 +127298,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61869] = 4, + [66296] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1586), 1, + STATE(1639), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113949,6 +127335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -113962,34 +127349,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61921] = 4, + [66351] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1587), 1, + STATE(1640), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -113997,6 +127386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114010,34 +127400,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [61973] = 4, + [66406] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1588), 1, + STATE(1641), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114045,6 +127437,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114058,34 +127451,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62025] = 4, + [66461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1589), 1, + STATE(1642), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114093,6 +127488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114106,34 +127502,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62077] = 4, + [66516] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1590), 1, + STATE(1643), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114141,6 +127539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114154,34 +127553,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62129] = 4, + [66571] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1591), 1, + STATE(1644), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114189,6 +127590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114202,34 +127604,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62181] = 4, + [66626] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1592), 1, + STATE(1645), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114237,6 +127641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114250,34 +127655,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62233] = 4, + [66681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1593), 1, + STATE(1646), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114285,6 +127692,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114298,34 +127706,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62285] = 4, + [66736] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1594), 1, + STATE(1647), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114333,6 +127743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114346,34 +127757,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62337] = 4, + [66791] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1595), 1, + STATE(1648), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114381,6 +127794,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114394,34 +127808,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62389] = 4, + [66846] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1596), 1, + STATE(1649), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114429,6 +127845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114442,34 +127859,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62441] = 4, + [66901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1597), 1, + STATE(1650), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114477,6 +127896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114490,34 +127910,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62493] = 4, + [66956] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1598), 1, + STATE(1651), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114525,6 +127947,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114538,6 +127961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -114546,26 +127971,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62545] = 4, + [67011] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1599), 1, + STATE(1652), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114573,6 +127998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114586,34 +128012,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62597] = 4, + [67066] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1600), 1, + STATE(1653), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114621,6 +128049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114634,34 +128063,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62649] = 4, + [67121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1601), 1, + STATE(1654), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114669,6 +128100,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114682,34 +128114,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, - anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62701] = 4, + [67176] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1602), 1, + STATE(1655), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114717,6 +128151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114730,42 +128165,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62753] = 4, + [67231] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1603), 1, + STATE(1656), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114779,6 +128216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -114789,31 +128228,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62805] = 4, + [67286] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1604), 1, + STATE(1657), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114827,6 +128267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -114837,31 +128279,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62857] = 4, + [67341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1605), 1, + STATE(1658), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114875,6 +128318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -114885,23 +128330,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62909] = 4, + [67396] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1606), 1, + STATE(1659), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114909,6 +128355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -114922,34 +128369,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [62961] = 4, + [67451] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1607), 1, + STATE(1660), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -114970,34 +128419,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63013] = 4, + [67506] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1608), 1, + STATE(1661), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115005,6 +128457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115018,34 +128471,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63065] = 4, + [67561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1609), 1, + STATE(1662), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115053,6 +128508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115066,34 +128522,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63117] = 4, + [67616] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1610), 1, + STATE(1663), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115101,6 +128559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115114,34 +128573,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63169] = 4, + [67671] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1611), 1, + STATE(1664), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115149,6 +128610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115162,34 +128624,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63221] = 4, + [67726] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1612), 1, + STATE(1665), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7719), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7717), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115200,6 +128664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -115210,34 +128675,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63273] = 4, + [67781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1613), 1, + STATE(1666), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115245,6 +128712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115258,34 +128726,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63325] = 4, + [67836] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1614), 1, + STATE(1667), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115293,6 +128763,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115306,34 +128777,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63377] = 4, + [67891] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1615), 1, + STATE(1668), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115341,6 +128814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115354,34 +128828,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63429] = 4, + [67946] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1616), 1, + STATE(1669), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115389,6 +128865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115402,34 +128879,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63481] = 4, + [68001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1617), 1, + STATE(1670), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115437,6 +128916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115450,34 +128930,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63533] = 4, + [68056] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1618), 1, + STATE(1671), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115485,6 +128967,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115498,34 +128981,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63585] = 4, + [68111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1619), 1, + STATE(1672), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115533,6 +129018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115546,34 +129032,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63637] = 4, + [68166] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1620), 1, + STATE(1673), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115581,6 +129069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115594,34 +129083,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63689] = 4, + [68221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1621), 1, + STATE(1674), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115629,6 +129120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115642,34 +129134,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63741] = 4, + [68276] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1622), 1, + STATE(1675), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115677,6 +129171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115690,34 +129185,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63793] = 4, + [68331] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1623), 1, + STATE(1676), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115725,6 +129222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115738,34 +129236,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63845] = 4, + [68386] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1624), 1, + STATE(1677), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115773,6 +129273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115786,34 +129287,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63897] = 4, + [68441] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1625), 1, + STATE(1678), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115821,6 +129324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115834,34 +129338,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [63949] = 4, + [68496] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1626), 1, + STATE(1679), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115869,6 +129375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115882,6 +129389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -115891,25 +129400,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [64001] = 4, + [68551] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1627), 1, + STATE(1680), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115917,6 +129426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115930,34 +129440,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64053] = 4, + [68606] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1628), 1, + STATE(1681), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -115965,6 +129477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -115978,34 +129491,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64105] = 4, + [68661] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1629), 1, + STATE(1682), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116013,6 +129528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -116026,39 +129542,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64157] = 4, + [68716] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1630), 1, + STATE(1683), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116074,39 +129593,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64209] = 4, + [68771] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1631), 1, + STATE(1684), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116122,39 +129644,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64261] = 4, + [68826] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1632), 1, + STATE(1685), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116170,34 +129695,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64313] = 4, + [68881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1633), 1, + STATE(1686), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116208,6 +129735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -116218,39 +129746,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64365] = 4, + [68936] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1634), 1, + STATE(1687), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116266,39 +129797,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64417] = 4, + [68991] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1635), 1, + STATE(1688), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116314,39 +129848,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64469] = 4, + [69046] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1636), 1, + STATE(1689), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116362,39 +129899,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64521] = 4, + [69101] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1637), 1, + STATE(1690), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116410,39 +129950,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64573] = 4, + [69156] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1638), 1, + STATE(1691), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116458,39 +130001,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64625] = 4, + [69211] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1639), 1, + STATE(1692), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116506,39 +130052,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64677] = 4, + [69266] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1640), 1, + STATE(1693), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116554,34 +130103,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64729] = 4, + [69321] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1641), 1, + STATE(1694), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116602,39 +130153,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64781] = 4, + [69376] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1642), 1, + STATE(1695), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116650,39 +130205,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64833] = 4, + [69431] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1643), 1, + STATE(1696), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116698,39 +130256,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64885] = 4, + [69486] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1644), 1, + STATE(1697), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116746,34 +130307,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64937] = 4, + [69541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1645), 1, + STATE(1698), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116794,39 +130357,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [64989] = 4, + [69596] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1646), 1, + STATE(1699), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116842,39 +130409,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65041] = 4, + [69651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1647), 1, + STATE(1700), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116890,39 +130460,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65093] = 4, + [69706] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1648), 1, + STATE(1701), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -116938,34 +130511,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65145] = 4, + [69761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1649), 1, + STATE(1702), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -116986,34 +130561,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65197] = 4, + [69816] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1650), 1, + STATE(1703), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117034,34 +130612,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65249] = 4, + [69871] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1651), 1, + STATE(1704), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117082,34 +130663,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65301] = 4, + [69926] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1652), 1, + STATE(1705), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117130,34 +130714,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65353] = 4, + [69981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1653), 1, + STATE(1706), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117178,34 +130765,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65405] = 4, + [70036] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1654), 1, + STATE(1707), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117226,34 +130816,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65457] = 4, + [70091] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1655), 1, + STATE(1708), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117274,34 +130867,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65509] = 4, + [70146] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1656), 1, + STATE(1709), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117322,34 +130918,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65561] = 4, + [70201] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1657), 1, + STATE(1710), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117370,34 +130969,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [65613] = 4, + [70256] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1658), 1, + STATE(1711), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117418,34 +131020,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65665] = 4, + [70311] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1659), 1, + STATE(1712), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117466,34 +131071,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65717] = 4, + [70366] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1660), 1, + STATE(1713), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117514,34 +131122,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, - anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65769] = 4, + [70421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1661), 1, + STATE(1714), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117562,40 +131173,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65821] = 4, + [70476] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1662), 1, + STATE(1715), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -117611,9 +131224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -117621,29 +131237,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65873] = 4, + [70531] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1663), 1, + STATE(1716), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -117659,9 +131275,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -117669,23 +131288,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65925] = 4, + [70586] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1664), 1, + STATE(1717), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117706,6 +131326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -117717,23 +131339,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [65977] = 4, + [70641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1665), 1, + STATE(1718), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117754,34 +131377,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66029] = 4, + [70696] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1666), 1, + STATE(1719), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117802,34 +131428,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66081] = 4, + [70751] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1667), 1, + STATE(1720), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117850,34 +131479,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66133] = 4, + [70806] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1668), 1, + STATE(1721), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117898,34 +131530,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66185] = 4, + [70861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1669), 1, + STATE(1722), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117946,34 +131581,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66237] = 4, + [70916] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1670), 1, + STATE(1723), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -117994,34 +131632,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66289] = 4, + [70971] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1671), 1, + STATE(1724), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118042,34 +131683,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66341] = 4, + [71026] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1672), 1, + STATE(1725), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118090,34 +131734,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66393] = 4, + [71081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1673), 1, + STATE(1726), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118138,34 +131785,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66445] = 4, + [71136] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1674), 1, + STATE(1727), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118186,34 +131836,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66497] = 4, + [71191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1675), 1, + STATE(1728), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118234,34 +131887,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66549] = 4, + [71246] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1676), 1, + STATE(1729), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118282,34 +131938,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66601] = 4, + [71301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1677), 1, + STATE(1730), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118330,34 +131989,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66653] = 4, + [71356] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1678), 1, + STATE(1731), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118378,34 +132040,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66705] = 4, + [71411] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1679), 1, + STATE(1732), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118426,34 +132091,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66757] = 4, + [71466] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1680), 1, + STATE(1733), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118474,34 +132142,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66809] = 4, + [71521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1681), 1, + STATE(1734), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118522,34 +132193,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66861] = 4, + [71576] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1682), 1, + STATE(1735), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118570,34 +132244,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66913] = 4, + [71631] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1683), 1, + STATE(1736), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118618,34 +132295,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [66965] = 4, + [71686] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1684), 1, + STATE(1737), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118666,41 +132346,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67017] = 4, + [71741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1685), 1, + STATE(1738), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -118715,9 +132397,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -118725,23 +132410,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67069] = 4, + [71796] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1686), 1, + STATE(1739), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118762,34 +132448,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67121] = 4, + [71851] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1687), 1, + STATE(1740), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118810,34 +132499,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67173] = 4, + [71906] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1688), 1, + STATE(1741), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118858,34 +132550,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67225] = 4, + [71961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1689), 1, + STATE(1742), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118906,34 +132601,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67277] = 4, + [72016] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1690), 1, + STATE(1743), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -118954,34 +132652,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67329] = 4, + [72071] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1691), 1, + STATE(1744), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119002,34 +132703,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67381] = 4, + [72126] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1692), 1, + STATE(1745), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119050,34 +132754,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67433] = 4, + [72181] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1693), 1, + STATE(1746), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119098,34 +132805,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67485] = 4, + [72236] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1694), 1, + STATE(1747), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119146,34 +132856,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67537] = 4, + [72291] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1695), 1, + STATE(1748), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119194,34 +132907,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67589] = 4, + [72346] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1696), 1, + STATE(1749), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119242,34 +132958,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67641] = 4, + [72401] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1697), 1, + STATE(1750), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119290,34 +133009,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67693] = 4, + [72456] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1698), 1, + STATE(1751), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119338,34 +133060,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67745] = 4, + [72511] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1699), 1, + STATE(1752), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119386,34 +133111,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67797] = 4, + [72566] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1700), 1, + STATE(1753), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119434,34 +133162,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67849] = 4, + [72621] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1701), 1, + STATE(1754), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119482,34 +133213,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67901] = 4, + [72676] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1702), 1, + STATE(1755), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119530,34 +133264,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [67953] = 4, + [72731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1703), 1, + STATE(1756), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119578,34 +133315,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68005] = 4, + [72786] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1704), 1, + STATE(1757), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119626,34 +133366,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68057] = 4, + [72841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1705), 1, + STATE(1758), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119674,34 +133417,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68109] = 4, + [72896] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1706), 1, + STATE(1759), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119722,34 +133468,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68161] = 4, + [72951] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1707), 1, + STATE(1760), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119770,39 +133519,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68213] = 4, + [73006] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1708), 1, + STATE(1761), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -119818,6 +133571,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -119825,32 +133580,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68265] = 4, + [73061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1709), 1, + STATE(1762), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -119866,6 +133622,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -119873,32 +133631,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68317] = 4, + [73116] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1710), 1, + STATE(1763), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -119914,6 +133673,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -119921,27 +133682,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68369] = 4, + [73171] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1711), 1, + STATE(1764), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -119962,34 +133723,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68421] = 4, + [73226] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1712), 1, + STATE(1765), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120010,34 +133774,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68473] = 4, + [73281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1713), 1, + STATE(1766), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120058,34 +133825,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68525] = 4, + [73336] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1714), 1, + STATE(1767), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120106,34 +133876,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68577] = 4, + [73391] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1715), 1, + STATE(1768), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120154,41 +133927,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68629] = 4, + [73446] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1716), 1, + STATE(1769), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -120203,33 +133978,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68681] = 4, + [73501] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1717), 1, + STATE(1770), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120250,34 +134029,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68733] = 4, + [73556] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1718), 1, + STATE(1771), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120298,34 +134080,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68785] = 4, + [73611] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1719), 1, + STATE(1772), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120346,34 +134131,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, - anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68837] = 4, + [73666] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1720), 1, + STATE(1773), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120394,40 +134182,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68889] = 4, + [73721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1721), 1, + STATE(1774), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -120443,39 +134233,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68941] = 4, + [73776] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1722), 1, + STATE(1775), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -120491,33 +134284,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [68993] = 4, + [73831] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1723), 1, + STATE(1776), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120538,6 +134335,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -120549,23 +134348,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69045] = 4, + [73886] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1724), 1, + STATE(1777), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120586,34 +134386,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69097] = 4, + [73941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1725), 1, + STATE(1778), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120634,34 +134437,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69149] = 4, + [73996] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1726), 1, + STATE(1779), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120682,34 +134488,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69201] = 4, + [74051] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1727), 1, + STATE(1780), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120730,34 +134539,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69253] = 4, + [74106] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1728), 1, + STATE(1781), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120778,34 +134590,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69305] = 4, + [74161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1729), 1, + STATE(1782), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120826,34 +134641,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69357] = 4, + [74216] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1730), 1, + STATE(1783), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120874,34 +134692,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69409] = 4, + [74271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1731), 1, + STATE(1784), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120922,6 +134743,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -120929,27 +134752,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69461] = 4, + [74326] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1732), 1, + STATE(1785), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -120970,34 +134794,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69513] = 4, + [74381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1733), 1, + STATE(1786), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121018,34 +134845,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69565] = 4, + [74436] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1734), 1, + STATE(1787), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121066,34 +134896,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69617] = 4, + [74491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1735), 1, + STATE(1788), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121114,34 +134947,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69669] = 4, + [74546] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1736), 1, + STATE(1789), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121162,34 +134998,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69721] = 4, + [74601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1737), 1, + STATE(1790), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121210,34 +135049,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69773] = 4, + [74656] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1738), 1, + STATE(1791), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121258,34 +135100,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69825] = 4, + [74711] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1739), 1, + STATE(1792), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121306,34 +135151,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69877] = 4, + [74766] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1740), 1, + STATE(1793), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121354,34 +135202,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69929] = 4, + [74821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1741), 1, + STATE(1794), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121391,7 +135242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -121403,33 +135253,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [69981] = 4, + [74876] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1742), 1, + STATE(1795), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121450,34 +135304,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70033] = 4, + [74931] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1743), 1, + STATE(1796), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121498,34 +135355,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70085] = 4, + [74986] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1744), 1, + STATE(1797), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121533,7 +135393,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -121547,33 +135406,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70137] = 4, + [75041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1745), 1, + STATE(1798), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121594,34 +135457,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70189] = 4, + [75096] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1746), 1, + STATE(1799), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121642,34 +135508,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70241] = 4, + [75151] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1747), 1, + STATE(1800), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121690,34 +135559,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70293] = 4, + [75206] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1748), 1, + STATE(1801), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121738,34 +135610,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70345] = 4, + [75261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1749), 1, + STATE(1802), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121786,34 +135661,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70397] = 4, + [75316] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1750), 1, + STATE(1803), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121834,34 +135712,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70449] = 4, + [75371] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1751), 1, + STATE(1804), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121882,34 +135763,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70501] = 4, + [75426] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1752), 1, + STATE(1805), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121930,34 +135814,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70553] = 4, + [75481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1753), 1, + STATE(1806), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -121978,34 +135865,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70605] = 4, + [75536] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1754), 1, + STATE(1807), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122026,34 +135916,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70657] = 4, + [75591] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1755), 1, + STATE(1808), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122074,34 +135967,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70709] = 4, + [75646] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1756), 1, + STATE(1809), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122122,34 +136018,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70761] = 4, + [75701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1757), 1, + STATE(1810), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122170,34 +136069,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70813] = 4, + [75756] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1758), 1, + STATE(1811), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122218,34 +136120,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70865] = 4, + [75811] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1759), 1, + STATE(1812), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122266,34 +136171,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70917] = 4, + [75866] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1760), 1, + STATE(1813), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122314,34 +136222,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [70969] = 4, + [75921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1761), 1, + STATE(1814), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122362,34 +136273,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71021] = 4, + [75976] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1762), 1, + STATE(1815), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122410,34 +136324,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71073] = 4, + [76031] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1763), 1, + STATE(1816), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122458,34 +136375,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71125] = 4, + [76086] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1764), 1, + STATE(1817), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122506,34 +136426,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71177] = 4, + [76141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1765), 1, + STATE(1818), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122554,6 +136477,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -122561,27 +136486,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71229] = 4, + [76196] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1766), 1, + STATE(1819), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122602,34 +136528,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71281] = 4, + [76251] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1767), 1, + STATE(1820), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122650,34 +136579,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71333] = 4, + [76306] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1768), 1, + STATE(1821), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122698,34 +136630,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71385] = 4, + [76361] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1769), 1, + STATE(1822), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122746,39 +136681,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71437] = 4, + [76416] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1770), 1, + STATE(1823), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -122794,6 +136733,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -122802,31 +136743,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71489] = 4, + [76471] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1771), 1, + STATE(1824), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -122842,6 +136784,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -122850,31 +136794,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71541] = 4, + [76526] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1772), 1, + STATE(1825), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -122890,6 +136835,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -122898,26 +136845,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71593] = 4, + [76581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1773), 1, + STATE(1826), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122938,34 +136885,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71645] = 4, + [76636] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1774), 1, + STATE(1827), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -122986,34 +136936,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71697] = 4, + [76691] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1775), 1, + STATE(1828), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123021,7 +136974,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -123035,33 +136987,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71749] = 4, + [76746] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1776), 1, + STATE(1829), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123082,34 +137038,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71801] = 4, + [76801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1777), 1, + STATE(1830), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123130,34 +137089,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71853] = 4, + [76856] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1778), 1, + STATE(1831), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123178,34 +137140,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [71905] = 4, + [76911] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1779), 1, + STATE(1832), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123226,40 +137191,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [71957] = 4, + [76966] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1780), 1, + STATE(1833), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -123275,39 +137242,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [72009] = 4, + [77021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1781), 1, + STATE(1834), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -123323,33 +137293,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [72061] = 4, + [77076] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1782), 1, + STATE(1835), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123370,6 +137344,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -123381,23 +137357,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [72113] = 4, + [77131] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1783), 1, + STATE(1836), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123418,34 +137395,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72165] = 4, + [77186] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1784), 1, + STATE(1837), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123466,34 +137446,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72217] = 4, + [77241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1785), 1, + STATE(1838), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123514,34 +137497,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72269] = 4, + [77296] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1786), 1, + STATE(1839), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123562,34 +137548,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72321] = 4, + [77351] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1787), 1, + STATE(1840), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123610,34 +137599,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72373] = 4, + [77406] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1788), 1, + STATE(1841), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123658,34 +137650,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72425] = 4, + [77461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1789), 1, + STATE(1842), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123706,34 +137701,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72477] = 4, + [77516] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1790), 1, + STATE(1843), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123754,34 +137752,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72529] = 4, + [77571] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1791), 1, + STATE(1844), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123802,34 +137803,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72581] = 4, + [77626] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1792), 1, + STATE(1845), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123850,34 +137854,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72633] = 4, + [77681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1793), 1, + STATE(1846), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123898,6 +137905,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -123906,26 +137915,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72685] = 4, + [77736] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1794), 1, + STATE(1847), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123946,34 +137956,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72737] = 4, + [77791] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1795), 1, + STATE(1848), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -123994,34 +138007,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72789] = 4, + [77846] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1796), 1, + STATE(1849), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124042,34 +138058,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72841] = 4, + [77901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1797), 1, + STATE(1850), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124090,34 +138109,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72893] = 4, + [77956] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1798), 1, + STATE(1851), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124138,34 +138160,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72945] = 4, + [78011] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1799), 1, + STATE(1852), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124186,34 +138211,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [72997] = 4, + [78066] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1800), 1, + STATE(1853), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124234,34 +138262,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73049] = 4, + [78121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1801), 1, + STATE(1854), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124282,34 +138313,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73101] = 4, + [78176] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1802), 1, + STATE(1855), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124330,40 +138364,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73153] = 4, + [78231] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1803), 1, + STATE(1856), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -124379,33 +138415,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [73205] = 4, + [78286] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1804), 1, + STATE(1857), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124426,34 +138466,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73257] = 4, + [78341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1805), 1, + STATE(1858), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124474,34 +138517,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73309] = 4, + [78396] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1806), 1, + STATE(1859), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124522,34 +138568,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73361] = 4, + [78451] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1807), 1, + STATE(1860), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124570,34 +138619,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73413] = 4, + [78506] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1808), 1, + STATE(1861), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124618,34 +138670,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73465] = 4, + [78561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1809), 1, + STATE(1862), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124666,34 +138721,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73517] = 4, + [78616] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1810), 1, + STATE(1863), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124714,34 +138772,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73569] = 4, + [78671] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1811), 1, + STATE(1864), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124762,34 +138823,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73621] = 4, + [78726] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1812), 1, + STATE(1865), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124810,34 +138874,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73673] = 4, + [78781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1813), 1, + STATE(1866), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124858,34 +138925,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73725] = 4, + [78836] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1814), 1, + STATE(1867), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124906,34 +138976,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73777] = 4, + [78891] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1815), 1, + STATE(1868), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -124954,34 +139027,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73829] = 4, + [78946] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1816), 1, + STATE(1869), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125002,34 +139078,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73881] = 4, + [79001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1817), 1, + STATE(1870), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125050,34 +139129,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73933] = 4, + [79056] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1818), 1, + STATE(1871), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125098,34 +139180,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [73985] = 4, + [79111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1819), 1, + STATE(1872), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125146,82 +139231,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74037] = 4, + [79166] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1820), 1, + STATE(1873), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 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, - 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, - anon_sym_ATendvolt, - aux_sym_text_token3, - [74089] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1821), 1, - sym_comment, - ACTIONS(6440), 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(6438), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125242,34 +139282,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74141] = 4, + [79221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1822), 1, + STATE(1874), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125290,34 +139333,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74193] = 4, + [79276] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1823), 1, + STATE(1875), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125338,34 +139384,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74245] = 4, + [79331] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1824), 1, + STATE(1876), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125386,34 +139435,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74297] = 4, + [79386] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1825), 1, + STATE(1877), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125434,34 +139486,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74349] = 4, + [79441] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1826), 1, + STATE(1878), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125482,34 +139537,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74401] = 4, + [79496] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1827), 1, + STATE(1879), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125530,34 +139588,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74453] = 4, + [79551] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1828), 1, + STATE(1880), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125578,6 +139639,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -125586,26 +139649,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74505] = 4, + [79606] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1829), 1, + STATE(1881), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125626,34 +139690,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74557] = 4, + [79661] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1830), 1, + STATE(1882), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125674,34 +139741,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74609] = 4, + [79716] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1831), 1, + STATE(1883), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125722,34 +139792,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74661] = 4, + [79771] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1832), 1, + STATE(1884), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125770,39 +139843,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74713] = 4, + [79826] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1833), 1, + STATE(1885), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -125818,6 +139895,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -125827,25 +139906,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74765] = 4, + [79881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1834), 1, + STATE(1886), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125867,6 +139946,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -125877,28 +139958,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [74817] = 4, + [79936] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1835), 1, + STATE(1887), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -125914,6 +139997,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -125923,25 +140008,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74869] = 4, + [79991] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1836), 1, + STATE(1888), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -125962,34 +140047,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74921] = 4, + [80046] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1837), 1, + STATE(1889), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126010,34 +140098,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [74973] = 4, + [80101] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1838), 1, + STATE(1890), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126058,40 +140149,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75025] = 4, + [80156] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1839), 1, + STATE(1891), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -126107,39 +140200,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75077] = 4, + [80211] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1840), 1, + STATE(1892), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -126155,33 +140251,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75129] = 4, + [80266] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1841), 1, + STATE(1893), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126202,6 +140302,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -126213,23 +140315,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75181] = 4, + [80321] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1842), 1, + STATE(1894), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126237,6 +140340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -126250,9 +140354,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -126261,23 +140366,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75233] = 4, + [80376] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1843), 1, + STATE(1895), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126298,34 +140404,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75285] = 4, + [80431] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1844), 1, + STATE(1896), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126346,34 +140455,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75337] = 4, + [80486] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1845), 1, + STATE(1897), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126394,34 +140506,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75389] = 4, + [80541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1846), 1, + STATE(1898), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126442,34 +140557,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75441] = 4, + [80596] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1847), 1, + STATE(1899), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126490,34 +140608,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75493] = 4, + [80651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1848), 1, + STATE(1900), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126538,34 +140659,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75545] = 4, + [80706] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1849), 1, + STATE(1901), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126586,34 +140710,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75597] = 4, + [80761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1850), 1, + STATE(1902), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126634,34 +140761,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75649] = 4, + [80816] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1851), 1, + STATE(1903), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126682,34 +140812,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75701] = 4, + [80871] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1852), 1, + STATE(1904), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126730,34 +140863,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75753] = 4, + [80926] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1853), 1, + STATE(1905), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126778,34 +140914,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75805] = 4, + [80981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1854), 1, + STATE(1906), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126826,34 +140965,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75857] = 4, + [81036] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1855), 1, + STATE(1907), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126874,34 +141016,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [75909] = 4, + [81091] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1856), 1, + STATE(1908), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126922,9 +141067,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -126932,24 +141078,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [75961] = 4, + [81146] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1857), 1, + STATE(1909), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -126970,34 +141118,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76013] = 4, + [81201] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1858), 1, + STATE(1910), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127018,34 +141169,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76065] = 4, + [81256] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1859), 1, + STATE(1911), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127066,34 +141220,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76117] = 4, + [81311] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1860), 1, + STATE(1912), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127114,34 +141271,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76169] = 4, + [81366] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1861), 1, + STATE(1913), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127162,40 +141322,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76221] = 4, + [81421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1862), 1, + STATE(1914), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -127211,33 +141373,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76273] = 4, + [81476] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1863), 1, + STATE(1915), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127258,34 +141424,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76325] = 4, + [81531] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1864), 1, + STATE(1916), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127306,34 +141475,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76377] = 4, + [81586] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1865), 1, + STATE(1917), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127354,34 +141526,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76429] = 4, + [81641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1866), 1, + STATE(1918), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127402,34 +141577,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76481] = 4, + [81696] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1867), 1, + STATE(1919), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127450,34 +141628,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76533] = 4, + [81751] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1868), 1, + STATE(1920), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127498,34 +141679,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76585] = 4, + [81806] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1869), 1, + STATE(1921), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127546,34 +141730,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76637] = 4, + [81861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1870), 1, + STATE(1922), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127594,34 +141781,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76689] = 4, + [81916] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1871), 1, + STATE(1923), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127642,34 +141832,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76741] = 4, + [81971] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1872), 1, + STATE(1924), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127690,34 +141883,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76793] = 4, + [82026] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1873), 1, + STATE(1925), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127738,34 +141934,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76845] = 4, + [82081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1874), 1, + STATE(1926), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127786,34 +141985,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76897] = 4, + [82136] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1875), 1, + STATE(1927), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127834,34 +142036,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [76949] = 4, + [82191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1876), 1, + STATE(1928), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127882,34 +142087,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77001] = 4, + [82246] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1877), 1, + STATE(1929), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127930,34 +142138,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77053] = 4, + [82301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1878), 1, + STATE(1930), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -127978,34 +142189,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77105] = 4, + [82356] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1879), 1, + STATE(1931), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128026,34 +142240,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77157] = 4, + [82411] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1880), 1, + STATE(1932), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128074,34 +142291,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77209] = 4, + [82466] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1881), 1, + STATE(1933), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128122,34 +142342,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77261] = 4, + [82521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1882), 1, + STATE(1934), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128170,34 +142393,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77313] = 4, + [82576] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1883), 1, + STATE(1935), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128218,34 +142444,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77365] = 4, + [82631] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1884), 1, + STATE(1936), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128266,34 +142495,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77417] = 4, + [82686] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1885), 1, + STATE(1937), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128314,34 +142546,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77469] = 4, + [82741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1886), 1, + STATE(1938), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128362,34 +142597,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77521] = 4, + [82796] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1887), 1, + STATE(1939), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128410,34 +142648,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77573] = 4, + [82851] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1888), 1, + STATE(1940), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128458,34 +142699,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77625] = 4, + [82906] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1889), 1, + STATE(1941), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128506,34 +142750,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77677] = 4, + [82961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1890), 1, + STATE(1942), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128554,9 +142801,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -128564,24 +142812,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [77729] = 4, + [83016] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1891), 1, + STATE(1943), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128602,34 +142852,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77781] = 4, + [83071] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1892), 1, + STATE(1944), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128650,40 +142903,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77833] = 4, + [83126] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1893), 1, + STATE(1945), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -128699,33 +142954,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77885] = 4, + [83181] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1894), 1, + STATE(1946), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128746,39 +143005,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77937] = 4, + [83236] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1895), 1, + STATE(1947), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -128794,9 +143057,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -128805,28 +143069,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [77989] = 4, + [83291] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1896), 1, + STATE(1948), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -128842,9 +143108,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -128853,24 +143120,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78041] = 4, + [83346] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1897), 1, + STATE(1949), 1, sym_comment, - ACTIONS(6468), 11, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 30, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -128891,9 +143158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, + anon_sym_ATendfor, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -128901,29 +143171,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78093] = 4, + [83401] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1898), 1, + STATE(1950), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -128939,6 +143209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -128946,32 +143218,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78145] = 4, + [83456] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1899), 1, + STATE(1951), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -128987,6 +143260,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -128994,26 +143269,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78197] = 4, + [83511] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1900), 1, + STATE(1952), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129034,6 +143311,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -129045,24 +143324,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78249] = 4, + [83566] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1901), 1, + STATE(1953), 1, sym_comment, - ACTIONS(6474), 11, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 30, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129083,34 +143362,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78301] = 4, + [83621] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1902), 1, + STATE(1954), 1, sym_comment, - ACTIONS(6478), 11, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 30, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129131,34 +143413,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78353] = 4, + [83676] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1903), 1, + STATE(1955), 1, sym_comment, - ACTIONS(6482), 11, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 30, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129179,34 +143464,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78405] = 4, + [83731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1904), 1, + STATE(1956), 1, sym_comment, - ACTIONS(6486), 11, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 30, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129227,34 +143515,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78457] = 4, + [83786] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1905), 1, + STATE(1957), 1, sym_comment, - ACTIONS(6490), 11, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 30, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129275,34 +143566,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78509] = 4, + [83841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1906), 1, + STATE(1958), 1, sym_comment, - ACTIONS(6494), 11, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 30, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129323,34 +143617,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78561] = 4, + [83896] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1907), 1, + STATE(1959), 1, sym_comment, - ACTIONS(6498), 11, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 30, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129371,34 +143668,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78613] = 4, + [83951] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1908), 1, + STATE(1960), 1, sym_comment, - ACTIONS(6504), 11, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 30, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129419,34 +143719,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78665] = 4, + [84006] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1909), 1, + STATE(1961), 1, sym_comment, - ACTIONS(6288), 11, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 30, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129467,34 +143770,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78717] = 4, + [84061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1910), 1, + STATE(1962), 1, sym_comment, - ACTIONS(6292), 11, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 30, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129515,34 +143821,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78769] = 4, + [84116] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1911), 1, + STATE(1963), 1, sym_comment, - ACTIONS(6296), 11, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 30, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129563,34 +143872,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78821] = 4, + [84171] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1912), 1, + STATE(1964), 1, sym_comment, - ACTIONS(6300), 11, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 30, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129611,34 +143923,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78873] = 4, + [84226] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1913), 1, + STATE(1965), 1, sym_comment, - ACTIONS(6304), 11, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 30, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129659,34 +143974,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78925] = 4, + [84281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1914), 1, + STATE(1966), 1, sym_comment, - ACTIONS(6308), 11, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 30, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129707,34 +144025,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [78977] = 4, + [84336] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1915), 1, + STATE(1967), 1, sym_comment, - ACTIONS(6312), 11, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 30, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129755,34 +144076,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79029] = 4, + [84391] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1916), 1, + STATE(1968), 1, sym_comment, - ACTIONS(6320), 11, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 30, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129803,34 +144127,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79081] = 4, + [84446] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1917), 1, + STATE(1969), 1, sym_comment, - ACTIONS(6328), 11, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 30, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129851,40 +144178,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79133] = 4, + [84501] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1918), 1, + STATE(1970), 1, sym_comment, - ACTIONS(6344), 11, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 30, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -129899,9 +144230,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -129909,24 +144242,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79185] = 4, + [84556] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1919), 1, + STATE(1971), 1, sym_comment, - ACTIONS(6348), 11, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7637), 33, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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_ATendpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [84611] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(1972), 1, + sym_comment, + ACTIONS(7635), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 30, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129947,34 +144331,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79237] = 4, + [84666] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1920), 1, + STATE(1973), 1, sym_comment, - ACTIONS(6352), 11, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 30, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -129995,39 +144382,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79289] = 4, + [84721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1921), 1, + STATE(1974), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -130043,6 +144433,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -130050,27 +144442,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79341] = 4, + [84776] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1922), 1, + STATE(1975), 1, sym_comment, - ACTIONS(6360), 11, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 30, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130091,34 +144484,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79393] = 4, + [84831] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1923), 1, + STATE(1976), 1, sym_comment, - ACTIONS(6364), 11, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 30, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130139,34 +144535,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79445] = 4, + [84886] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1924), 1, + STATE(1977), 1, sym_comment, - ACTIONS(6368), 11, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 30, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130187,34 +144586,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79497] = 4, + [84941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1925), 1, + STATE(1978), 1, sym_comment, - ACTIONS(6372), 11, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 30, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130235,34 +144637,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79549] = 4, + [84996] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1926), 1, + STATE(1979), 1, sym_comment, - ACTIONS(6380), 11, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 30, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130283,34 +144688,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79601] = 4, + [85051] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1927), 1, + STATE(1980), 1, sym_comment, - ACTIONS(6384), 11, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 30, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130331,34 +144739,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79653] = 4, + [85106] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1928), 1, + STATE(1981), 1, sym_comment, - ACTIONS(6388), 11, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 30, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130379,34 +144790,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79705] = 4, + [85161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1929), 1, + STATE(1982), 1, sym_comment, - ACTIONS(6392), 11, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 30, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130427,34 +144841,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79757] = 4, + [85216] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1930), 1, + STATE(1983), 1, sym_comment, - ACTIONS(6396), 11, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 30, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130475,34 +144892,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79809] = 4, + [85271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1931), 1, + STATE(1984), 1, sym_comment, - ACTIONS(6400), 11, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 30, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130523,34 +144943,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79861] = 4, + [85326] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1932), 1, + STATE(1985), 1, sym_comment, - ACTIONS(6404), 11, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 30, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130571,34 +144994,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79913] = 4, + [85381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1933), 1, + STATE(1986), 1, sym_comment, - ACTIONS(6412), 11, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 30, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130619,34 +145045,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [79965] = 4, + [85436] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1934), 1, + STATE(1987), 1, sym_comment, - ACTIONS(6416), 11, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 30, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130667,34 +145096,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80017] = 4, + [85491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1935), 1, + STATE(1988), 1, sym_comment, - ACTIONS(6420), 11, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 30, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130715,34 +145147,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80069] = 4, + [85546] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1936), 1, + STATE(1989), 1, sym_comment, - ACTIONS(6424), 11, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 30, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130763,34 +145198,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80121] = 4, + [85601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1937), 1, + STATE(1990), 1, sym_comment, - ACTIONS(6432), 11, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 30, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130811,34 +145249,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80173] = 4, + [85656] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1938), 1, + STATE(1991), 1, sym_comment, - ACTIONS(6436), 11, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 30, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130859,34 +145300,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80225] = 4, + [85711] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1939), 1, + STATE(1992), 1, sym_comment, - ACTIONS(6440), 11, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 30, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130907,34 +145351,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80277] = 4, + [85766] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1940), 1, + STATE(1993), 1, sym_comment, - ACTIONS(6444), 11, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 30, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -130955,34 +145402,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80329] = 4, + [85821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1941), 1, + STATE(1994), 1, sym_comment, - ACTIONS(6448), 11, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 30, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131003,34 +145453,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80381] = 4, + [85876] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1942), 1, + STATE(1995), 1, sym_comment, - ACTIONS(6452), 11, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 30, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131051,34 +145504,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80433] = 4, + [85931] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1943), 1, + STATE(1996), 1, sym_comment, - ACTIONS(6280), 11, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 30, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131099,34 +145555,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80485] = 4, + [85986] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1944), 1, + STATE(1997), 1, sym_comment, - ACTIONS(6456), 11, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 30, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131147,34 +145606,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80537] = 4, + [86041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1945), 1, + STATE(1998), 1, sym_comment, - ACTIONS(6460), 11, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 30, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131195,34 +145657,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80589] = 4, + [86096] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1946), 1, + STATE(1999), 1, sym_comment, - ACTIONS(6464), 11, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 30, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131243,34 +145708,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80641] = 4, + [86151] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1947), 1, + STATE(2000), 1, sym_comment, - ACTIONS(6316), 11, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 30, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131291,34 +145759,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80693] = 4, + [86206] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1948), 1, + STATE(2001), 1, sym_comment, - ACTIONS(6324), 11, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 30, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131339,34 +145810,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80745] = 4, + [86261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1949), 1, + STATE(2002), 1, sym_comment, - ACTIONS(6332), 11, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 30, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131387,34 +145861,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80797] = 4, + [86316] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1950), 1, + STATE(2003), 1, sym_comment, - ACTIONS(6336), 11, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 30, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131435,40 +145912,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80849] = 4, + [86371] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1951), 1, + STATE(2004), 1, sym_comment, - ACTIONS(6356), 11, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 30, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, + anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -131483,9 +145964,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -131493,29 +145976,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80901] = 4, + [86426] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1952), 1, + STATE(2005), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -131531,6 +146014,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -131538,27 +146023,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [80953] = 4, + [86481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1953), 1, + STATE(2006), 1, sym_comment, - ACTIONS(6376), 11, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 30, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131579,34 +146065,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81005] = 4, + [86536] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1954), 1, + STATE(2007), 1, sym_comment, - ACTIONS(6408), 11, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 30, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131627,34 +146116,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81057] = 4, + [86591] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1955), 1, + STATE(2008), 1, sym_comment, - ACTIONS(6428), 11, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 30, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131675,38 +146167,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81109] = 4, + [86646] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1956), 1, + STATE(2009), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -131722,6 +146219,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -131730,32 +146229,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, - anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81161] = 4, + [86701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1957), 1, + STATE(2010), 1, sym_comment, - ACTIONS(6512), 11, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 30, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -131771,9 +146270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -131781,24 +146282,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81213] = 4, + [86756] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1958), 1, + STATE(2011), 1, sym_comment, - ACTIONS(6508), 11, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 30, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131819,33 +146320,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, + anon_sym_ATendforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81265] = 4, + [86811] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1959), 1, + STATE(2012), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131866,6 +146371,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -131874,26 +146381,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, - anon_sym_ATendvolt, aux_sym_text_token3, - [81317] = 4, + [86866] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1960), 1, + STATE(2013), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131914,34 +146422,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81369] = 4, + [86921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1961), 1, + STATE(2014), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -131962,34 +146473,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81421] = 4, + [86976] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1962), 1, + STATE(2015), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132010,35 +146524,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81473] = 4, + [87031] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1963), 1, + STATE(2016), 1, sym_comment, - ACTIONS(6520), 11, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 30, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132059,34 +146575,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - anon_sym_ATbreak, + aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81525] = 4, + [87086] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1964), 1, + STATE(2017), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, - ts_builtin_sym_end, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132107,6 +146626,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132115,26 +146636,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81577] = 4, + [87141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1965), 1, + STATE(2018), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, - ts_builtin_sym_end, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132155,6 +146677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132163,26 +146687,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81629] = 4, + [87196] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1966), 1, + STATE(2019), 1, sym_comment, - ACTIONS(6562), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6560), 31, - ts_builtin_sym_end, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132203,6 +146728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132211,31 +146738,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81681] = 4, + [87251] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1967), 1, + STATE(2020), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -132251,6 +146779,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132259,25 +146789,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81733] = 4, + [87306] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1968), 1, + STATE(2021), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132287,7 +146819,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -132299,6 +146830,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132307,31 +146840,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81785] = 4, + [87361] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1969), 1, + STATE(2022), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -132347,6 +146881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132355,31 +146891,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81837] = 4, + [87416] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1970), 1, + STATE(2023), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -132395,6 +146932,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132403,26 +146942,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81889] = 4, + [87471] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1971), 1, + STATE(2024), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, - ts_builtin_sym_end, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132443,6 +146983,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132451,26 +146993,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81941] = 4, + [87526] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1972), 1, + STATE(2025), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, - ts_builtin_sym_end, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132491,6 +147034,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132499,31 +147044,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [81993] = 4, + [87581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1973), 1, + STATE(2026), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -132539,6 +147085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132547,26 +147095,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82045] = 4, + [87636] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1974), 1, + STATE(2027), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, - ts_builtin_sym_end, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132587,6 +147136,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132595,31 +147146,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82097] = 4, + [87691] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1975), 1, + STATE(2028), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -132635,6 +147187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132643,31 +147197,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82149] = 4, + [87746] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1976), 1, + STATE(2029), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -132683,6 +147238,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132691,31 +147248,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82201] = 4, + [87801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1977), 1, + STATE(2030), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -132731,6 +147289,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132739,31 +147299,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82253] = 4, + [87856] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1978), 1, + STATE(2031), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -132779,6 +147340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132787,26 +147350,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82305] = 4, + [87911] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1979), 1, + STATE(2032), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, - ts_builtin_sym_end, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132814,6 +147378,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -132827,6 +147392,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132837,24 +147404,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82357] = 4, + [87966] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1980), 1, + STATE(2033), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, - ts_builtin_sym_end, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132875,6 +147442,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132883,26 +147452,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82409] = 4, + [88021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1981), 1, + STATE(2034), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, - ts_builtin_sym_end, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -132923,6 +147493,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132931,31 +147503,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82461] = 4, + [88076] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1982), 1, + STATE(2035), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -132971,6 +147544,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -132979,31 +147554,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82513] = 4, + [88131] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1983), 1, + STATE(2036), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133019,6 +147595,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133027,26 +147605,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82565] = 4, + [88186] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1984), 1, + STATE(2037), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, - ts_builtin_sym_end, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133067,6 +147646,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133075,26 +147656,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82617] = 4, + [88241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1985), 1, + STATE(2038), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, - ts_builtin_sym_end, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133115,6 +147697,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133123,26 +147707,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82669] = 4, + [88296] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1986), 1, + STATE(2039), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, - ts_builtin_sym_end, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133163,6 +147748,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133171,26 +147758,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82721] = 4, + [88351] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1987), 1, + STATE(2040), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, - ts_builtin_sym_end, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133211,6 +147799,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133219,31 +147809,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82773] = 4, + [88406] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1988), 1, + STATE(2041), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133259,6 +147850,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133267,31 +147860,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82825] = 4, + [88461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1989), 1, + STATE(2042), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133307,6 +147901,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133315,31 +147911,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82877] = 4, + [88516] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1990), 1, + STATE(2043), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133355,6 +147952,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133363,31 +147962,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82929] = 4, + [88571] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1991), 1, + STATE(2044), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133403,6 +148003,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133411,31 +148013,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [82981] = 4, + [88626] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1992), 1, + STATE(2045), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133451,6 +148054,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133459,31 +148064,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83033] = 4, + [88681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1993), 1, + STATE(2046), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133499,6 +148105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133507,31 +148115,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83085] = 4, + [88736] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1994), 1, + STATE(2047), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133547,6 +148156,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133555,26 +148166,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83137] = 4, + [88791] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1995), 1, + STATE(2048), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, - ts_builtin_sym_end, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133595,6 +148207,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133603,26 +148217,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83189] = 4, + [88846] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1996), 1, + STATE(2049), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, - ts_builtin_sym_end, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133643,6 +148258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133651,26 +148268,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83241] = 4, + [88901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1997), 1, + STATE(2050), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, - ts_builtin_sym_end, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133691,6 +148309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133699,25 +148319,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83293] = 4, + [88956] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1998), 1, + STATE(2051), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133727,7 +148349,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -133739,6 +148360,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133747,31 +148370,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83345] = 4, + [89011] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(1999), 1, + STATE(2052), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133787,6 +148411,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133795,26 +148421,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83397] = 4, + [89066] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2000), 1, + STATE(2053), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, - ts_builtin_sym_end, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133835,6 +148462,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133843,26 +148472,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83449] = 4, + [89121] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2001), 1, + STATE(2054), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, - ts_builtin_sym_end, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133883,6 +148513,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133891,26 +148523,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83501] = 4, + [89176] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2002), 1, + STATE(2055), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, - ts_builtin_sym_end, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -133931,6 +148564,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133939,31 +148574,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83553] = 4, + [89231] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2003), 1, + STATE(2056), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -133979,6 +148615,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -133987,31 +148625,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83605] = 4, + [89286] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2004), 1, + STATE(2057), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134027,6 +148666,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134035,31 +148676,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83657] = 4, + [89341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2005), 1, + STATE(2058), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134075,6 +148717,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134083,31 +148727,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83709] = 4, + [89396] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2006), 1, + STATE(2059), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134123,6 +148768,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134131,31 +148778,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83761] = 4, + [89451] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2007), 1, + STATE(2060), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134171,6 +148819,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134179,31 +148829,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83813] = 4, + [89506] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2008), 1, + STATE(2061), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134219,6 +148870,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134227,31 +148880,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83865] = 4, + [89561] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2009), 1, + STATE(2062), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134267,6 +148921,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134275,31 +148931,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83917] = 4, + [89616] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2010), 1, + STATE(2063), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134315,6 +148972,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134323,31 +148982,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [83969] = 4, + [89671] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2011), 1, + STATE(2064), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134363,6 +149023,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134371,32 +149033,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [84021] = 4, + [89726] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2012), 1, + STATE(2065), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -134411,6 +149074,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134419,26 +149084,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [84073] = 4, + [89781] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2013), 1, + STATE(2066), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7673), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, - ts_builtin_sym_end, + ACTIONS(7671), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134446,6 +149112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, + anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -134459,6 +149126,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134469,24 +149138,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [84125] = 4, + [89836] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2014), 1, + STATE(2067), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, - ts_builtin_sym_end, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134507,6 +149176,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134515,31 +149186,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [84177] = 4, + [89891] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2015), 1, + STATE(2068), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134555,6 +149227,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134563,31 +149237,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [84229] = 4, + [89946] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2016), 1, + STATE(2069), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134603,6 +149278,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134611,25 +149288,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, + anon_sym_ATendteleport, anon_sym_ATvolt, aux_sym_text_token3, - [84281] = 4, + [90001] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2017), 1, + STATE(2070), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134639,7 +149318,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendprepend, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -134651,6 +149329,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134660,30 +149340,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84333] = 4, + [90056] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2018), 1, + STATE(2071), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134699,6 +149381,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134709,29 +149393,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [84385] = 4, + [90111] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2019), 1, + STATE(2072), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, - ts_builtin_sym_end, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -134747,6 +149432,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134757,24 +149444,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [84437] = 4, + [90166] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2020), 1, + STATE(2073), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, - ts_builtin_sym_end, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134795,34 +149482,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, + anon_sym_ATendforelse, anon_sym_ATwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [84489] = 4, + [90221] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2021), 1, + STATE(2074), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, - ts_builtin_sym_end, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134843,6 +149533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134852,25 +149544,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84541] = 4, + [90276] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2022), 1, + STATE(2075), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, - ts_builtin_sym_end, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134891,6 +149584,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134900,25 +149595,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84593] = 4, + [90331] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2023), 1, + STATE(2076), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, - ts_builtin_sym_end, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134939,6 +149635,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134948,25 +149646,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84645] = 4, + [90386] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2024), 1, + STATE(2077), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, - ts_builtin_sym_end, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -134987,6 +149686,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -134996,30 +149697,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84697] = 4, + [90441] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2025), 1, + STATE(2078), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135035,6 +149737,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135044,30 +149748,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84749] = 4, + [90496] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2026), 1, + STATE(2079), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135083,6 +149788,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135092,30 +149799,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84801] = 4, + [90551] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2027), 1, + STATE(2080), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135131,6 +149839,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135140,24 +149850,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84853] = 4, + [90606] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2028), 1, + STATE(2081), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135167,7 +149879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -135179,6 +149890,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135188,25 +149901,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84905] = 4, + [90661] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2029), 1, + STATE(2082), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, - ts_builtin_sym_end, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135227,6 +149941,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135236,25 +149952,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [84957] = 4, + [90716] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2030), 1, + STATE(2083), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, - ts_builtin_sym_end, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135275,6 +149992,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135284,25 +150003,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85009] = 4, + [90771] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2031), 1, + STATE(2084), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, - ts_builtin_sym_end, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135323,6 +150043,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135332,30 +150054,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85061] = 4, + [90826] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2032), 1, + STATE(2085), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6318), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135371,6 +150094,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135380,30 +150105,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85113] = 4, + [90881] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2033), 1, + STATE(2086), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135419,6 +150145,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135428,30 +150156,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85165] = 4, + [90936] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2034), 1, + STATE(2087), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135467,6 +150196,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135476,30 +150207,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85217] = 4, + [90991] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2035), 1, + STATE(2088), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135515,6 +150247,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135524,30 +150258,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85269] = 4, + [91046] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2036), 1, + STATE(2089), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135563,6 +150298,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135572,30 +150309,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85321] = 4, + [91101] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2037), 1, + STATE(2090), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135611,6 +150349,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135620,30 +150360,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85373] = 4, + [91156] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2038), 1, + STATE(2091), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135659,6 +150400,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135668,30 +150411,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85425] = 4, + [91211] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2039), 1, + STATE(2092), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135707,6 +150451,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135716,25 +150462,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85477] = 4, + [91266] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2040), 1, + STATE(2093), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, - ts_builtin_sym_end, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135755,6 +150502,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135764,30 +150513,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85529] = 4, + [91321] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2041), 1, + STATE(2094), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, - ts_builtin_sym_end, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135803,6 +150554,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135813,24 +150566,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [85581] = 4, + [91376] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2042), 1, + STATE(2095), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, - ts_builtin_sym_end, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135851,6 +150604,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135860,30 +150615,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85633] = 4, + [91431] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2043), 1, + STATE(2096), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135899,6 +150655,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135908,30 +150666,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85685] = 4, + [91486] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2044), 1, + STATE(2097), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -135947,6 +150706,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -135956,25 +150717,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85737] = 4, + [91541] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2045), 1, + STATE(2098), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, - ts_builtin_sym_end, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -135995,6 +150757,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136004,25 +150768,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85789] = 4, + [91596] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2046), 1, + STATE(2099), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, - ts_builtin_sym_end, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136043,6 +150808,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136052,25 +150819,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85841] = 4, + [91651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2047), 1, + STATE(2100), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, - ts_builtin_sym_end, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136091,6 +150859,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136100,30 +150870,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85893] = 4, + [91706] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2048), 1, + STATE(2101), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -136139,6 +150910,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136148,30 +150921,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85945] = 4, + [91761] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2049), 1, + STATE(2102), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -136187,6 +150961,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136196,30 +150972,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [85997] = 4, + [91816] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2050), 1, + STATE(2103), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -136235,6 +151012,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136244,78 +151023,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86049] = 4, + [91871] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2051), 1, + STATE(2104), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - 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, - [86101] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2052), 1, - sym_comment, - ACTIONS(6478), 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(6476), 31, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -136331,6 +151063,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136340,30 +151074,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86153] = 4, + [91926] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2053), 1, + STATE(2105), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -136379,6 +151114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136388,24 +151125,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86205] = 4, + [91981] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2054), 1, + STATE(2106), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136413,7 +151152,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -136427,6 +151165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136436,30 +151176,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86257] = 4, + [92036] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2055), 1, + STATE(2107), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -136475,6 +151216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136484,24 +151227,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86309] = 4, + [92091] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2056), 1, + STATE(2108), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136509,7 +151254,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -136523,6 +151267,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136532,24 +151278,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86361] = 4, + [92146] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2057), 1, + STATE(2109), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136559,7 +151307,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, - anon_sym_ATendPushIf, anon_sym_ATprependOnce, anon_sym_ATif, anon_sym_ATisset, @@ -136571,6 +151318,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136580,25 +151329,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86413] = 4, + [92201] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2058), 1, + STATE(2110), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, - ts_builtin_sym_end, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136619,6 +151369,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136628,25 +151380,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86465] = 4, + [92256] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2059), 1, + STATE(2111), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, - ts_builtin_sym_end, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136667,6 +151420,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136676,25 +151431,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86517] = 4, + [92311] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2060), 1, + STATE(2112), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, - ts_builtin_sym_end, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136715,6 +151471,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136724,24 +151482,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86569] = 4, + [92366] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2061), 1, + STATE(2113), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136750,7 +151510,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -136763,6 +151522,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136772,25 +151533,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86621] = 4, + [92421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2062), 1, + STATE(2114), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, - ts_builtin_sym_end, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136811,6 +151573,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136820,31 +151584,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86673] = 4, + [92476] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2063), 1, + STATE(2115), 1, sym_comment, - ACTIONS(6520), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6518), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -136859,6 +151624,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136868,24 +151635,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86725] = 4, + [92531] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2064), 1, + STATE(2116), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136894,7 +151663,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -136907,6 +151675,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136916,25 +151686,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86777] = 4, + [92586] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2065), 1, + STATE(2117), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, - ts_builtin_sym_end, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -136955,6 +151726,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -136964,25 +151737,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86829] = 4, + [92641] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2066), 1, + STATE(2118), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, - ts_builtin_sym_end, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137003,6 +151777,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137012,25 +151788,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86881] = 4, + [92696] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2067), 1, + STATE(2119), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, - ts_builtin_sym_end, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137051,6 +151828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137060,25 +151839,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86933] = 4, + [92751] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2068), 1, + STATE(2120), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, - ts_builtin_sym_end, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137099,6 +151879,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137108,25 +151890,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [86985] = 4, + [92806] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2069), 1, + STATE(2121), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, - ts_builtin_sym_end, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137147,6 +151930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137156,24 +151941,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [87037] = 4, + [92861] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2070), 1, + STATE(2122), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137182,7 +151969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, - anon_sym_ATendPushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, anon_sym_ATif, @@ -137195,6 +151981,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137204,24 +151992,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [87089] = 4, + [92916] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2071), 1, + STATE(2123), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137229,7 +152019,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -137243,6 +152032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137252,24 +152043,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [87141] = 4, + [92971] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2072), 1, + STATE(2124), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137291,6 +152084,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137301,23 +152096,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87193] = 4, + [93026] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2073), 1, + STATE(2125), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137325,7 +152121,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendpush, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -137339,6 +152134,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137348,25 +152145,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [87245] = 4, + [93081] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2074), 1, + STATE(2126), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, - ts_builtin_sym_end, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137387,6 +152185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137396,25 +152196,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [87297] = 4, + [93136] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2075), 1, + STATE(2127), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, - ts_builtin_sym_end, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137435,6 +152236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137444,30 +152247,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [87349] = 4, + [93191] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2076), 1, + STATE(2128), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, - ts_builtin_sym_end, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -137483,6 +152288,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137493,29 +152300,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87401] = 4, + [93246] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2077), 1, + STATE(2129), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6556), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -137531,6 +152338,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137540,24 +152349,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [87453] = 4, + [93301] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2078), 1, + STATE(2130), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137565,7 +152376,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -137579,6 +152389,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137588,24 +152400,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [87505] = 4, + [93356] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2079), 1, + STATE(2131), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137613,7 +152427,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -137627,6 +152440,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137636,24 +152451,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, + anon_sym_ATendvolt, aux_sym_text_token3, - [87557] = 4, + [93411] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2080), 1, + STATE(2132), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7595), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7593), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137661,7 +152478,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -137675,8 +152491,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -137685,23 +152504,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87609] = 4, + [93466] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2081), 1, + STATE(2133), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137723,6 +152543,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137733,31 +152555,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87661] = 4, + [93521] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2082), 1, + STATE(2134), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -137771,6 +152594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -137781,23 +152606,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87713] = 4, + [93576] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2083), 1, + STATE(2135), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137805,7 +152631,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -137819,33 +152644,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, + anon_sym_ATendwhile, anon_sym_ATpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87765] = 4, + [93631] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2084), 1, + STATE(2136), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7591), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7589), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137853,7 +152682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -137867,8 +152695,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -137877,24 +152708,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87817] = 4, + [93686] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2085), 1, + STATE(2137), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7587), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, - ts_builtin_sym_end, + ACTIONS(7585), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137915,8 +152746,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -137925,23 +152759,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87869] = 4, + [93741] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2086), 1, + STATE(2138), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -137949,7 +152784,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -137963,8 +152797,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -137973,24 +152810,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87921] = 4, + [93796] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2087), 1, + STATE(2139), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7579), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, - ts_builtin_sym_end, + ACTIONS(7577), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138011,8 +152848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138021,24 +152861,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [87973] = 4, + [93851] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2088), 1, + STATE(2140), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7575), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, - ts_builtin_sym_end, + ACTIONS(7573), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138059,8 +152899,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138069,23 +152912,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88025] = 4, + [93906] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2089), 1, + STATE(2141), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7571), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7569), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138093,7 +152937,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138107,8 +152950,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138117,23 +152963,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88077] = 4, + [93961] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2090), 1, + STATE(2142), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7567), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7565), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138141,7 +152988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138155,8 +153001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138165,24 +153014,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88129] = 4, + [94016] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2091), 1, + STATE(2143), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7433), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, - ts_builtin_sym_end, + ACTIONS(7431), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138203,8 +153052,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138213,24 +153065,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88181] = 4, + [94071] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2092), 1, + STATE(2144), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7563), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, - ts_builtin_sym_end, + ACTIONS(7561), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138251,8 +153103,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138261,24 +153116,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88233] = 4, + [94126] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2093), 1, + STATE(2145), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7559), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, - ts_builtin_sym_end, + ACTIONS(7557), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138299,8 +153154,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138309,23 +153167,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88285] = 4, + [94181] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2094), 1, + STATE(2146), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7555), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7553), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138333,7 +153192,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138347,8 +153205,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138357,23 +153218,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88337] = 4, + [94236] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2095), 1, + STATE(2147), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7437), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7435), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138381,7 +153243,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138395,8 +153256,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138405,23 +153269,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88389] = 4, + [94291] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2096), 1, + STATE(2148), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7537), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7535), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138429,7 +153294,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138443,8 +153307,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138453,23 +153320,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88441] = 4, + [94346] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2097), 1, + STATE(2149), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7461), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7459), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138477,7 +153345,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138491,8 +153358,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138501,23 +153371,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88493] = 4, + [94401] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2098), 1, + STATE(2150), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7663), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7661), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138525,7 +153396,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138539,8 +153409,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138549,23 +153422,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88545] = 4, + [94456] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2099), 1, + STATE(2151), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7659), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7657), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138573,7 +153447,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138587,8 +153460,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138597,23 +153473,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88597] = 4, + [94511] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2100), 1, + STATE(2152), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7655), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7653), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138621,7 +153498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138635,8 +153511,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138645,23 +153524,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88649] = 4, + [94566] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2101), 1, + STATE(2153), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138669,7 +153549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138683,8 +153562,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138693,23 +153575,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88701] = 4, + [94621] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2102), 1, + STATE(2154), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138717,7 +153600,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138731,8 +153613,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138741,23 +153626,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88753] = 4, + [94676] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2103), 1, + STATE(2155), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138765,7 +153651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138779,8 +153664,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138789,29 +153677,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88805] = 4, + [94731] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2104), 1, + STATE(2156), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, - ts_builtin_sym_end, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -138827,6 +153716,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -138837,24 +153728,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88857] = 4, + [94786] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2105), 1, + STATE(2157), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7639), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, - ts_builtin_sym_end, + ACTIONS(7637), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138875,8 +153766,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138885,24 +153779,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88909] = 4, + [94841] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2106), 1, + STATE(2158), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7635), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, - ts_builtin_sym_end, + ACTIONS(7633), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138923,8 +153817,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138933,23 +153830,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [88961] = 4, + [94896] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2107), 1, + STATE(2159), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7631), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7629), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -138957,7 +153855,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -138971,8 +153868,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -138981,30 +153881,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89013] = 4, + [94951] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2108), 1, + STATE(2160), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7627), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7625), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -139019,8 +153919,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139029,23 +153932,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89065] = 4, + [95006] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2109), 1, + STATE(2161), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7623), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7621), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139053,7 +153957,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139067,8 +153970,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139077,23 +153983,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89117] = 4, + [95061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2110), 1, + STATE(2162), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7619), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7617), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139101,7 +154008,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139115,8 +154021,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139125,23 +154034,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89169] = 4, + [95116] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2111), 1, + STATE(2163), 1, sym_comment, - ACTIONS(6562), 10, + ACTIONS(7615), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6560), 31, + ACTIONS(7613), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139162,6 +154072,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, anon_sym_ATendswitch, @@ -139173,30 +154085,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89221] = 4, + [95171] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2112), 1, + STATE(2164), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7611), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7609), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -139211,8 +154123,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139221,30 +154136,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89273] = 4, + [95226] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2113), 1, + STATE(2165), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7607), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7605), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -139259,8 +154174,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139269,30 +154187,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89325] = 4, + [95281] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2114), 1, + STATE(2166), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7603), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7601), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -139307,8 +154225,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139317,30 +154238,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89377] = 4, + [95336] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2115), 1, + STATE(2167), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7429), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7427), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -139355,8 +154276,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139365,23 +154289,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89429] = 4, + [95391] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2116), 1, + STATE(2168), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7441), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7439), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139389,7 +154314,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139403,8 +154327,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139413,23 +154340,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89481] = 4, + [95446] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2117), 1, + STATE(2169), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7445), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7443), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139437,7 +154365,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139451,8 +154378,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139461,23 +154391,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89533] = 4, + [95501] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2118), 1, + STATE(2170), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7449), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7447), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139485,7 +154416,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139499,8 +154429,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139509,23 +154442,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89585] = 4, + [95556] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2119), 1, + STATE(2171), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7457), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7455), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139533,7 +154467,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139547,8 +154480,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139557,30 +154493,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89637] = 4, + [95611] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2120), 1, + STATE(2172), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7465), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7463), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -139595,8 +154531,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139605,30 +154544,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89689] = 4, + [95666] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2121), 1, + STATE(2173), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7469), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7467), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -139643,8 +154582,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139653,30 +154595,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89741] = 4, + [95721] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2122), 1, + STATE(2174), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7473), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7471), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -139691,8 +154633,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139701,23 +154646,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89793] = 4, + [95776] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2123), 1, + STATE(2175), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7477), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7475), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139725,7 +154671,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139739,8 +154684,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139749,23 +154697,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89845] = 4, + [95831] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2124), 1, + STATE(2176), 1, sym_comment, - ACTIONS(6474), 10, + ACTIONS(7481), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6472), 31, + ACTIONS(7479), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139773,7 +154722,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139787,8 +154735,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139797,23 +154748,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89897] = 4, + [95886] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2125), 1, + STATE(2177), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7485), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7483), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139821,7 +154773,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139835,8 +154786,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139845,23 +154799,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [89949] = 4, + [95941] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2126), 1, + STATE(2178), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7489), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7487), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139869,7 +154824,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139883,8 +154837,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139893,23 +154850,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90001] = 4, + [95996] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2127), 1, + STATE(2179), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7493), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7491), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139917,7 +154875,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139931,8 +154888,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139941,23 +154901,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90053] = 4, + [96051] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2128), 1, + STATE(2180), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7497), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7495), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -139965,7 +154926,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -139979,8 +154939,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -139989,23 +154952,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90105] = 4, + [96106] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2129), 1, + STATE(2181), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7501), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7499), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140013,7 +154977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140027,8 +154990,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140037,29 +155003,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90157] = 4, + [96161] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2130), 1, + STATE(2182), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7505), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7503), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -140075,8 +155041,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140085,30 +155054,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90209] = 4, + [96216] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2131), 1, + STATE(2183), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7509), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7507), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -140123,8 +155092,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140133,24 +155105,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90261] = 4, + [96271] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2132), 1, + STATE(2184), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7513), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, - ts_builtin_sym_end, + ACTIONS(7511), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140171,8 +155143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140181,30 +155156,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90313] = 4, + [96326] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2133), 1, + STATE(2185), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7517), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6290), 31, + ACTIONS(7515), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -140219,8 +155194,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140229,23 +155207,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90365] = 4, + [96381] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2134), 1, + STATE(2186), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7521), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7519), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140253,7 +155232,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140267,8 +155245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140277,30 +155258,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90417] = 4, + [96436] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2135), 1, + STATE(2187), 1, sym_comment, - ACTIONS(6296), 10, + ACTIONS(7525), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6294), 31, + ACTIONS(7523), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -140315,8 +155296,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140325,30 +155309,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90469] = 4, + [96491] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2136), 1, + STATE(2188), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7529), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6298), 31, + ACTIONS(7527), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -140363,8 +155347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140373,30 +155360,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90521] = 4, + [96546] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2137), 1, + STATE(2189), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7533), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7531), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -140411,8 +155398,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140421,34 +155411,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90573] = 4, + [96601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2138), 1, + STATE(2190), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7677), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7675), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, + anon_sym_ATendPrependOnce, anon_sym_ATif, anon_sym_ATisset, anon_sym_ATempty, @@ -140459,6 +155450,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140469,23 +155462,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90625] = 4, + [96656] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2139), 1, + STATE(2191), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7541), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7539), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140493,7 +155487,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140507,8 +155500,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140517,23 +155513,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90677] = 4, + [96711] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2140), 1, + STATE(2192), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7545), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7543), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140541,7 +155538,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140555,8 +155551,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140565,23 +155564,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90729] = 4, + [96766] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2141), 1, + STATE(2193), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7549), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7547), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140589,7 +155589,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140603,8 +155602,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATendswitch, aux_sym_loop_operator_token1, anon_sym_ATforeach, anon_sym_ATforelse, @@ -140613,71 +155615,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90781] = 4, + [96821] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2142), 1, + STATE(2194), 1, sym_comment, - ACTIONS(6558), 10, + ACTIONS(7595), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym_text_token1, - aux_sym_text_token2, - ACTIONS(6556), 31, - aux_sym_keyword_token1, - anon_sym_LBRACE_BANG_BANG, - anon_sym_ATphp, - aux_sym_attribute_token1, - anon_sym_ATfragment, - anon_sym_ATendfragment, - anon_sym_ATonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - 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, - [90833] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2143), 1, - sym_comment, - ACTIONS(6320), 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(6318), 31, + ACTIONS(7593), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140685,7 +155641,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140699,9 +155654,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -140709,31 +155666,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90885] = 4, + [96876] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2144), 1, + STATE(2195), 1, sym_comment, - ACTIONS(6312), 10, + ACTIONS(7643), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6310), 31, + ACTIONS(7641), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140747,6 +155705,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140757,31 +155717,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90937] = 4, + [96931] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2145), 1, + STATE(2196), 1, sym_comment, - ACTIONS(6308), 10, + ACTIONS(7647), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6306), 31, + ACTIONS(7645), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140795,6 +155756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140805,23 +155768,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [90989] = 4, + [96986] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2146), 1, + STATE(2197), 1, sym_comment, - ACTIONS(6304), 10, + ACTIONS(7669), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6302), 31, + ACTIONS(7667), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140829,7 +155793,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140843,6 +155806,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -140850,74 +155815,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATforelse, anon_sym_ATwhile, anon_sym_ATpersist, + anon_sym_ATendpersist, anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91041] = 4, + [97041] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2147), 1, + STATE(2198), 1, sym_comment, - ACTIONS(6300), 10, + ACTIONS(7591), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym_text_token1, - aux_sym_text_token2, - ACTIONS(6298), 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_ATendverbatim, - anon_sym_ATpushOnce, - 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, - [91093] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2148), 1, - sym_comment, - ACTIONS(6296), 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(6294), 31, + ACTIONS(7589), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -140925,7 +155845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -140939,9 +155858,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -140949,78 +155870,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91145] = 4, + [97096] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2149), 1, + STATE(2199), 1, sym_comment, - ACTIONS(6292), 10, + ACTIONS(7587), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym_text_token1, - aux_sym_text_token2, - ACTIONS(6290), 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_ATendverbatim, - anon_sym_ATpushOnce, - 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, - [91197] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2150), 1, - sym_comment, - ACTIONS(6312), 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(6310), 31, + ACTIONS(7585), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141035,9 +155909,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141045,71 +155921,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91249] = 4, + [97151] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2151), 1, + STATE(2200), 1, sym_comment, - ACTIONS(6320), 10, + ACTIONS(7583), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, - anon_sym_ATfor, - aux_sym_text_token1, - aux_sym_text_token2, - ACTIONS(6318), 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_ATendonce, - anon_sym_ATverbatim, - anon_sym_ATpushOnce, - 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, - [91301] = 4, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2152), 1, - sym_comment, - ACTIONS(6558), 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(6556), 31, + ACTIONS(7581), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141117,7 +155947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -141131,9 +155960,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141141,30 +155972,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91353] = 4, + [97206] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2153), 1, + STATE(2201), 1, sym_comment, - ACTIONS(6328), 10, + ACTIONS(7579), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6326), 31, + ACTIONS(7577), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141179,9 +156011,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141189,30 +156023,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91405] = 4, + [97261] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2154), 1, + STATE(2202), 1, sym_comment, - ACTIONS(6344), 10, + ACTIONS(7575), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6342), 31, + ACTIONS(7573), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141227,9 +156062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141237,23 +156074,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91457] = 4, + [97316] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2155), 1, + STATE(2203), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7571), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7569), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141261,7 +156100,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -141275,9 +156113,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141285,23 +156125,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91509] = 4, + [97371] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2156), 1, + STATE(2204), 1, sym_comment, - ACTIONS(6504), 10, + ACTIONS(7567), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6502), 31, + ACTIONS(7565), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141309,7 +156151,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -141323,9 +156164,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141333,30 +156176,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91561] = 4, + [97426] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2157), 1, + STATE(2205), 1, sym_comment, - ACTIONS(6348), 10, + ACTIONS(7433), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6346), 31, + ACTIONS(7431), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141371,9 +156215,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141381,30 +156227,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91613] = 4, + [97481] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2158), 1, + STATE(2206), 1, sym_comment, - ACTIONS(6352), 10, + ACTIONS(7563), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6350), 31, + ACTIONS(7561), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141419,9 +156266,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141429,29 +156278,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91665] = 4, + [97536] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2159), 1, + STATE(2207), 1, sym_comment, - ACTIONS(6512), 10, + ACTIONS(7559), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6510), 31, + ACTIONS(7557), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -141467,9 +156317,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141477,30 +156329,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91717] = 4, + [97591] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2160), 1, + STATE(2208), 1, sym_comment, - ACTIONS(6360), 10, + ACTIONS(7555), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6358), 31, + ACTIONS(7553), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141515,9 +156368,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141525,23 +156380,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91769] = 4, + [97646] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2161), 1, + STATE(2209), 1, sym_comment, - ACTIONS(6498), 10, + ACTIONS(7437), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6496), 31, + ACTIONS(7435), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141549,7 +156406,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -141563,9 +156419,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141573,23 +156431,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91821] = 4, + [97701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2162), 1, + STATE(2210), 1, sym_comment, - ACTIONS(6494), 10, + ACTIONS(7537), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6492), 31, + ACTIONS(7535), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141597,7 +156457,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -141611,9 +156470,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141621,23 +156482,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91873] = 4, + [97756] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2163), 1, + STATE(2211), 1, sym_comment, - ACTIONS(6490), 10, + ACTIONS(7461), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6488), 31, + ACTIONS(7459), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141645,7 +156508,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -141659,9 +156521,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141669,23 +156533,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91925] = 4, + [97811] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2164), 1, + STATE(2212), 1, sym_comment, - ACTIONS(6486), 10, + ACTIONS(7663), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6484), 31, + ACTIONS(7661), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141693,7 +156559,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -141707,9 +156572,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141717,30 +156584,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [91977] = 4, + [97866] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2165), 1, + STATE(2213), 1, sym_comment, - ACTIONS(6364), 10, + ACTIONS(7659), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6362), 31, + ACTIONS(7657), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141755,9 +156623,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141765,30 +156635,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92029] = 4, + [97921] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2166), 1, + STATE(2214), 1, sym_comment, - ACTIONS(6368), 10, + ACTIONS(7655), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6366), 31, + ACTIONS(7653), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141803,9 +156674,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141813,30 +156686,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92081] = 4, + [97976] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2167), 1, + STATE(2215), 1, sym_comment, - ACTIONS(6372), 10, + ACTIONS(7651), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6370), 31, + ACTIONS(7649), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141851,9 +156725,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141861,23 +156737,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92133] = 4, + [98031] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2168), 1, + STATE(2216), 1, sym_comment, - ACTIONS(6482), 10, + ACTIONS(7647), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6480), 31, + ACTIONS(7645), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141885,7 +156763,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -141899,9 +156776,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141909,23 +156788,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92185] = 4, + [98086] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2169), 1, + STATE(2217), 1, sym_comment, - ACTIONS(6478), 10, + ACTIONS(7643), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6476), 31, + ACTIONS(7641), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -141933,7 +156814,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -141947,9 +156827,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -141957,30 +156839,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92237] = 4, + [98141] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2170), 1, + STATE(2218), 1, sym_comment, - ACTIONS(6288), 10, + ACTIONS(7651), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6286), 31, + ACTIONS(7649), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -141995,6 +156878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -142005,23 +156890,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92289] = 4, + [98196] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2171), 1, + STATE(2219), 1, sym_comment, - ACTIONS(6468), 10, + ACTIONS(7639), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6466), 31, + ACTIONS(7637), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, @@ -142029,7 +156916,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATfragment, anon_sym_ATonce, anon_sym_ATverbatim, - anon_sym_ATendverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, anon_sym_ATprependOnce, @@ -142043,9 +156929,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142053,30 +156941,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92341] = 4, + [98251] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2172), 1, + STATE(2220), 1, sym_comment, - ACTIONS(6428), 10, + ACTIONS(7635), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6426), 31, + ACTIONS(7633), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142091,9 +156980,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142101,30 +156992,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92393] = 4, + [98306] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2173), 1, + STATE(2221), 1, sym_comment, - ACTIONS(6408), 10, + ACTIONS(7631), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6406), 31, + ACTIONS(7629), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142139,9 +157031,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142149,30 +157043,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92445] = 4, + [98361] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2174), 1, + STATE(2222), 1, sym_comment, - ACTIONS(6376), 10, + ACTIONS(7627), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6374), 31, + ACTIONS(7625), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142187,9 +157082,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142197,30 +157094,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92497] = 4, + [98416] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2175), 1, + STATE(2223), 1, sym_comment, - ACTIONS(6380), 10, + ACTIONS(7623), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6378), 31, + ACTIONS(7621), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142235,9 +157133,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142245,29 +157145,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92549] = 4, + [98471] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2176), 1, + STATE(2224), 1, sym_comment, - ACTIONS(6508), 10, + ACTIONS(7619), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6506), 31, + ACTIONS(7617), 32, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, - anon_sym_ATendfragment, anon_sym_ATonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, @@ -142283,9 +157184,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142293,30 +157196,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92601] = 4, + [98526] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2177), 1, + STATE(2225), 1, sym_comment, - ACTIONS(6384), 10, + ACTIONS(7615), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6382), 31, + ACTIONS(7613), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142331,9 +157235,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142341,30 +157247,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92653] = 4, + [98581] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2178), 1, + STATE(2226), 1, sym_comment, - ACTIONS(6388), 10, + ACTIONS(7611), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6386), 31, + ACTIONS(7609), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142379,9 +157286,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142389,30 +157298,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92705] = 4, + [98636] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2179), 1, + STATE(2227), 1, sym_comment, - ACTIONS(6356), 10, + ACTIONS(7607), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6354), 31, + ACTIONS(7605), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142427,9 +157337,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142437,30 +157349,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92757] = 4, + [98691] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2180), 1, + STATE(2228), 1, sym_comment, - ACTIONS(6336), 10, + ACTIONS(7603), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6334), 31, + ACTIONS(7601), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142475,9 +157388,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142485,30 +157400,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92809] = 4, + [98746] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2181), 1, + STATE(2229), 1, sym_comment, - ACTIONS(6392), 10, + ACTIONS(7429), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6390), 31, + ACTIONS(7427), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142523,9 +157439,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142533,30 +157451,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92861] = 4, + [98801] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2182), 1, + STATE(2230), 1, sym_comment, - ACTIONS(6396), 10, + ACTIONS(7441), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6394), 31, + ACTIONS(7439), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142571,9 +157490,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142581,30 +157502,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92913] = 4, + [98856] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2183), 1, + STATE(2231), 1, sym_comment, - ACTIONS(6400), 10, + ACTIONS(7445), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6398), 31, + ACTIONS(7443), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142619,9 +157541,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142629,30 +157553,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [92965] = 4, + [98911] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2184), 1, + STATE(2232), 1, sym_comment, - ACTIONS(6332), 10, + ACTIONS(7449), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6330), 31, + ACTIONS(7447), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142667,9 +157592,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142677,30 +157604,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93017] = 4, + [98966] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2185), 1, + STATE(2233), 1, sym_comment, - ACTIONS(6324), 10, + ACTIONS(7457), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6322), 31, + ACTIONS(7455), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142715,9 +157643,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142725,30 +157655,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93069] = 4, + [99021] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2186), 1, + STATE(2234), 1, sym_comment, - ACTIONS(6316), 10, + ACTIONS(7465), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6314), 31, + ACTIONS(7463), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142763,9 +157694,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142773,30 +157706,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93121] = 4, + [99076] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2187), 1, + STATE(2235), 1, sym_comment, - ACTIONS(6464), 10, + ACTIONS(7469), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6462), 31, + ACTIONS(7467), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142811,9 +157745,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142821,30 +157757,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93173] = 4, + [99131] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2188), 1, + STATE(2236), 1, sym_comment, - ACTIONS(6460), 10, + ACTIONS(7473), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6458), 31, + ACTIONS(7471), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142859,9 +157796,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142869,30 +157808,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93225] = 4, + [99186] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2189), 1, + STATE(2237), 1, sym_comment, - ACTIONS(6456), 10, + ACTIONS(7477), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6454), 31, + ACTIONS(7475), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142907,9 +157847,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142917,30 +157859,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93277] = 4, + [99241] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2190), 1, + STATE(2238), 1, sym_comment, - ACTIONS(6280), 10, + ACTIONS(7481), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6278), 31, + ACTIONS(7479), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -142955,9 +157898,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -142965,30 +157910,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93329] = 4, + [99296] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2191), 1, + STATE(2239), 1, sym_comment, - ACTIONS(6452), 10, + ACTIONS(7485), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6450), 31, + ACTIONS(7483), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143003,9 +157949,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143013,30 +157961,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93381] = 4, + [99351] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2192), 1, + STATE(2240), 1, sym_comment, - ACTIONS(6404), 10, + ACTIONS(7489), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6402), 31, + ACTIONS(7487), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143051,9 +158000,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143061,30 +158012,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93433] = 4, + [99406] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2193), 1, + STATE(2241), 1, sym_comment, - ACTIONS(6448), 10, + ACTIONS(7493), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6446), 31, + ACTIONS(7491), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143099,9 +158051,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143109,30 +158063,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93485] = 4, + [99461] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2194), 1, + STATE(2242), 1, sym_comment, - ACTIONS(6444), 10, + ACTIONS(7497), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6442), 31, + ACTIONS(7495), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143147,9 +158102,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143157,30 +158114,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93537] = 4, + [99516] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2195), 1, + STATE(2243), 1, sym_comment, - ACTIONS(6440), 10, + ACTIONS(7501), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6438), 31, + ACTIONS(7499), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143195,9 +158153,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143205,30 +158165,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93589] = 4, + [99571] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2196), 1, + STATE(2244), 1, sym_comment, - ACTIONS(6412), 10, + ACTIONS(7505), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6410), 31, + ACTIONS(7503), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143243,9 +158204,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143253,30 +158216,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93641] = 4, + [99626] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2197), 1, + STATE(2245), 1, sym_comment, - ACTIONS(6416), 10, + ACTIONS(7509), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6414), 31, + ACTIONS(7507), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143291,9 +158255,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, - aux_sym_loop_operator_token1, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143301,30 +158267,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93693] = 4, + [99681] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2198), 1, + STATE(2246), 1, sym_comment, - ACTIONS(6420), 10, + ACTIONS(7513), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6418), 31, + ACTIONS(7511), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143339,9 +158306,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [99736] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2247), 1, + sym_comment, + ACTIONS(7517), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, aux_sym_loop_operator_token1, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7515), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143349,30 +158369,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93745] = 4, + [99791] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2199), 1, + STATE(2248), 1, sym_comment, - ACTIONS(6424), 10, + ACTIONS(7521), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6422), 31, + ACTIONS(7519), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143387,9 +158408,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [99846] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2249), 1, + sym_comment, + ACTIONS(7525), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, aux_sym_loop_operator_token1, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7523), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143397,30 +158471,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93797] = 4, + [99901] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2200), 1, + STATE(2250), 1, sym_comment, - ACTIONS(6432), 10, + ACTIONS(7529), 12, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, + aux_sym_loop_operator_token1, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6430), 31, + ACTIONS(7527), 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_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143435,9 +158510,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [99956] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2251), 1, + sym_comment, + ACTIONS(7533), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, aux_sym_loop_operator_token1, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7531), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, anon_sym_ATforeach, anon_sym_ATforelse, anon_sym_ATwhile, @@ -143445,30 +158573,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93849] = 4, + [100011] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2201), 1, + STATE(2252), 1, sym_comment, - ACTIONS(6436), 10, + ACTIONS(7583), 11, anon_sym_LBRACE_LBRACE, aux_sym__inline_directive_token1, anon_sym_ATsection, anon_sym_ATpush, anon_sym_ATprepend, anon_sym_ATunless, + anon_sym_ATcan, aux_sym__custom_token2, anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - ACTIONS(6434), 31, + ACTIONS(7581), 33, aux_sym_keyword_token1, anon_sym_LBRACE_BANG_BANG, anon_sym_ATphp, aux_sym_attribute_token1, anon_sym_ATfragment, + anon_sym_ATendsection, anon_sym_ATonce, - anon_sym_ATendonce, anon_sym_ATverbatim, anon_sym_ATpushOnce, anon_sym_ATpushIf, @@ -143483,6 +158612,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AThasSection, anon_sym_ATsectionMissing, anon_sym_ATerror, + anon_sym_ATcannot, + anon_sym_ATcanany, aux_sym__custom_token1, anon_sym_ATswitch, aux_sym_loop_operator_token1, @@ -143493,25381 +158624,44482 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ATteleport, anon_sym_ATvolt, aux_sym_text_token3, - [93901] = 9, + [100066] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, - anon_sym_LPAREN, - ACTIONS(6564), 1, - anon_sym_ATendphp, - ACTIONS(6568), 1, + STATE(2253), 1, + sym_comment, + ACTIONS(7541), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + aux_sym_loop_operator_token1, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7539), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, aux_sym_text_token3, - STATE(1618), 1, - sym__directive_parameter, - STATE(2202), 1, + [100121] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2254), 1, sym_comment, - STATE(2284), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, + ACTIONS(7545), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + aux_sym_loop_operator_token1, + anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - [93930] = 9, + ACTIONS(7543), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [100176] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6500), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, + STATE(2255), 1, + sym_comment, + ACTIONS(7549), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + aux_sym_loop_operator_token1, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7547), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, aux_sym_text_token3, - ACTIONS(6570), 1, - anon_sym_ATendphp, - STATE(1997), 1, - sym__directive_parameter, - STATE(2203), 1, + [100231] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2256), 1, sym_comment, - STATE(2348), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, + ACTIONS(7669), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - [93959] = 9, + ACTIONS(7667), 33, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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_ATendteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [100286] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6548), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, + STATE(2257), 1, + sym_comment, + ACTIONS(7677), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + aux_sym_loop_operator_token1, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, aux_sym_text_token3, - ACTIONS(6572), 1, - anon_sym_ATendphp, - STATE(2137), 1, - sym__directive_parameter, - STATE(2204), 1, + [100341] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2258), 1, sym_comment, - STATE(2368), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, + ACTIONS(7673), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + aux_sym_loop_operator_token1, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7671), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [100396] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2259), 1, + sym_comment, + ACTIONS(7669), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - [93988] = 9, + ACTIONS(7667), 33, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + anon_sym_ATendvolt, + aux_sym_text_token3, + [100451] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6514), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, + STATE(2260), 1, + sym_comment, + ACTIONS(7677), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 33, + 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATendswitch, + 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(6574), 1, - anon_sym_ATendphp, - STATE(1913), 1, - sym__directive_parameter, - STATE(2205), 1, + [100506] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2261), 1, sym_comment, - STATE(2367), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, + ACTIONS(7673), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7671), 33, + 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATendswitch, + 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, + [100561] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2262), 1, + sym_comment, + ACTIONS(7669), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7667), 33, + 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATendswitch, + 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, + [100616] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2263), 1, + sym_comment, + ACTIONS(7669), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + aux_sym_loop_operator_token1, + anon_sym_ATfor, aux_sym_text_token1, aux_sym_text_token2, - [94017] = 9, + ACTIONS(7667), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [100671] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2264), 1, + sym_comment, + ACTIONS(7549), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7547), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [100726] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2265), 1, + sym_comment, + ACTIONS(7579), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7577), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [100781] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2266), 1, + sym_comment, + ACTIONS(7575), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7573), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [100836] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2267), 1, + sym_comment, + ACTIONS(7571), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7569), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [100891] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2268), 1, + sym_comment, + ACTIONS(7595), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7593), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [100946] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2269), 1, + sym_comment, + ACTIONS(7719), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7717), 33, + 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_ATendprepend, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101001] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2270), 1, + sym_comment, + ACTIONS(7659), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7657), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101056] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2271), 1, + sym_comment, + ACTIONS(7567), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7565), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101111] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2272), 1, + sym_comment, + ACTIONS(7545), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7543), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101166] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2273), 1, + sym_comment, + ACTIONS(7433), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7431), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101221] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2274), 1, + sym_comment, + ACTIONS(7563), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7561), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101276] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2275), 1, + sym_comment, + ACTIONS(7559), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7557), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101331] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2276), 1, + sym_comment, + ACTIONS(7555), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7553), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101386] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2277), 1, + sym_comment, + ACTIONS(7663), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7661), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101441] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2278), 1, + sym_comment, + ACTIONS(7461), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7459), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101496] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2279), 1, + sym_comment, + ACTIONS(7437), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7435), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101551] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2280), 1, + sym_comment, + ACTIONS(7537), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7535), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101606] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2281), 1, + sym_comment, + ACTIONS(7541), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7539), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101661] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2282), 1, + sym_comment, + ACTIONS(7673), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7671), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101716] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2283), 1, + sym_comment, + ACTIONS(7533), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7531), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101771] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2284), 1, + sym_comment, + ACTIONS(7529), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7527), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101826] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2285), 1, + sym_comment, + ACTIONS(7525), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7523), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101881] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2286), 1, + sym_comment, + ACTIONS(7461), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7459), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101936] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2287), 1, + sym_comment, + ACTIONS(7607), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7605), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [101991] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2288), 1, + sym_comment, + ACTIONS(7517), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7515), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102046] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2289), 1, + sym_comment, + ACTIONS(7513), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7511), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102101] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2290), 1, + sym_comment, + ACTIONS(7537), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7535), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102156] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2291), 1, + sym_comment, + ACTIONS(7437), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7435), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102211] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2292), 1, + sym_comment, + ACTIONS(7555), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7553), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102266] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2293), 1, + sym_comment, + ACTIONS(7559), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7557), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102321] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2294), 1, + sym_comment, + ACTIONS(7509), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7507), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102376] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2295), 1, + sym_comment, + ACTIONS(7505), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7503), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102431] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2296), 1, + sym_comment, + ACTIONS(7663), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7661), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102486] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2297), 1, + sym_comment, + ACTIONS(7659), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7657), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102541] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2298), 1, + sym_comment, + ACTIONS(7719), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7717), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102596] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2299), 1, + sym_comment, + ACTIONS(7655), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7653), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102651] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2300), 1, + sym_comment, + ACTIONS(7501), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7499), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102706] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2301), 1, + sym_comment, + ACTIONS(7497), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7495), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102761] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2302), 1, + sym_comment, + ACTIONS(7651), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7649), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102816] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2303), 1, + sym_comment, + ACTIONS(7647), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7645), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102871] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2304), 1, + sym_comment, + ACTIONS(7643), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7641), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102926] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2305), 1, + sym_comment, + ACTIONS(7493), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7491), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [102981] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2306), 1, + sym_comment, + ACTIONS(7677), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103036] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2307), 1, + sym_comment, + ACTIONS(7639), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7637), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103091] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2308), 1, + sym_comment, + ACTIONS(7563), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7561), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103146] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2309), 1, + sym_comment, + ACTIONS(7635), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7633), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103201] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2310), 1, + sym_comment, + ACTIONS(7489), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7487), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103256] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2311), 1, + sym_comment, + ACTIONS(7433), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7431), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103311] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2312), 1, + sym_comment, + ACTIONS(7567), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7565), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103366] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2313), 1, + sym_comment, + ACTIONS(7485), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7483), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103421] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2314), 1, + sym_comment, + ACTIONS(7571), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7569), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103476] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2315), 1, + sym_comment, + ACTIONS(7481), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7479), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103531] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2316), 1, + sym_comment, + ACTIONS(7477), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7475), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103586] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2317), 1, + sym_comment, + ACTIONS(7473), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7471), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103641] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2318), 1, + sym_comment, + ACTIONS(7469), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7467), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103696] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2319), 1, + sym_comment, + ACTIONS(7631), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7629), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103751] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2320), 1, + sym_comment, + ACTIONS(7575), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7573), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103806] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2321), 1, + sym_comment, + ACTIONS(7579), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7577), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103861] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2322), 1, + sym_comment, + ACTIONS(7465), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7463), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103916] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2323), 1, + sym_comment, + ACTIONS(7457), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7455), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [103971] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2324), 1, + sym_comment, + ACTIONS(7449), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7447), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104026] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2325), 1, + sym_comment, + ACTIONS(7445), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7443), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104081] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2326), 1, + sym_comment, + ACTIONS(7669), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7667), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [104136] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2327), 1, + sym_comment, + ACTIONS(7441), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7439), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104191] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2328), 1, + sym_comment, + ACTIONS(7513), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7511), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104246] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2329), 1, + sym_comment, + ACTIONS(7587), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7585), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104301] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2330), 1, + sym_comment, + ACTIONS(7429), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7427), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104356] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2331), 1, + sym_comment, + ACTIONS(7627), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7625), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104411] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2332), 1, + sym_comment, + ACTIONS(7623), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7621), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104466] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2333), 1, + sym_comment, + ACTIONS(7723), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7721), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [104521] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2334), 1, + sym_comment, + ACTIONS(7591), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7589), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [104576] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2335), 1, + sym_comment, + ACTIONS(7603), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7601), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104631] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2336), 1, + sym_comment, + ACTIONS(7559), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7557), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104686] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2337), 1, + sym_comment, + ACTIONS(7619), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7617), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104741] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2338), 1, + sym_comment, + ACTIONS(7587), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7585), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [104796] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2339), 1, + sym_comment, + ACTIONS(7583), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7581), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [104851] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2340), 1, + sym_comment, + ACTIONS(7579), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7577), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [104906] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2341), 1, + sym_comment, + ACTIONS(7591), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7589), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [104961] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2342), 1, + sym_comment, + ACTIONS(7587), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7585), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105016] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2343), 1, + sym_comment, + ACTIONS(7595), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7593), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105071] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2344), 1, + sym_comment, + ACTIONS(7549), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7547), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105126] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2345), 1, + sym_comment, + ACTIONS(7545), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7543), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105181] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2346), 1, + sym_comment, + ACTIONS(7541), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7539), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105236] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2347), 1, + sym_comment, + ACTIONS(7575), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7573), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [105291] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2348), 1, + sym_comment, + ACTIONS(7611), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7609), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105346] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2349), 1, + sym_comment, + ACTIONS(7607), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7605), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105401] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2350), 1, + sym_comment, + ACTIONS(7603), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7601), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105456] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2351), 1, + sym_comment, + ACTIONS(7571), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7569), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [105511] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2352), 1, + sym_comment, + ACTIONS(7567), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7565), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [105566] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2353), 1, + sym_comment, + ACTIONS(7433), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7431), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [105621] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2354), 1, + sym_comment, + ACTIONS(7563), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7561), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [105676] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2355), 1, + sym_comment, + ACTIONS(7429), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7427), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105731] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2356), 1, + sym_comment, + ACTIONS(7611), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7609), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105786] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2357), 1, + sym_comment, + ACTIONS(7441), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7439), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105841] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2358), 1, + sym_comment, + ACTIONS(7445), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7443), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105896] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2359), 1, + sym_comment, + ACTIONS(7673), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7671), 33, + 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_ATendprepend, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [105951] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2360), 1, + sym_comment, + ACTIONS(7449), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7447), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106006] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2361), 1, + sym_comment, + ACTIONS(7533), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7531), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106061] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2362), 1, + sym_comment, + ACTIONS(7529), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7527), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106116] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2363), 1, + sym_comment, + ACTIONS(7525), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7523), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106171] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2364), 1, + sym_comment, + ACTIONS(7615), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7613), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106226] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2365), 1, + sym_comment, + ACTIONS(7619), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7617), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106281] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2366), 1, + sym_comment, + ACTIONS(7623), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7621), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106336] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2367), 1, + sym_comment, + ACTIONS(7627), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7625), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106391] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2368), 1, + sym_comment, + ACTIONS(7631), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7629), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106446] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2369), 1, + sym_comment, + ACTIONS(7521), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7519), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106501] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2370), 1, + sym_comment, + ACTIONS(7517), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7515), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106556] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2371), 1, + sym_comment, + ACTIONS(7457), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7455), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106611] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2372), 1, + sym_comment, + ACTIONS(7635), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7633), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106666] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2373), 1, + sym_comment, + ACTIONS(7639), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7637), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106721] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2374), 1, + sym_comment, + ACTIONS(7677), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106776] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2375), 1, + sym_comment, + ACTIONS(7643), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7641), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106831] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2376), 1, + sym_comment, + ACTIONS(7559), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7557), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [106886] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2377), 1, + sym_comment, + ACTIONS(7647), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7645), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106941] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2378), 1, + sym_comment, + ACTIONS(7509), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7507), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [106996] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2379), 1, + sym_comment, + ACTIONS(7647), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7645), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107051] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2380), 1, + sym_comment, + ACTIONS(7465), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7463), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107106] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2381), 1, + sym_comment, + ACTIONS(7469), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7467), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107161] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2382), 1, + sym_comment, + ACTIONS(7651), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7649), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107216] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2383), 1, + sym_comment, + ACTIONS(7473), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7471), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107271] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2384), 1, + sym_comment, + ACTIONS(7555), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7553), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [107326] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2385), 1, + sym_comment, + ACTIONS(7477), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7475), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107381] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2386), 1, + sym_comment, + ACTIONS(7481), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7479), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107436] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2387), 1, + sym_comment, + ACTIONS(7485), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7483), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107491] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2388), 1, + sym_comment, + ACTIONS(7489), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7487), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107546] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2389), 1, + sym_comment, + ACTIONS(7437), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7435), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [107601] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2390), 1, + sym_comment, + ACTIONS(7505), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7503), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107656] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2391), 1, + sym_comment, + ACTIONS(7493), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7491), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107711] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2392), 1, + sym_comment, + ACTIONS(7537), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7535), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [107766] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2393), 1, + sym_comment, + ACTIONS(7655), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7653), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107821] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2394), 1, + sym_comment, + ACTIONS(7501), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7499), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107876] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2395), 1, + sym_comment, + ACTIONS(7497), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7495), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107931] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2396), 1, + sym_comment, + ACTIONS(7493), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7491), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [107986] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2397), 1, + sym_comment, + ACTIONS(7461), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7459), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [108041] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2398), 1, + sym_comment, + ACTIONS(7663), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7661), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [108096] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2399), 1, + sym_comment, + ACTIONS(7719), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7717), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108151] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2400), 1, + sym_comment, + ACTIONS(7497), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7495), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108206] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2401), 1, + sym_comment, + ACTIONS(7501), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7499), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108261] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2402), 1, + sym_comment, + ACTIONS(7505), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7503), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108316] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2403), 1, + sym_comment, + ACTIONS(7659), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7657), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108371] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2404), 1, + sym_comment, + ACTIONS(7663), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7661), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108426] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2405), 1, + sym_comment, + ACTIONS(7461), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7459), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108481] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2406), 1, + sym_comment, + ACTIONS(7537), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7535), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108536] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2407), 1, + sym_comment, + ACTIONS(7437), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7435), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108591] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2408), 1, + sym_comment, + ACTIONS(7489), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7487), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108646] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2409), 1, + sym_comment, + ACTIONS(7555), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7553), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108701] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2410), 1, + sym_comment, + ACTIONS(7485), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7483), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108756] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2411), 1, + sym_comment, + ACTIONS(7481), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7479), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108811] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2412), 1, + sym_comment, + ACTIONS(7477), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7475), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108866] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2413), 1, + sym_comment, + ACTIONS(7509), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7507), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [108921] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2414), 1, + sym_comment, + ACTIONS(7505), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7503), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [108976] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2415), 1, + sym_comment, + ACTIONS(7563), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7561), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109031] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2416), 1, + sym_comment, + ACTIONS(7659), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7657), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [109086] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2417), 1, + sym_comment, + ACTIONS(7719), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7717), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109141] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2418), 1, + sym_comment, + ACTIONS(7473), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7471), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109196] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2419), 1, + sym_comment, + ACTIONS(7469), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7467), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109251] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2420), 1, + sym_comment, + ACTIONS(7433), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7431), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109306] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2421), 1, + sym_comment, + ACTIONS(7567), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7565), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109361] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2422), 1, + sym_comment, + ACTIONS(7513), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7511), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109416] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2423), 1, + sym_comment, + ACTIONS(7517), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7515), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109471] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2424), 1, + sym_comment, + ACTIONS(7655), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7653), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [109526] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2425), 1, + sym_comment, + ACTIONS(7571), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7569), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109581] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2426), 1, + sym_comment, + ACTIONS(7465), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7463), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109636] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2427), 1, + sym_comment, + ACTIONS(7457), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7455), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109691] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2428), 1, + sym_comment, + ACTIONS(7521), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7519), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109746] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2429), 1, + sym_comment, + ACTIONS(7525), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7523), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109801] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2430), 1, + sym_comment, + ACTIONS(7529), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7527), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109856] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2431), 1, + sym_comment, + ACTIONS(7533), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7531), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109911] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2432), 1, + sym_comment, + ACTIONS(7673), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7671), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [109966] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2433), 1, + sym_comment, + ACTIONS(7541), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7539), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110021] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2434), 1, + sym_comment, + ACTIONS(7575), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7573), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110076] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2435), 1, + sym_comment, + ACTIONS(7579), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7577), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110131] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2436), 1, + sym_comment, + ACTIONS(7583), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7581), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110186] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2437), 1, + sym_comment, + ACTIONS(7545), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7543), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110241] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2438), 1, + sym_comment, + ACTIONS(7549), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7547), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110296] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2439), 1, + sym_comment, + ACTIONS(7449), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7447), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110351] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2440), 1, + sym_comment, + ACTIONS(7587), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7585), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110406] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2441), 1, + sym_comment, + ACTIONS(7591), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7589), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110461] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2442), 1, + sym_comment, + ACTIONS(7651), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7649), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [110516] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2443), 1, + sym_comment, + ACTIONS(7723), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7721), 33, + 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATendswitch, + 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, + [110571] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2444), 1, + sym_comment, + ACTIONS(7445), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7443), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110626] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2445), 1, + sym_comment, + ACTIONS(7441), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7439), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110681] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2446), 1, + sym_comment, + ACTIONS(7429), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7427), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110736] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2447), 1, + sym_comment, + ACTIONS(7595), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7593), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110791] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2448), 1, + sym_comment, + ACTIONS(7615), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7613), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [110846] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2449), 1, + sym_comment, + ACTIONS(7549), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7547), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [110901] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2450), 1, + sym_comment, + ACTIONS(7545), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7543), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [110956] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2451), 1, + sym_comment, + ACTIONS(7677), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 33, + 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_ATendpush, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111011] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2452), 1, + sym_comment, + ACTIONS(7719), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7717), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendsection, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111066] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2453), 1, + sym_comment, + ACTIONS(7541), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7539), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [111121] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2454), 1, + sym_comment, + ACTIONS(7719), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7717), 33, + 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_ATendpush, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111176] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2455), 1, + sym_comment, + ACTIONS(7677), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 33, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111231] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2456), 1, + sym_comment, + ACTIONS(7673), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7671), 33, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111286] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2457), 1, + sym_comment, + ACTIONS(7603), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7601), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111341] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2458), 1, + sym_comment, + ACTIONS(7669), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7667), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATonce, + anon_sym_ATendonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111396] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2459), 1, + sym_comment, + ACTIONS(7607), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7605), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111451] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2460), 1, + sym_comment, + ACTIONS(7611), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7609), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111506] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2461), 1, + sym_comment, + ACTIONS(7615), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7613), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111561] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2462), 1, + sym_comment, + ACTIONS(7719), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7717), 33, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111616] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2463), 1, + sym_comment, + ACTIONS(7673), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7671), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [111671] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2464), 1, + sym_comment, + ACTIONS(7533), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7531), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [111726] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2465), 1, + sym_comment, + ACTIONS(7529), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7527), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [111781] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2466), 1, + sym_comment, + ACTIONS(7673), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7671), 33, + 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_ATendpush, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111836] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2467), 1, + sym_comment, + ACTIONS(7619), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7617), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111891] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2468), 1, + sym_comment, + ACTIONS(7623), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7621), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [111946] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2469), 1, + sym_comment, + ACTIONS(7673), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7671), 33, + 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_ATendPushIf, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [112001] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2470), 1, + sym_comment, + ACTIONS(7595), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7593), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [112056] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2471), 1, + sym_comment, + ACTIONS(7525), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7523), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112111] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2472), 1, + sym_comment, + ACTIONS(7521), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7519), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112166] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2473), 1, + sym_comment, + ACTIONS(7647), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7645), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112221] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2474), 1, + sym_comment, + ACTIONS(7669), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7667), 33, + 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_ATendverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [112276] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2475), 1, + sym_comment, + ACTIONS(7627), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7625), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [112331] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2476), 1, + sym_comment, + ACTIONS(7631), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7629), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [112386] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2477), 1, + sym_comment, + ACTIONS(7643), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7641), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112441] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2478), 1, + sym_comment, + ACTIONS(7517), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7515), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112496] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2479), 1, + sym_comment, + ACTIONS(7513), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7511), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112551] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2480), 1, + sym_comment, + ACTIONS(7509), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7507), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112606] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2481), 1, + sym_comment, + ACTIONS(7719), 12, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + aux_sym_loop_operator_token1, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7717), 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, + 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_ATcannot, + anon_sym_ATcanany, + aux_sym__custom_token1, + anon_sym_ATswitch, + anon_sym_ATbreak, + anon_sym_ATforeach, + anon_sym_ATforelse, + anon_sym_ATwhile, + anon_sym_ATpersist, + anon_sym_ATteleport, + anon_sym_ATvolt, + aux_sym_text_token3, + [112661] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2482), 1, + sym_comment, + ACTIONS(7623), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7621), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112716] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2483), 1, + sym_comment, + ACTIONS(7591), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7589), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [112771] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2484), 1, + sym_comment, + ACTIONS(7587), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7585), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [112826] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2485), 1, + sym_comment, + ACTIONS(7501), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7499), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112881] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2486), 1, + sym_comment, + ACTIONS(7639), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7637), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112936] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2487), 1, + sym_comment, + ACTIONS(7497), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7495), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [112991] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2488), 1, + sym_comment, + ACTIONS(7635), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7633), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113046] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2489), 1, + sym_comment, + ACTIONS(7635), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7633), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [113101] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2490), 1, + sym_comment, + ACTIONS(7583), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7581), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113156] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2491), 1, + sym_comment, + ACTIONS(7579), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7577), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113211] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2492), 1, + sym_comment, + ACTIONS(7631), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7629), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [113266] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2493), 1, + sym_comment, + ACTIONS(7627), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7625), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [113321] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2494), 1, + sym_comment, + ACTIONS(7639), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7637), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113376] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2495), 1, + sym_comment, + ACTIONS(7677), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 33, + 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_ATendprepend, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113431] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2496), 1, + sym_comment, + ACTIONS(7643), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7641), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113486] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2497), 1, + sym_comment, + ACTIONS(7493), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7491), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [113541] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2498), 1, + sym_comment, + ACTIONS(7677), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [113596] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2499), 1, + sym_comment, + ACTIONS(7619), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7617), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [113651] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2500), 1, + sym_comment, + ACTIONS(7615), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7613), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [113706] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2501), 1, + sym_comment, + ACTIONS(7611), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7609), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [113761] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2502), 1, + sym_comment, + ACTIONS(7575), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7573), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113816] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2503), 1, + sym_comment, + ACTIONS(7571), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7569), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113871] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2504), 1, + sym_comment, + ACTIONS(7567), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7565), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113926] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2505), 1, + sym_comment, + ACTIONS(7433), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7431), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [113981] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2506), 1, + sym_comment, + ACTIONS(7677), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7675), 33, + 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_ATendPushIf, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114036] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2507), 1, + sym_comment, + ACTIONS(7489), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7487), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [114091] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2508), 1, + sym_comment, + ACTIONS(7651), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7649), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114146] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2509), 1, + sym_comment, + ACTIONS(7655), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7653), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114201] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2510), 1, + sym_comment, + ACTIONS(7719), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7717), 33, + 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_ATendPushIf, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114256] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2511), 1, + sym_comment, + ACTIONS(7485), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7483), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [114311] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2512), 1, + sym_comment, + ACTIONS(7563), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7561), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114366] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2513), 1, + sym_comment, + ACTIONS(7559), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7557), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114421] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2514), 1, + sym_comment, + ACTIONS(7555), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7553), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114476] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2515), 1, + sym_comment, + ACTIONS(7607), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7605), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [114531] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2516), 1, + sym_comment, + ACTIONS(7659), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7657), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114586] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2517), 1, + sym_comment, + ACTIONS(7663), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7661), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114641] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2518), 1, + sym_comment, + ACTIONS(7481), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7479), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [114696] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2519), 1, + sym_comment, + ACTIONS(7477), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7475), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [114751] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2520), 1, + sym_comment, + ACTIONS(7473), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7471), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [114806] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2521), 1, + sym_comment, + ACTIONS(7469), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7467), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [114861] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2522), 1, + sym_comment, + ACTIONS(7603), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7601), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [114916] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2523), 1, + sym_comment, + ACTIONS(7437), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7435), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [114971] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2524), 1, + sym_comment, + ACTIONS(7461), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7459), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [115026] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2525), 1, + sym_comment, + ACTIONS(7537), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7535), 33, + aux_sym_keyword_token1, + anon_sym_LBRACE_BANG_BANG, + anon_sym_ATphp, + aux_sym_attribute_token1, + anon_sym_ATfragment, + anon_sym_ATendfragment, + anon_sym_ATonce, + anon_sym_ATverbatim, + anon_sym_ATpushOnce, + 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, + anon_sym_ATcannot, + anon_sym_ATcanany, + 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, + [115081] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2526), 1, + sym_comment, + ACTIONS(7465), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7463), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [115136] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2527), 1, + sym_comment, + ACTIONS(7457), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7455), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [115191] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2528), 1, + sym_comment, + ACTIONS(7429), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7427), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [115246] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2529), 1, + sym_comment, + ACTIONS(7441), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7439), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [115301] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2530), 1, + sym_comment, + ACTIONS(7445), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7443), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [115356] = 4, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(2531), 1, + sym_comment, + ACTIONS(7449), 11, + anon_sym_LBRACE_LBRACE, + aux_sym__inline_directive_token1, + anon_sym_ATsection, + anon_sym_ATpush, + anon_sym_ATprepend, + anon_sym_ATunless, + anon_sym_ATcan, + aux_sym__custom_token2, + anon_sym_ATfor, + aux_sym_text_token1, + aux_sym_text_token2, + ACTIONS(7447), 33, + ts_builtin_sym_end, + 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, + 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_ATcannot, + anon_sym_ATcanany, + 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, + [115411] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7691), 1, + anon_sym_LPAREN, + ACTIONS(7725), 1, + anon_sym_ATendphp, + ACTIONS(7729), 1, + aux_sym_text_token3, + STATE(1838), 1, + sym__directive_parameter, + STATE(2532), 1, + sym_comment, + STATE(2641), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115440] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7423), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7731), 1, + anon_sym_ATendphp, + STATE(1342), 1, + sym__directive_parameter, + STATE(2533), 1, + sym_comment, + STATE(2703), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115469] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7685), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7733), 1, + anon_sym_ATendphp, + STATE(2024), 1, + sym__directive_parameter, + STATE(2534), 1, + sym_comment, + STATE(2699), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115498] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7419), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7735), 1, + anon_sym_ATendphp, + STATE(1041), 1, + sym__directive_parameter, + STATE(2535), 1, + sym_comment, + STATE(2691), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115527] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7701), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7737), 1, + anon_sym_ATendphp, + STATE(1548), 1, + sym__directive_parameter, + STATE(2536), 1, + sym_comment, + STATE(2717), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115556] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7695), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7739), 1, + anon_sym_ATendphp, + STATE(1714), 1, + sym__directive_parameter, + STATE(2537), 1, + sym_comment, + STATE(2570), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115585] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7401), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7741), 1, + anon_sym_ATendphp, + STATE(958), 1, + sym__directive_parameter, + STATE(2538), 1, + sym_comment, + STATE(2728), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115614] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7709), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7743), 1, + anon_sym_ATendphp, + STATE(2406), 1, + sym__directive_parameter, + STATE(2539), 1, + sym_comment, + STATE(2580), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115643] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7703), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7745), 1, + anon_sym_ATendphp, + STATE(1487), 1, + sym__directive_parameter, + STATE(2540), 1, + sym_comment, + STATE(2682), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115672] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7687), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7747), 1, + anon_sym_ATendphp, + STATE(1962), 1, + sym__directive_parameter, + STATE(2541), 1, + sym_comment, + STATE(2697), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115701] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7683), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7749), 1, + anon_sym_ATendphp, + STATE(2086), 1, + sym__directive_parameter, + STATE(2542), 1, + sym_comment, + STATE(2667), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115730] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7425), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7751), 1, + anon_sym_ATendphp, + STATE(628), 1, + sym__directive_parameter, + STATE(2543), 1, + sym_comment, + STATE(2671), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115759] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7421), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7753), 1, + anon_sym_ATendphp, + STATE(968), 1, + sym__directive_parameter, + STATE(2544), 1, + sym_comment, + STATE(2651), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115788] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7551), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7755), 1, + anon_sym_ATendphp, + STATE(2525), 1, + sym__directive_parameter, + STATE(2545), 1, + sym_comment, + STATE(2709), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115817] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7699), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7757), 1, + anon_sym_ATendphp, + STATE(1527), 1, + sym__directive_parameter, + STATE(2546), 1, + sym_comment, + STATE(2668), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115846] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7689), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7759), 1, + anon_sym_ATendphp, + STATE(1900), 1, + sym__directive_parameter, + STATE(2547), 1, + sym_comment, + STATE(2657), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115875] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7397), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7761), 1, + anon_sym_ATendphp, + STATE(1278), 1, + sym__directive_parameter, + STATE(2548), 1, + sym_comment, + STATE(2663), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115904] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7707), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7763), 1, + anon_sym_ATendphp, + STATE(2280), 1, + sym__directive_parameter, + STATE(2549), 1, + sym_comment, + STATE(2664), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115933] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7681), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7765), 1, + anon_sym_ATendphp, + STATE(2148), 1, + sym__directive_parameter, + STATE(2550), 1, + sym_comment, + STATE(2614), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115962] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7407), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7767), 1, + anon_sym_ATendphp, + STATE(896), 1, + sym__directive_parameter, + STATE(2551), 1, + sym_comment, + STATE(2626), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [115991] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7417), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7769), 1, + anon_sym_ATendphp, + STATE(748), 1, + sym__directive_parameter, + STATE(2552), 1, + sym_comment, + STATE(2689), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116020] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7409), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7771), 1, + anon_sym_ATendphp, + STATE(1082), 1, + sym__directive_parameter, + STATE(2553), 1, + sym_comment, + STATE(2636), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116049] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7411), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7773), 1, + anon_sym_ATendphp, + STATE(823), 1, + sym__directive_parameter, + STATE(2554), 1, + sym_comment, + STATE(2591), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116078] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7693), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7775), 1, + anon_sym_ATendphp, + STATE(1776), 1, + sym__directive_parameter, + STATE(2555), 1, + sym_comment, + STATE(2590), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116107] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7715), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7777), 1, + anon_sym_ATendphp, + STATE(2392), 1, + sym__directive_parameter, + STATE(2556), 1, + sym_comment, + STATE(2700), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116136] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7679), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7779), 1, + anon_sym_ATendphp, + STATE(2210), 1, + sym__directive_parameter, + STATE(2557), 1, + sym_comment, + STATE(2592), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116165] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7415), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7781), 1, + anon_sym_ATendphp, + STATE(1148), 1, + sym__directive_parameter, + STATE(2558), 1, + sym_comment, + STATE(2589), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116194] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7399), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7783), 1, + anon_sym_ATendphp, + STATE(561), 1, + sym__directive_parameter, + STATE(2559), 1, + sym_comment, + STATE(2596), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116223] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7697), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7785), 1, + anon_sym_ATendphp, + STATE(1669), 1, + sym__directive_parameter, + STATE(2560), 1, + sym_comment, + STATE(2621), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116252] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7705), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7787), 1, + anon_sym_ATendphp, + STATE(1427), 1, + sym__directive_parameter, + STATE(2561), 1, + sym_comment, + STATE(2616), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116281] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7665), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7789), 1, + anon_sym_ATendphp, + STATE(2290), 1, + sym__directive_parameter, + STATE(2562), 1, + sym_comment, + STATE(2579), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116310] = 9, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7413), 1, + anon_sym_LPAREN, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7791), 1, + anon_sym_ATendphp, + STATE(1214), 1, + sym__directive_parameter, + STATE(2563), 1, + sym_comment, + STATE(2615), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116339] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7793), 1, + anon_sym_BANG_BANG_RBRACE, + ACTIONS(7797), 1, + aux_sym_text_token2, + STATE(2564), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116362] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7799), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(7803), 1, + aux_sym_text_token2, + STATE(2565), 1, + sym_comment, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116385] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7805), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2566), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116408] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7807), 1, + anon_sym_RBRACE_RBRACE, + STATE(2567), 1, + sym_comment, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116431] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7809), 1, + anon_sym_RBRACE_RBRACE, + STATE(2568), 1, + sym_comment, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116454] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7811), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2569), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116477] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7813), 1, + anon_sym_ATendphp, + STATE(2570), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116500] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7815), 1, + anon_sym_RBRACE_RBRACE, + STATE(2571), 1, + sym_comment, + STATE(2576), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116523] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7817), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2572), 1, + sym_comment, + STATE(2577), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116546] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7819), 1, + anon_sym_RBRACE_RBRACE, + STATE(2565), 1, + aux_sym__escaped_repeat1, + STATE(2573), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116569] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7821), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2574), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116592] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7823), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2566), 1, + aux_sym__escaped_repeat1, + STATE(2575), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116615] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7825), 1, + anon_sym_RBRACE_RBRACE, + STATE(2576), 1, + sym_comment, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116638] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7827), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2577), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116661] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7829), 1, + anon_sym_RBRACE_RBRACE, + STATE(2567), 1, + aux_sym__escaped_repeat1, + STATE(2578), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116684] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7831), 1, + anon_sym_ATendphp, + STATE(2579), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116707] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7833), 1, + anon_sym_ATendphp, + STATE(2580), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116730] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7835), 1, + anon_sym_RBRACE_RBRACE, + STATE(2581), 1, + sym_comment, + STATE(2713), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116753] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7837), 1, + anon_sym_RBRACE_RBRACE, + STATE(2582), 1, + sym_comment, + STATE(2587), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116776] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7839), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2564), 1, + aux_sym__escaped_repeat1, + STATE(2583), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116799] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7841), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2584), 1, + sym_comment, + STATE(2706), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116822] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7843), 1, + anon_sym_RBRACE_RBRACE, + STATE(2585), 1, + sym_comment, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116845] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7845), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2586), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116868] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7847), 1, + anon_sym_RBRACE_RBRACE, + STATE(2587), 1, + sym_comment, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116891] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7849), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2588), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [116914] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7851), 1, + anon_sym_ATendphp, + STATE(2589), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116937] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7853), 1, + anon_sym_ATendphp, + STATE(2590), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116960] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7855), 1, + anon_sym_ATendphp, + STATE(2591), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [116983] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7857), 1, + anon_sym_ATendphp, + STATE(2592), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [117006] = 6, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7859), 1, + anon_sym_RBRACE_RBRACE, + ACTIONS(7864), 1, + aux_sym_text_token2, + STATE(2876), 1, + sym_text, + ACTIONS(7861), 2, + aux_sym_text_token1, + aux_sym_text_token3, + STATE(2593), 2, + sym_comment, + aux_sym__escaped_repeat1, + [117027] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7867), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2594), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117050] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7869), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2595), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117073] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7871), 1, + anon_sym_ATendphp, + STATE(2596), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [117096] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7873), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2597), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117119] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7875), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2594), 1, + aux_sym__escaped_repeat1, + STATE(2598), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117142] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7877), 1, + anon_sym_RBRACE_RBRACE, + STATE(2595), 1, + aux_sym__escaped_repeat1, + STATE(2599), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117165] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7879), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2600), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117188] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7881), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2601), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117211] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7883), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2602), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117234] = 6, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7885), 1, + anon_sym_DASH_DASH_RBRACE_RBRACE, + ACTIONS(7890), 1, + aux_sym_text_token2, + STATE(2875), 1, + sym_text, + ACTIONS(7887), 2, + aux_sym_text_token1, + aux_sym_text_token3, + STATE(2603), 2, + sym_comment, + aux_sym_comment_repeat1, + [117255] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7893), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2597), 1, + aux_sym__escaped_repeat1, + STATE(2604), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117278] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7895), 1, + anon_sym_RBRACE_RBRACE, + STATE(2601), 1, + aux_sym__escaped_repeat1, + STATE(2605), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117301] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7897), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2600), 1, + aux_sym__escaped_repeat1, + STATE(2606), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117324] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7899), 1, + anon_sym_RBRACE_RBRACE, + STATE(2607), 1, + sym_comment, + STATE(2610), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117347] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7901), 1, + anon_sym_RBRACE_RBRACE, + STATE(2602), 1, + aux_sym__escaped_repeat1, + STATE(2608), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117370] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7903), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2609), 1, + sym_comment, + STATE(2611), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117393] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7905), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2610), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117416] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7907), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2611), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117439] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7909), 1, + anon_sym_RBRACE_RBRACE, + STATE(2612), 1, + sym_comment, + STATE(2618), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117462] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7911), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2613), 1, + sym_comment, + STATE(2619), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117485] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7913), 1, + anon_sym_ATendphp, + STATE(2614), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [117508] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7915), 1, + anon_sym_ATendphp, + STATE(2615), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [117531] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7917), 1, + anon_sym_ATendphp, + STATE(2616), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [117554] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7919), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2617), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117577] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7921), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2618), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117600] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7923), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2619), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117623] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7925), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2620), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117646] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7927), 1, + anon_sym_ATendphp, + STATE(2621), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [117669] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7929), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2622), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117692] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7931), 1, + anon_sym_RBRACE_RBRACE, + STATE(2623), 1, + sym_comment, + STATE(2630), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117715] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7933), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2624), 1, + sym_comment, + STATE(2634), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117738] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7935), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2625), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117761] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7937), 1, + anon_sym_ATendphp, + STATE(2626), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [117784] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7939), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2617), 1, + aux_sym__escaped_repeat1, + STATE(2627), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117807] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7941), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2628), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117830] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7943), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2629), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117853] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7945), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2630), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117876] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7947), 1, + anon_sym_RBRACE_RBRACE, + STATE(2568), 1, + aux_sym__escaped_repeat1, + STATE(2631), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117899] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7949), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2628), 1, + aux_sym__escaped_repeat1, + STATE(2632), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117922] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7951), 1, + anon_sym_RBRACE_RBRACE, + STATE(2629), 1, + aux_sym__escaped_repeat1, + STATE(2633), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117945] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7953), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2634), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117968] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7955), 1, + anon_sym_RBRACE_RBRACE, + STATE(2620), 1, + aux_sym__escaped_repeat1, + STATE(2635), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [117991] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7957), 1, + anon_sym_ATendphp, + STATE(2636), 1, + sym_comment, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [118014] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7959), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2622), 1, + aux_sym__escaped_repeat1, + STATE(2637), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118037] = 6, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7859), 1, + anon_sym_ATendphp, + ACTIONS(7964), 1, + aux_sym_text_token3, + STATE(2869), 1, + sym_text, + ACTIONS(7961), 2, + aux_sym_text_token1, + aux_sym_text_token2, + STATE(2638), 2, + sym_comment, + aux_sym__escaped_repeat1, + [118058] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7967), 1, + anon_sym_RBRACE_RBRACE, + STATE(2625), 1, + aux_sym__escaped_repeat1, + STATE(2639), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118081] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7969), 1, + anon_sym_RBRACE_RBRACE, + STATE(2640), 1, + sym_comment, + STATE(2652), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118104] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7971), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2641), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [118127] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7973), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2642), 1, + sym_comment, + STATE(2654), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118150] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7975), 1, + anon_sym_RBRACE_RBRACE, + STATE(2643), 1, + sym_comment, + STATE(2692), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118173] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7977), 1, + anon_sym_RBRACE_RBRACE, + STATE(2644), 1, + sym_comment, + STATE(2656), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118196] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7979), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2645), 1, + sym_comment, + STATE(2661), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118219] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7981), 1, + anon_sym_DASH_DASH_RBRACE_RBRACE, + ACTIONS(7985), 1, + aux_sym_text_token2, + STATE(2646), 1, + sym_comment, + STATE(2725), 1, + aux_sym_comment_repeat1, + STATE(2875), 1, + sym_text, + ACTIONS(7983), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118242] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7987), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2647), 1, + sym_comment, + STATE(2650), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118265] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7989), 1, + anon_sym_RBRACE_RBRACE, + STATE(2648), 1, + sym_comment, + STATE(2653), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118288] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7991), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2649), 1, + sym_comment, + STATE(2655), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118311] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(7993), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2650), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118334] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(7995), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2651), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [118357] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7997), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2652), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118380] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(7999), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2653), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118403] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8001), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2654), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118426] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8003), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2655), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118449] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8005), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2656), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118472] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8007), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2657), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [118495] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8009), 1, + anon_sym_RBRACE_RBRACE, + STATE(2658), 1, + sym_comment, + STATE(2665), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118518] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8011), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2659), 1, + sym_comment, + STATE(2666), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118541] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8013), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2660), 1, + sym_comment, + STATE(2704), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118564] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8015), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2661), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118587] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8017), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2662), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118610] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8019), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2663), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [118633] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8021), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2664), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [118656] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8023), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2665), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118679] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8025), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2666), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118702] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8027), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2667), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [118725] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8029), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2668), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [118748] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8031), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2669), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118771] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8033), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2670), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118794] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8035), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2671), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [118817] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8037), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2672), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118840] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8039), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2673), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118863] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8041), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2586), 1, + aux_sym__escaped_repeat1, + STATE(2674), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118886] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8043), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2662), 1, + aux_sym__escaped_repeat1, + STATE(2675), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118909] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8045), 1, + anon_sym_RBRACE_RBRACE, + STATE(2669), 1, + aux_sym__escaped_repeat1, + STATE(2676), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118932] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8047), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2677), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118955] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8049), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2678), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [118978] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8051), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2673), 1, + aux_sym__escaped_repeat1, + STATE(2679), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119001] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8053), 1, + anon_sym_RBRACE_RBRACE, + STATE(2585), 1, + aux_sym__escaped_repeat1, + STATE(2680), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119024] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8055), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2670), 1, + aux_sym__escaped_repeat1, + STATE(2681), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119047] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8057), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2682), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [119070] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8059), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2683), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119093] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8061), 1, + anon_sym_RBRACE_RBRACE, + STATE(2677), 1, + aux_sym__escaped_repeat1, + STATE(2684), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119116] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8063), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2685), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119139] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8065), 1, + anon_sym_RBRACE_RBRACE, + STATE(2672), 1, + aux_sym__escaped_repeat1, + STATE(2686), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119162] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8067), 1, + anon_sym_RBRACE_RBRACE, + STATE(2687), 1, + sym_comment, + STATE(2690), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119185] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8069), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2688), 1, + sym_comment, + STATE(2695), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119208] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8071), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2689), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [119231] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8073), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2690), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119254] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8075), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2691), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [119277] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8077), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2692), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119300] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8079), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2683), 1, + aux_sym__escaped_repeat1, + STATE(2693), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119323] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8081), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2694), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119346] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8083), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2695), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119369] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8085), 1, + anon_sym_RBRACE_RBRACE, + STATE(2685), 1, + aux_sym__escaped_repeat1, + STATE(2696), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119392] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8087), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2697), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [119415] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8089), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2698), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119438] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8091), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2699), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [119461] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8093), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2700), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [119484] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8095), 1, + anon_sym_RBRACE_RBRACE, + STATE(2701), 1, + sym_comment, + STATE(2705), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119507] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8097), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2588), 1, + aux_sym__escaped_repeat1, + STATE(2702), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119530] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8099), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2703), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [119553] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8101), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2704), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119576] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8103), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2705), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119599] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8105), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2706), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119622] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8107), 1, + anon_sym_RBRACE_RBRACE, + STATE(2707), 1, + sym_comment, + STATE(2714), 1, + aux_sym__escaped_repeat1, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119645] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8109), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2708), 1, + sym_comment, + STATE(2715), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119668] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8111), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2709), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [119691] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8113), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2569), 1, + aux_sym__escaped_repeat1, + STATE(2710), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119714] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8115), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2694), 1, + aux_sym__escaped_repeat1, + STATE(2711), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119737] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8117), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2712), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119760] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8119), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2713), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119783] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8121), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2714), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119806] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8123), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2715), 1, + sym_comment, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119829] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8125), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2716), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119852] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8127), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2717), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [119875] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8129), 1, + anon_sym_RBRACE_RBRACE, + STATE(2698), 1, + aux_sym__escaped_repeat1, + STATE(2718), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119898] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8131), 1, + anon_sym_RBRACE_RBRACE, + STATE(2593), 1, + aux_sym__escaped_repeat1, + STATE(2719), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119921] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8133), 1, + anon_sym_RBRACE_RBRACE, + STATE(2719), 1, + aux_sym__escaped_repeat1, + STATE(2720), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119944] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8135), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2721), 1, + sym_comment, + STATE(2724), 1, + aux_sym__escaped_repeat1, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119967] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8137), 1, + anon_sym_RBRACE_RBRACE, + STATE(2678), 1, + aux_sym__escaped_repeat1, + STATE(2722), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [119990] = 6, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7859), 1, + anon_sym_BANG_BANG_RBRACE, + ACTIONS(8142), 1, + aux_sym_text_token2, + STATE(2874), 1, + sym_text, + ACTIONS(8139), 2, + aux_sym_text_token1, + aux_sym_text_token3, + STATE(2723), 2, + sym_comment, + aux_sym__escaped_repeat1, + [120011] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8145), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2723), 1, + aux_sym__escaped_repeat1, + STATE(2724), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [120034] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7985), 1, + aux_sym_text_token2, + ACTIONS(8147), 1, + anon_sym_DASH_DASH_RBRACE_RBRACE, + STATE(2603), 1, + aux_sym_comment_repeat1, + STATE(2725), 1, + sym_comment, + STATE(2875), 1, + sym_text, + ACTIONS(7983), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [120057] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8149), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2574), 1, + aux_sym__escaped_repeat1, + STATE(2726), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [120080] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7797), 1, + aux_sym_text_token2, + ACTIONS(8151), 1, + anon_sym_BANG_BANG_RBRACE, + STATE(2712), 1, + aux_sym__escaped_repeat1, + STATE(2727), 1, + sym_comment, + STATE(2874), 1, + sym_text, + ACTIONS(7795), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [120103] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7729), 1, + aux_sym_text_token3, + ACTIONS(8153), 1, + anon_sym_ATendphp, + STATE(2638), 1, + aux_sym__escaped_repeat1, + STATE(2728), 1, + sym_comment, + STATE(2869), 1, + sym_text, + ACTIONS(7727), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [120126] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7803), 1, + aux_sym_text_token2, + ACTIONS(8155), 1, + anon_sym_RBRACE_RBRACE, + STATE(2716), 1, + aux_sym__escaped_repeat1, + STATE(2729), 1, + sym_comment, + STATE(2876), 1, + sym_text, + ACTIONS(7801), 2, + aux_sym_text_token1, + aux_sym_text_token3, + [120149] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8157), 1, + anon_sym_ATdefault, + ACTIONS(8159), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + STATE(2730), 1, + sym_comment, + STATE(2734), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120171] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(3305), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8163), 1, + anon_sym_ATdefault, + STATE(2731), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120193] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(5317), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8165), 1, + anon_sym_ATdefault, + STATE(2732), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120215] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8169), 1, + anon_sym_RPAREN, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + STATE(2733), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120237] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(6725), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8173), 1, + anon_sym_ATdefault, + STATE(2734), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120259] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8175), 1, + anon_sym_RPAREN, + STATE(2735), 1, + sym_comment, + STATE(2750), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120281] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8177), 1, + anon_sym_ATdefault, + ACTIONS(8179), 1, + anon_sym_ATendswitch, + STATE(2736), 1, + sym_comment, + STATE(2803), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120303] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(3909), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8181), 1, + anon_sym_ATdefault, + STATE(2737), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120325] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8183), 1, + anon_sym_RPAREN, + STATE(2738), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120347] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8185), 1, + anon_sym_ATdefault, + ACTIONS(8187), 1, + anon_sym_ATendswitch, + STATE(2737), 1, + aux_sym_switch_repeat1, + STATE(2739), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [120369] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8189), 1, + anon_sym_RPAREN, + STATE(2740), 1, + sym_comment, + STATE(2763), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120391] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8191), 1, + anon_sym_RPAREN, + STATE(2738), 1, + aux_sym__directive_parameter_repeat1, + STATE(2741), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120413] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8193), 1, + anon_sym_ATdefault, + ACTIONS(8195), 1, + anon_sym_ATendswitch, + STATE(2742), 1, + sym_comment, + STATE(2752), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120435] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8197), 1, + anon_sym_RPAREN, + STATE(2743), 1, + sym_comment, + STATE(2802), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120457] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8199), 1, + anon_sym_RPAREN, + STATE(2744), 1, + sym_comment, + STATE(2852), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120479] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(6985), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8201), 1, + anon_sym_ATdefault, + STATE(2745), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120501] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8203), 1, + anon_sym_RPAREN, + STATE(2746), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120523] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8205), 1, + anon_sym_RPAREN, + STATE(2747), 1, + sym_comment, + STATE(2755), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120545] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(4057), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8207), 1, + anon_sym_ATdefault, + STATE(2748), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120567] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8209), 1, + anon_sym_RPAREN, + STATE(2749), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120589] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8211), 1, + anon_sym_RPAREN, + STATE(2750), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120611] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8213), 1, + anon_sym_RPAREN, + STATE(2751), 1, + sym_comment, + STATE(2815), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120633] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(5143), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8215), 1, + anon_sym_ATdefault, + STATE(2752), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120655] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8217), 1, + anon_sym_ATdefault, + ACTIONS(8219), 1, + anon_sym_ATendswitch, + STATE(2745), 1, + aux_sym_switch_repeat1, + STATE(2753), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [120677] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8221), 1, + anon_sym_ATdefault, + ACTIONS(8223), 1, + anon_sym_ATendswitch, + STATE(2754), 1, + sym_comment, + STATE(2761), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120699] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8225), 1, + anon_sym_RPAREN, + STATE(2755), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120721] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8227), 1, + anon_sym_ATdefault, + ACTIONS(8229), 1, + anon_sym_ATendswitch, + STATE(2756), 1, + sym_comment, + STATE(2764), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120743] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8231), 1, + anon_sym_RPAREN, + STATE(2733), 1, + aux_sym__directive_parameter_repeat1, + STATE(2757), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120765] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8233), 1, + anon_sym_ATdefault, + ACTIONS(8235), 1, + anon_sym_ATendswitch, + STATE(2758), 1, + sym_comment, + STATE(2804), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120787] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8237), 1, + anon_sym_RPAREN, + STATE(2759), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120809] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8239), 1, + anon_sym_ATdefault, + ACTIONS(8241), 1, + anon_sym_ATendswitch, + STATE(2748), 1, + aux_sym_switch_repeat1, + STATE(2760), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [120831] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(6981), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8243), 1, + anon_sym_ATdefault, + STATE(2761), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120853] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8245), 1, + anon_sym_RPAREN, + STATE(2762), 1, + sym_comment, + STATE(2767), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120875] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8247), 1, + anon_sym_RPAREN, + STATE(2763), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120897] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7097), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8249), 1, + anon_sym_ATdefault, + STATE(2764), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120919] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8251), 1, + anon_sym_RPAREN, + STATE(2765), 1, + sym_comment, + STATE(2799), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120941] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8253), 1, + anon_sym_ATdefault, + ACTIONS(8255), 1, + anon_sym_ATendswitch, + STATE(2766), 1, + sym_comment, + STATE(2769), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [120963] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8257), 1, + anon_sym_RPAREN, + STATE(2767), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [120985] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8259), 1, + anon_sym_RPAREN, + STATE(2768), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121007] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(3331), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8261), 1, + anon_sym_ATdefault, + STATE(2769), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121029] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8263), 1, + anon_sym_RPAREN, + STATE(2770), 1, + sym_comment, + STATE(2824), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121051] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8265), 1, + anon_sym_RPAREN, + STATE(2771), 1, + sym_comment, + STATE(2797), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121073] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(5853), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8267), 1, + anon_sym_ATdefault, + STATE(2772), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121095] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8269), 1, + anon_sym_RPAREN, + STATE(2749), 1, + aux_sym__directive_parameter_repeat1, + STATE(2773), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121117] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8271), 1, + anon_sym_RPAREN, + STATE(2746), 1, + aux_sym__directive_parameter_repeat1, + STATE(2774), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121139] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8273), 1, + anon_sym_RPAREN, + STATE(2775), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121161] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8275), 1, + anon_sym_RPAREN, + STATE(2759), 1, + aux_sym__directive_parameter_repeat1, + STATE(2776), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121183] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8277), 1, + anon_sym_ATdefault, + ACTIONS(8279), 1, + anon_sym_ATendswitch, + STATE(2772), 1, + aux_sym_switch_repeat1, + STATE(2777), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [121205] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8281), 1, + anon_sym_RPAREN, + STATE(2778), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121227] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8283), 1, + anon_sym_RPAREN, + STATE(2775), 1, + aux_sym__directive_parameter_repeat1, + STATE(2779), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121249] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(5313), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8285), 1, + anon_sym_ATdefault, + STATE(2780), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121271] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8287), 1, + anon_sym_RPAREN, + STATE(2781), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121293] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(5149), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8289), 1, + anon_sym_ATdefault, + STATE(2782), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121315] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8291), 1, + anon_sym_RPAREN, + STATE(2783), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121337] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8293), 1, + anon_sym_RPAREN, + STATE(2784), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121359] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8295), 1, + anon_sym_ATdefault, + ACTIONS(8297), 1, + anon_sym_ATendswitch, + STATE(2785), 1, + sym_comment, + STATE(2798), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121381] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8299), 1, + anon_sym_ATdefault, + ACTIONS(8301), 1, + anon_sym_ATendswitch, + STATE(2780), 1, + aux_sym_switch_repeat1, + STATE(2786), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [121403] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8303), 1, + anon_sym_ATdefault, + ACTIONS(8305), 1, + anon_sym_ATendswitch, + STATE(2782), 1, + aux_sym_switch_repeat1, + STATE(2787), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [121425] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(4081), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8307), 1, + anon_sym_ATdefault, + STATE(2788), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121447] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8309), 1, + anon_sym_ATdefault, + ACTIONS(8311), 1, + anon_sym_ATendswitch, + STATE(2789), 1, + sym_comment, + STATE(2844), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121469] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8313), 1, + anon_sym_RPAREN, + STATE(2790), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121491] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8315), 1, + anon_sym_ATdefault, + ACTIONS(8317), 1, + anon_sym_ATendswitch, + STATE(2791), 1, + sym_comment, + STATE(2801), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121513] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8319), 1, + anon_sym_ATdefault, + ACTIONS(8321), 1, + anon_sym_ATendswitch, + STATE(2788), 1, + aux_sym_switch_repeat1, + STATE(2792), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [121535] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8323), 1, + aux_sym_parameter_token1, + ACTIONS(8325), 1, + anon_sym_RPAREN2, + STATE(2793), 1, + sym_comment, + STATE(2838), 1, + aux_sym__directive_parameter_repeat1, + STATE(3759), 1, + sym_parameter, + STATE(3760), 1, + sym__text_with_parenthesis, + [121557] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8323), 1, + aux_sym_parameter_token1, + ACTIONS(8327), 1, + anon_sym_RPAREN2, + STATE(2793), 1, + aux_sym__directive_parameter_repeat1, + STATE(2794), 1, + sym_comment, + STATE(3759), 1, + sym_parameter, + STATE(3760), 1, + sym__text_with_parenthesis, + [121579] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(6957), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8329), 1, + anon_sym_ATdefault, + STATE(2795), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121601] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8331), 1, + anon_sym_RPAREN, + STATE(2796), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121623] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8333), 1, + anon_sym_RPAREN, + STATE(2797), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121645] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7107), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8335), 1, + anon_sym_ATdefault, + STATE(2798), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121667] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8337), 1, + anon_sym_RPAREN, + STATE(2799), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121689] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8339), 1, + anon_sym_ATdefault, + ACTIONS(8341), 1, + anon_sym_ATendswitch, + STATE(2731), 1, + aux_sym_switch_repeat1, + STATE(2800), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [121711] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(4997), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8343), 1, + anon_sym_ATdefault, + STATE(2801), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121733] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8345), 1, + anon_sym_RPAREN, + STATE(2802), 1, + sym_comment, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121755] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(4323), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8347), 1, + anon_sym_ATdefault, + STATE(2803), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121777] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(5167), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8349), 1, + anon_sym_ATdefault, + STATE(2804), 1, + sym_comment, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121799] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8351), 1, + anon_sym_RPAREN, + STATE(2783), 1, + aux_sym__directive_parameter_repeat1, + STATE(2805), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121821] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8353), 1, + anon_sym_ATdefault, + ACTIONS(8355), 1, + anon_sym_ATendswitch, + STATE(2806), 1, + sym_comment, + STATE(2825), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [121843] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8357), 1, + anon_sym_RPAREN, + STATE(2807), 1, + sym_comment, + STATE(2820), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121865] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8323), 1, + aux_sym_parameter_token1, + ACTIONS(8359), 1, + anon_sym_RPAREN2, + STATE(2808), 1, + sym_comment, + STATE(2838), 1, + aux_sym__directive_parameter_repeat1, + STATE(3759), 1, + sym_parameter, + STATE(3760), 1, + sym__text_with_parenthesis, + [121887] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8363), 1, + anon_sym_ATcase, + STATE(3266), 1, + sym__case, + ACTIONS(8361), 2, + anon_sym_ATdefault, + anon_sym_ATendswitch, + STATE(2809), 2, + sym_comment, + aux_sym_switch_repeat1, + [121905] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8366), 1, + anon_sym_ATdefault, + ACTIONS(8368), 1, + anon_sym_ATendswitch, + STATE(2795), 1, + aux_sym_switch_repeat1, + STATE(2810), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [121927] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8370), 1, + anon_sym_RPAREN, + STATE(2811), 1, + sym_comment, + STATE(2822), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121949] = 6, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8372), 1, + anon_sym_RPAREN, + ACTIONS(8374), 1, + aux_sym_parameter_token1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + STATE(2812), 2, + sym_comment, + aux_sym__directive_parameter_repeat1, + [121969] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8377), 1, + anon_sym_RPAREN, + STATE(2781), 1, + aux_sym__directive_parameter_repeat1, + STATE(2813), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [121991] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8379), 1, + anon_sym_RPAREN, + STATE(2814), 1, + sym_comment, + STATE(2848), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122013] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8381), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2815), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122035] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(4685), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8383), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2816), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [122057] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8385), 1, + anon_sym_RPAREN, + STATE(2790), 1, + aux_sym__directive_parameter_repeat1, + STATE(2817), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122079] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8387), 1, + anon_sym_ATdefault, + ACTIONS(8389), 1, + anon_sym_ATendswitch, + STATE(2818), 1, + sym_comment, + STATE(2828), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [122101] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8391), 1, + anon_sym_ATdefault, + ACTIONS(8393), 1, + anon_sym_ATendswitch, + STATE(2819), 1, + sym_comment, + STATE(2823), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [122123] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8395), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2820), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122145] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8397), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2821), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122167] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8399), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2822), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122189] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7391), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8401), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2823), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [122211] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8403), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2824), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122233] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7247), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8405), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2825), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [122255] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(5763), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8407), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2826), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [122277] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8409), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2827), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122299] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(4069), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8411), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2828), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [122321] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8323), 1, + aux_sym_parameter_token1, + ACTIONS(8413), 1, + anon_sym_RPAREN2, + STATE(2808), 1, + aux_sym__directive_parameter_repeat1, + STATE(2829), 1, + sym_comment, + STATE(3759), 1, + sym_parameter, + STATE(3760), 1, + sym__text_with_parenthesis, + [122343] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(4307), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8415), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2830), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [122365] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8417), 1, + anon_sym_ATdefault, + ACTIONS(8419), 1, + anon_sym_ATendswitch, + STATE(2816), 1, + aux_sym_switch_repeat1, + STATE(2831), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [122387] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8421), 1, + anon_sym_ATdefault, + ACTIONS(8423), 1, + anon_sym_ATendswitch, + STATE(2826), 1, + aux_sym_switch_repeat1, + STATE(2832), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [122409] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8425), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2833), 1, + sym_comment, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122431] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8427), 1, + anon_sym_RPAREN, + STATE(2834), 1, + sym_comment, + STATE(2839), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122453] = 7, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8429), 1, + anon_sym_ATdefault, + ACTIONS(8431), 1, + anon_sym_ATendswitch, + STATE(2830), 1, + aux_sym_switch_repeat1, + STATE(2835), 1, + sym_comment, + STATE(3266), 1, + sym__case, + [122475] = 7, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8433), 1, + anon_sym_RPAREN, + STATE(2836), 1, + sym_comment, + STATE(2862), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122497] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6576), 1, - anon_sym_ATendphp, - STATE(1206), 1, - sym__directive_parameter, - STATE(2206), 1, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8435), 1, + anon_sym_ATdefault, + ACTIONS(8437), 1, + anon_sym_ATendswitch, + STATE(2837), 1, sym_comment, - STATE(2362), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94046] = 9, - ACTIONS(3), 1, + STATE(2846), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [122519] = 6, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6578), 1, - anon_sym_ATendphp, - STATE(2035), 1, - sym__directive_parameter, - STATE(2207), 1, + ACTIONS(8372), 1, + anon_sym_RPAREN2, + ACTIONS(8439), 1, + aux_sym_parameter_token1, + STATE(3759), 1, + sym_parameter, + STATE(3760), 1, + sym__text_with_parenthesis, + STATE(2838), 2, sym_comment, - STATE(2364), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94075] = 9, - ACTIONS(3), 1, + aux_sym__directive_parameter_repeat1, + [122539] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6580), 1, - anon_sym_ATendphp, - STATE(758), 1, - sym__directive_parameter, - STATE(2208), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8442), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2839), 1, sym_comment, - STATE(2336), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94104] = 9, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122561] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6582), 1, - anon_sym_ATendphp, - STATE(1263), 1, - sym__directive_parameter, - STATE(2209), 1, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8444), 1, + anon_sym_ATdefault, + ACTIONS(8446), 1, + anon_sym_ATendswitch, + STATE(2840), 1, sym_comment, - STATE(2363), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94133] = 9, - ACTIONS(3), 1, + STATE(2850), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [122583] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6522), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6584), 1, - anon_sym_ATendphp, - STATE(1854), 1, - sym__directive_parameter, - STATE(2210), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8448), 1, + anon_sym_RPAREN, + STATE(2841), 1, sym_comment, - STATE(2352), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94162] = 9, - ACTIONS(3), 1, + STATE(2847), 1, + aux_sym__directive_parameter_repeat1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122605] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6586), 1, - anon_sym_ATendphp, - STATE(1149), 1, - sym__directive_parameter, - STATE(2211), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8450), 1, + anon_sym_RPAREN, + STATE(2833), 1, + aux_sym__directive_parameter_repeat1, + STATE(2842), 1, sym_comment, - STATE(2326), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94191] = 9, - ACTIONS(3), 1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122627] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6588), 1, - anon_sym_ATendphp, - STATE(1321), 1, - sym__directive_parameter, - STATE(2212), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8452), 1, + anon_sym_RPAREN, + STATE(2821), 1, + aux_sym__directive_parameter_repeat1, + STATE(2843), 1, sym_comment, - STATE(2344), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94220] = 9, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122649] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6550), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6590), 1, - anon_sym_ATendphp, - STATE(2146), 1, - sym__directive_parameter, - STATE(2213), 1, + ACTIONS(3337), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8454), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2844), 1, sym_comment, - STATE(2324), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94249] = 9, + STATE(3266), 1, + sym__case, + [122671] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6592), 1, - anon_sym_ATendphp, - STATE(1795), 1, - sym__directive_parameter, - STATE(2214), 1, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8456), 1, + anon_sym_ATdefault, + ACTIONS(8458), 1, + anon_sym_ATendswitch, + STATE(2845), 1, sym_comment, - STATE(2325), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94278] = 9, + STATE(2851), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [122693] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6594), 1, - anon_sym_ATendphp, - STATE(1016), 1, - sym__directive_parameter, - STATE(2215), 1, + ACTIONS(4909), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8460), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2846), 1, sym_comment, - STATE(2310), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94307] = 9, - ACTIONS(3), 1, + STATE(3266), 1, + sym__case, + [122715] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6596), 1, - anon_sym_ATendphp, - STATE(688), 1, - sym__directive_parameter, - STATE(2216), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8462), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2847), 1, sym_comment, - STATE(2303), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94336] = 9, - ACTIONS(3), 1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122737] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6598), 1, - anon_sym_ATendphp, - STATE(1736), 1, - sym__directive_parameter, - STATE(2217), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8464), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2848), 1, sym_comment, - STATE(2315), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94365] = 9, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122759] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6270), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6600), 1, - anon_sym_ATendphp, - STATE(879), 1, - sym__directive_parameter, - STATE(2218), 1, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8466), 1, + anon_sym_ATdefault, + ACTIONS(8468), 1, + anon_sym_ATendswitch, + STATE(2732), 1, + aux_sym_switch_repeat1, + STATE(2849), 1, sym_comment, - STATE(2292), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94394] = 9, + STATE(3266), 1, + sym__case, + [122781] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6602), 1, - anon_sym_ATendphp, - STATE(1079), 1, - sym__directive_parameter, - STATE(2219), 1, + ACTIONS(4553), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8470), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2850), 1, sym_comment, - STATE(2282), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94423] = 9, + STATE(3266), 1, + sym__case, + [122803] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6604), 1, - anon_sym_ATendphp, - STATE(1378), 1, - sym__directive_parameter, - STATE(2220), 1, + ACTIONS(3335), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8472), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2851), 1, sym_comment, - STATE(2298), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94452] = 9, - ACTIONS(3), 1, + STATE(3266), 1, + sym__case, + [122825] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6606), 1, - anon_sym_ATendphp, - STATE(1559), 1, - sym__directive_parameter, - STATE(2221), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8474), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2852), 1, sym_comment, - STATE(2273), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94481] = 9, - ACTIONS(3), 1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122847] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6608), 1, - anon_sym_ATendphp, - STATE(1677), 1, - sym__directive_parameter, - STATE(2222), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8476), 1, + anon_sym_RPAREN, + STATE(2796), 1, + aux_sym__directive_parameter_repeat1, + STATE(2853), 1, sym_comment, - STATE(2302), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94510] = 9, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122869] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6268), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6610), 1, - anon_sym_ATendphp, - STATE(586), 1, - sym__directive_parameter, - STATE(2223), 1, + ACTIONS(4075), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8478), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2854), 1, sym_comment, - STATE(2266), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94539] = 9, - ACTIONS(3), 1, + STATE(3266), 1, + sym__case, + [122891] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6612), 1, - anon_sym_ATendphp, - STATE(1485), 1, - sym__directive_parameter, - STATE(2224), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8480), 1, + anon_sym_RPAREN, + STATE(2827), 1, + aux_sym__directive_parameter_repeat1, + STATE(2855), 1, sym_comment, - STATE(2258), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94568] = 9, - ACTIONS(3), 1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122913] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6614), 1, - anon_sym_ATendphp, - STATE(1441), 1, - sym__directive_parameter, - STATE(2225), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8482), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2856), 1, sym_comment, - STATE(2244), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94597] = 9, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [122935] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6616), 1, - anon_sym_ATendphp, - STATE(825), 1, - sym__directive_parameter, - STATE(2226), 1, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8484), 1, + anon_sym_ATdefault, + ACTIONS(8486), 1, + anon_sym_ATendswitch, + STATE(2854), 1, + aux_sym_switch_repeat1, + STATE(2857), 1, sym_comment, - STATE(2297), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94626] = 9, + STATE(3266), 1, + sym__case, + [122957] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6618), 1, - anon_sym_ATendphp, - STATE(959), 1, - sym__directive_parameter, - STATE(2227), 1, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8488), 1, + anon_sym_ATdefault, + ACTIONS(8490), 1, + anon_sym_ATendswitch, + STATE(2858), 1, sym_comment, - STATE(2269), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94655] = 9, - ACTIONS(3), 1, + STATE(2865), 1, + aux_sym_switch_repeat1, + STATE(3266), 1, + sym__case, + [122979] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6262), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6620), 1, - anon_sym_ATendphp, - STATE(485), 1, - sym__directive_parameter, - STATE(2228), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8492), 1, + anon_sym_RPAREN, + STATE(2856), 1, + aux_sym__directive_parameter_repeat1, + STATE(2859), 1, sym_comment, - STATE(2238), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94684] = 9, - ACTIONS(3), 1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [123001] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6622), 1, - anon_sym_ATendphp, - STATE(892), 1, - sym__directive_parameter, - STATE(2229), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8494), 1, + anon_sym_RPAREN, + STATE(2768), 1, + aux_sym__directive_parameter_repeat1, + STATE(2860), 1, sym_comment, - STATE(2245), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94713] = 9, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [123023] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, - anon_sym_LPAREN, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6624), 1, - anon_sym_ATendphp, - STATE(1500), 1, - sym__directive_parameter, - STATE(2230), 1, + ACTIONS(5545), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8496), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2861), 1, sym_comment, - STATE(2261), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [94742] = 7, - ACTIONS(3), 1, + STATE(3266), 1, + sym__case, + [123045] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6626), 1, - anon_sym_BANG_BANG_RBRACE, - ACTIONS(6630), 1, - aux_sym_text_token2, - STATE(2231), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8498), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2862), 1, sym_comment, - STATE(2260), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [94765] = 7, - ACTIONS(3), 1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [123067] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6632), 1, - anon_sym_RBRACE_RBRACE, - ACTIONS(6636), 1, - aux_sym_text_token2, - STATE(2232), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8500), 1, + anon_sym_RPAREN, + STATE(2784), 1, + aux_sym__directive_parameter_repeat1, + STATE(2863), 1, sym_comment, - STATE(2313), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [94788] = 7, - ACTIONS(3), 1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [123089] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6638), 1, - anon_sym_RBRACE_RBRACE, - STATE(2233), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8502), 1, + anon_sym_RPAREN, + STATE(2812), 1, + aux_sym__directive_parameter_repeat1, + STATE(2864), 1, sym_comment, - STATE(2239), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [94811] = 7, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [123111] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6640), 1, - anon_sym_RBRACE_RBRACE, - STATE(2234), 1, + ACTIONS(7093), 1, + anon_sym_ATendswitch, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8504), 1, + anon_sym_ATdefault, + STATE(2809), 1, + aux_sym_switch_repeat1, + STATE(2865), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [94834] = 7, + STATE(3266), 1, + sym__case, + [123133] = 7, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6642), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2235), 1, + ACTIONS(8161), 1, + anon_sym_ATcase, + ACTIONS(8506), 1, + anon_sym_ATdefault, + ACTIONS(8508), 1, + anon_sym_ATendswitch, + STATE(2861), 1, + aux_sym_switch_repeat1, + STATE(2866), 1, sym_comment, - STATE(2243), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [94857] = 7, - ACTIONS(3), 1, + STATE(3266), 1, + sym__case, + [123155] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6644), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2236), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8510), 1, + anon_sym_RPAREN, + STATE(2778), 1, + aux_sym__directive_parameter_repeat1, + STATE(2867), 1, sym_comment, - STATE(2306), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [94880] = 7, - ACTIONS(3), 1, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [123177] = 7, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6646), 1, - anon_sym_RBRACE_RBRACE, - STATE(2234), 1, - aux_sym__escaped_repeat1, - STATE(2237), 1, + ACTIONS(8171), 1, + aux_sym_parameter_token1, + ACTIONS(8512), 1, + anon_sym_RPAREN, + STATE(2864), 1, + aux_sym__directive_parameter_repeat1, + STATE(2868), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [94903] = 7, + STATE(3716), 1, + sym_parameter, + STATE(3720), 1, + sym__text_with_parenthesis, + [123199] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6648), 1, - anon_sym_ATendphp, - STATE(2238), 1, + STATE(2869), 1, sym_comment, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, + ACTIONS(8514), 2, + anon_sym_ATendphp, + aux_sym_text_token3, + ACTIONS(8516), 2, aux_sym_text_token1, aux_sym_text_token2, - [94926] = 7, + [123214] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6650), 1, - anon_sym_RBRACE_RBRACE, - STATE(2239), 1, + STATE(2870), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, + ACTIONS(7667), 2, + anon_sym_ATendphp, aux_sym_text_token3, - [94949] = 7, + ACTIONS(7669), 2, + aux_sym_text_token1, + aux_sym_text_token2, + [123229] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, + ACTIONS(7669), 1, aux_sym_text_token2, - ACTIONS(6652), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2240), 1, + STATE(2871), 1, sym_comment, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, + ACTIONS(7667), 3, + anon_sym_DASH_DASH_RBRACE_RBRACE, aux_sym_text_token1, aux_sym_text_token3, - [94972] = 6, + [123244] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6654), 1, - anon_sym_BANG_BANG_RBRACE, - ACTIONS(6659), 1, + ACTIONS(7669), 1, aux_sym_text_token2, - STATE(2512), 1, - sym_text, - ACTIONS(6656), 2, - aux_sym_text_token1, - aux_sym_text_token3, - STATE(2241), 2, + STATE(2872), 1, sym_comment, - aux_sym__escaped_repeat1, - [94993] = 7, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6662), 1, + ACTIONS(7667), 3, anon_sym_RBRACE_RBRACE, - STATE(2242), 1, - sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, aux_sym_text_token1, aux_sym_text_token3, - [95016] = 7, + [123259] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, + ACTIONS(7669), 1, aux_sym_text_token2, - ACTIONS(6664), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2243), 1, + STATE(2873), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, + ACTIONS(7667), 3, + anon_sym_BANG_BANG_RBRACE, aux_sym_text_token1, aux_sym_text_token3, - [95039] = 7, + [123274] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6666), 1, - anon_sym_ATendphp, - STATE(2244), 1, - sym_comment, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, + ACTIONS(8516), 1, aux_sym_text_token2, - [95062] = 7, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6668), 1, - anon_sym_ATendphp, - STATE(2245), 1, + STATE(2874), 1, sym_comment, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, + ACTIONS(8514), 3, + anon_sym_BANG_BANG_RBRACE, aux_sym_text_token1, - aux_sym_text_token2, - [95085] = 7, + aux_sym_text_token3, + [123289] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, + ACTIONS(8520), 1, aux_sym_text_token2, - ACTIONS(6670), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2246), 1, + STATE(2875), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, + ACTIONS(8518), 3, + anon_sym_DASH_DASH_RBRACE_RBRACE, aux_sym_text_token1, aux_sym_text_token3, - [95108] = 7, + [123304] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, + ACTIONS(8516), 1, aux_sym_text_token2, - ACTIONS(6672), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2240), 1, - aux_sym__escaped_repeat1, - STATE(2247), 1, + STATE(2876), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, + ACTIONS(8514), 3, + anon_sym_RBRACE_RBRACE, aux_sym_text_token1, aux_sym_text_token3, - [95131] = 7, + [123319] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6674), 1, - anon_sym_RBRACE_RBRACE, - STATE(2242), 1, - aux_sym__escaped_repeat1, - STATE(2248), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(2877), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95154] = 7, + STATE(3989), 1, + sym__directive_body_with_parameter, + [123335] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6676), 1, - anon_sym_RBRACE_RBRACE, - STATE(2249), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(2878), 1, sym_comment, - STATE(2257), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95177] = 7, + STATE(4409), 1, + sym__directive_body_with_parameter, + [123351] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6678), 1, - anon_sym_RBRACE_RBRACE, - STATE(2250), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(2879), 1, sym_comment, - STATE(2255), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95200] = 7, + STATE(4155), 1, + sym__directive_body_with_parameter, + [123367] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6680), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2251), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(2880), 1, sym_comment, - STATE(2256), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95223] = 7, + STATE(4156), 1, + sym__directive_body_with_parameter, + [123383] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6682), 1, - anon_sym_RBRACE_RBRACE, - STATE(2252), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(2881), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95246] = 7, + STATE(4157), 1, + sym__directive_body_with_parameter, + [123399] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6684), 1, - anon_sym_RBRACE_RBRACE, - STATE(2253), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(2882), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95269] = 6, + STATE(4158), 1, + sym__directive_body_with_parameter, + [123415] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - 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, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(2883), 1, sym_comment, - aux_sym__escaped_repeat1, - [95290] = 7, + STATE(4159), 1, + sym__directive_body_with_parameter, + [123431] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6692), 1, - anon_sym_RBRACE_RBRACE, - STATE(2255), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(2884), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95313] = 7, + STATE(4160), 1, + sym__directive_body_with_parameter, + [123447] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6694), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2256), 1, + STATE(2885), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95336] = 7, + ACTIONS(7671), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [123459] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6696), 1, - anon_sym_RBRACE_RBRACE, - STATE(2257), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(2886), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95359] = 7, + STATE(4161), 1, + sym__if_statement_directive_body, + [123475] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6698), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2258), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(2887), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [95382] = 7, + STATE(4162), 1, + sym__if_statement_directive_body, + [123491] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6700), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2246), 1, - aux_sym__escaped_repeat1, - STATE(2259), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(2888), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95405] = 7, + STATE(4163), 1, + sym__if_statement_directive_body, + [123507] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6702), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2260), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(2889), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95428] = 7, + STATE(4153), 1, + sym__directive_body_with_parameter, + [123523] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6704), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2261), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(2890), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [95451] = 7, + STATE(4164), 1, + sym__if_statement_directive_body, + [123539] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6706), 1, - anon_sym_RBRACE_RBRACE, - STATE(2252), 1, - aux_sym__escaped_repeat1, - STATE(2262), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(2891), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95474] = 7, + STATE(4165), 1, + sym__if_statement_directive_body, + [123555] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6708), 1, - anon_sym_RBRACE_RBRACE, - STATE(2263), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2892), 1, + sym_comment, + STATE(4166), 1, + sym__if_statement_directive_body, + [123571] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2893), 1, sym_comment, - STATE(2265), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95497] = 7, + STATE(4167), 1, + sym__if_statement_directive_body, + [123587] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6710), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2264), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(2894), 1, sym_comment, - STATE(2267), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95520] = 7, + STATE(4168), 1, + sym__if_statement_directive_body, + [123603] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6712), 1, - anon_sym_RBRACE_RBRACE, - STATE(2265), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(2895), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95543] = 7, + STATE(4091), 1, + sym__directive_body_with_parameter, + [123619] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6714), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2266), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(2896), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [95566] = 7, + STATE(4152), 1, + sym__directive_body_with_parameter, + [123635] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6716), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2267), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(2897), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95589] = 7, + STATE(4151), 1, + sym__directive_body_with_parameter, + [123651] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6718), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2268), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(2898), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95612] = 7, + STATE(4150), 1, + sym__directive_body_with_parameter, + [123667] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6720), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2269), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(2899), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [95635] = 7, + STATE(4149), 1, + sym__directive_body_with_parameter, + [123683] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6722), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2270), 1, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(2900), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95658] = 7, + STATE(4148), 1, + sym__directive_body_with_parameter, + [123699] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6724), 1, - anon_sym_RBRACE_RBRACE, - STATE(2271), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(2901), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95681] = 7, + STATE(4147), 1, + sym__directive_body_with_parameter, + [123715] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6726), 1, - anon_sym_RBRACE_RBRACE, - STATE(2272), 1, + STATE(2902), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95704] = 7, + ACTIONS(7675), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [123727] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6728), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2273), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2903), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [95727] = 7, + STATE(4146), 1, + sym__if_statement_directive_body, + [123743] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6730), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2270), 1, - aux_sym__escaped_repeat1, - STATE(2274), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(2904), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95750] = 7, + STATE(4145), 1, + sym__if_statement_directive_body, + [123759] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6732), 1, - anon_sym_RBRACE_RBRACE, - STATE(2271), 1, - aux_sym__escaped_repeat1, - STATE(2275), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(2905), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95773] = 7, + STATE(4144), 1, + sym__if_statement_directive_body, + [123775] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6734), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2268), 1, - aux_sym__escaped_repeat1, - STATE(2276), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(2906), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95796] = 7, + STATE(3821), 1, + sym__directive_body_with_parameter, + [123791] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6736), 1, - anon_sym_RBRACE_RBRACE, - STATE(2272), 1, - aux_sym__escaped_repeat1, - STATE(2277), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(2907), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95819] = 7, + STATE(3822), 1, + sym__directive_body_with_parameter, + [123807] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6738), 1, - anon_sym_RBRACE_RBRACE, - STATE(2278), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(2908), 1, sym_comment, - STATE(2280), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95842] = 7, + STATE(3823), 1, + sym__directive_body_with_parameter, + [123823] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6740), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2279), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(2909), 1, sym_comment, - STATE(2281), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95865] = 7, + STATE(3824), 1, + sym__directive_body_with_parameter, + [123839] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6742), 1, - anon_sym_RBRACE_RBRACE, - STATE(2280), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(2910), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95888] = 7, + STATE(3825), 1, + sym__if_statement_directive_body, + [123855] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6744), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2281), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(2911), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95911] = 7, + STATE(4140), 1, + sym__if_statement_directive_body, + [123871] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6746), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2282), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2912), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [95934] = 7, + STATE(4139), 1, + sym__if_statement_directive_body, + [123887] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6748), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2283), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2913), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [95957] = 7, + STATE(4138), 1, + sym__if_statement_directive_body, + [123903] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6750), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2284), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(2914), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [95980] = 7, + STATE(4137), 1, + sym__if_statement_directive_body, + [123919] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6752), 1, - anon_sym_RBRACE_RBRACE, - STATE(2285), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(2915), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96003] = 7, + STATE(4172), 1, + sym__if_statement_directive_body, + [123935] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6754), 1, - anon_sym_RBRACE_RBRACE, - STATE(2286), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(2916), 1, sym_comment, - STATE(2291), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96026] = 7, + STATE(4136), 1, + sym__if_statement_directive_body, + [123951] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6756), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2287), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(2917), 1, sym_comment, - STATE(2293), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96049] = 7, + STATE(4135), 1, + sym__if_statement_directive_body, + [123967] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6758), 1, - anon_sym_RBRACE_RBRACE, - STATE(2288), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(2918), 1, sym_comment, - STATE(2295), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96072] = 7, + STATE(4173), 1, + sym__if_statement_directive_body, + [123983] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6760), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2289), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2919), 1, sym_comment, - STATE(2296), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96095] = 7, + STATE(4174), 1, + sym__if_statement_directive_body, + [123999] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6762), 1, - anon_sym_RBRACE_RBRACE, - STATE(2290), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(2920), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96118] = 7, + STATE(4175), 1, + sym__directive_body_with_parameter, + [124015] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6764), 1, - anon_sym_RBRACE_RBRACE, - STATE(2291), 1, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(2921), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96141] = 7, + STATE(4097), 1, + sym__directive_body_with_parameter, + [124031] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6766), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2292), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(2922), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96164] = 7, + STATE(4177), 1, + sym__directive_body_with_parameter, + [124047] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6768), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2293), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(2923), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96187] = 7, + STATE(4176), 1, + sym__directive_body_with_parameter, + [124063] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6770), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2294), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(2924), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96210] = 7, + STATE(4179), 1, + sym__directive_body_with_parameter, + [124079] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6772), 1, - anon_sym_RBRACE_RBRACE, - STATE(2295), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(2925), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96233] = 7, + STATE(4180), 1, + sym__directive_body_with_parameter, + [124095] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6774), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2296), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(2926), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96256] = 7, + STATE(4181), 1, + sym__directive_body_with_parameter, + [124111] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6776), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2297), 1, + ACTIONS(7683), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__directive_parameter, + STATE(2927), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96279] = 7, + STATE(4182), 1, + sym__directive_body_with_parameter, + [124127] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6778), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2298), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(2928), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96302] = 7, + STATE(4183), 1, + sym__directive_body_with_parameter, + [124143] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6780), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2283), 1, - aux_sym__escaped_repeat1, - STATE(2299), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(2929), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96325] = 7, + STATE(4134), 1, + sym__if_statement_directive_body, + [124159] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6782), 1, - anon_sym_RBRACE_RBRACE, - STATE(2285), 1, - aux_sym__escaped_repeat1, - STATE(2300), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(2930), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96348] = 7, + STATE(4184), 1, + sym__directive_body_with_parameter, + [124175] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6784), 1, - anon_sym_RBRACE_RBRACE, - STATE(2301), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(2931), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96371] = 7, + STATE(4185), 1, + sym__directive_body_with_parameter, + [124191] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6786), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2302), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(2932), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96394] = 7, + STATE(4186), 1, + sym__directive_body_with_parameter, + [124207] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6788), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2303), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(2933), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96417] = 7, + STATE(4187), 1, + sym__directive_body_with_parameter, + [124223] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6790), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2294), 1, - aux_sym__escaped_repeat1, - STATE(2304), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(2934), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96440] = 7, + STATE(4188), 1, + sym__directive_body_with_parameter, + [124239] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6792), 1, - anon_sym_RBRACE_RBRACE, - STATE(2301), 1, - aux_sym__escaped_repeat1, - STATE(2305), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(2935), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96463] = 7, + STATE(4654), 1, + sym__directive_body_with_parameter, + [124255] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6794), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2306), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(2936), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96486] = 7, + STATE(4189), 1, + sym__if_statement_directive_body, + [124271] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6796), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2307), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(2937), 1, sym_comment, - STATE(2314), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96509] = 7, + STATE(4190), 1, + sym__if_statement_directive_body, + [124287] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6798), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - ACTIONS(6802), 1, - aux_sym_text_token2, - STATE(2308), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(2938), 1, sym_comment, - STATE(2357), 1, - aux_sym_comment_repeat1, - STATE(2509), 1, - sym_text, - ACTIONS(6800), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96532] = 7, + STATE(4133), 1, + sym__if_statement_directive_body, + [124303] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6804), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2309), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(2939), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96555] = 7, + STATE(4191), 1, + sym__if_statement_directive_body, + [124319] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6806), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2310), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(2940), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96578] = 7, + STATE(4192), 1, + sym__if_statement_directive_body, + [124335] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6808), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2311), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(2941), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96601] = 7, + STATE(4193), 1, + sym__if_statement_directive_body, + [124351] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6810), 1, - anon_sym_RBRACE_RBRACE, - STATE(2312), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2942), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96624] = 7, + STATE(4194), 1, + sym__if_statement_directive_body, + [124367] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6812), 1, - anon_sym_RBRACE_RBRACE, - STATE(2313), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2943), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96647] = 7, + STATE(4195), 1, + sym__if_statement_directive_body, + [124383] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6814), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2314), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(2944), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96670] = 7, + STATE(4196), 1, + sym__if_statement_directive_body, + [124399] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6816), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2315), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(2945), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96693] = 7, + STATE(4655), 1, + sym__directive_body_with_parameter, + [124415] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6818), 1, - anon_sym_RBRACE_RBRACE, - STATE(2316), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(2946), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96716] = 7, + STATE(4132), 1, + sym__directive_body_with_parameter, + [124431] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6820), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2311), 1, - aux_sym__escaped_repeat1, - STATE(2317), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(2947), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96739] = 7, + STATE(4131), 1, + sym__directive_body_with_parameter, + [124447] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6822), 1, - anon_sym_RBRACE_RBRACE, - STATE(2312), 1, - aux_sym__escaped_repeat1, - STATE(2318), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(2948), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96762] = 7, + STATE(4130), 1, + sym__directive_body_with_parameter, + [124463] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6824), 1, - anon_sym_RBRACE_RBRACE, - STATE(2319), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(2949), 1, sym_comment, - STATE(2322), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96785] = 7, + STATE(4129), 1, + sym__directive_body_with_parameter, + [124479] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6826), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2320), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(2950), 1, sym_comment, - STATE(2323), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96808] = 7, + STATE(4128), 1, + sym__directive_body_with_parameter, + [124495] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6828), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2309), 1, - aux_sym__escaped_repeat1, - STATE(2321), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(2951), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96831] = 7, + STATE(4127), 1, + sym__directive_body_with_parameter, + [124511] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6830), 1, - anon_sym_RBRACE_RBRACE, - STATE(2322), 1, + ACTIONS(7683), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__directive_parameter, + STATE(2952), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96854] = 7, + STATE(4126), 1, + sym__directive_body_with_parameter, + [124527] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6832), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2323), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(2953), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96877] = 7, + STATE(4125), 1, + sym__directive_body_with_parameter, + [124543] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6834), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2324), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(2954), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96900] = 7, + STATE(4124), 1, + sym__directive_body_with_parameter, + [124559] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6836), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2325), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(2955), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96923] = 7, + STATE(4611), 1, + sym__directive_body_with_parameter, + [124575] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6838), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2326), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(2956), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [96946] = 7, + STATE(4653), 1, + sym__directive_body_with_parameter, + [124591] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6840), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2327), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(2957), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96969] = 7, + STATE(4123), 1, + sym__directive_body_with_parameter, + [124607] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6842), 1, - anon_sym_RBRACE_RBRACE, - STATE(2328), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(2958), 1, sym_comment, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [96992] = 7, + STATE(4122), 1, + sym__directive_body_with_parameter, + [124623] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6844), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2329), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(2959), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97015] = 6, + STATE(4121), 1, + sym__directive_body_with_parameter, + [124639] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - 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, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(2960), 1, sym_comment, - aux_sym__escaped_repeat1, - [97036] = 7, + STATE(4120), 1, + sym__directive_body_with_parameter, + [124655] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6852), 1, - anon_sym_RBRACE_RBRACE, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2331), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(2961), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97059] = 6, + STATE(4119), 1, + sym__directive_body_with_parameter, + [124671] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - 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, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2962), 1, sym_comment, - aux_sym_comment_repeat1, - [97080] = 7, + STATE(4118), 1, + sym__if_statement_directive_body, + [124687] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6862), 1, - anon_sym_RBRACE_RBRACE, - STATE(2316), 1, - aux_sym__escaped_repeat1, - STATE(2333), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(2963), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97103] = 7, + STATE(4117), 1, + sym__if_statement_directive_body, + [124703] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6864), 1, - anon_sym_RBRACE_RBRACE, - STATE(2334), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(2964), 1, sym_comment, - STATE(2341), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97126] = 7, + STATE(4652), 1, + sym__directive_body_with_parameter, + [124719] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(2965), 1, + sym_comment, + STATE(4651), 1, + sym__directive_body_with_parameter, + [124735] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6866), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2335), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(2966), 1, sym_comment, - STATE(2342), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97149] = 7, + STATE(4116), 1, + sym__if_statement_directive_body, + [124751] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6868), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2336), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(2967), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [97172] = 7, + STATE(4200), 1, + sym__if_statement_directive_body, + [124767] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6870), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2329), 1, - aux_sym__escaped_repeat1, - STATE(2337), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(2968), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97195] = 7, + STATE(4201), 1, + sym__if_statement_directive_body, + [124783] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6872), 1, - anon_sym_RBRACE_RBRACE, - STATE(2253), 1, - aux_sym__escaped_repeat1, - STATE(2338), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2969), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97218] = 7, + STATE(4202), 1, + sym__if_statement_directive_body, + [124799] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6874), 1, - anon_sym_RBRACE_RBRACE, - STATE(2331), 1, - aux_sym__escaped_repeat1, - STATE(2339), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(2970), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97241] = 7, + STATE(4203), 1, + sym__directive_body_with_parameter, + [124815] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6876), 1, - anon_sym_RBRACE_RBRACE, - STATE(2340), 1, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(2971), 1, sym_comment, - STATE(2349), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97264] = 7, + STATE(4204), 1, + sym__directive_body_with_parameter, + [124831] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6878), 1, - anon_sym_RBRACE_RBRACE, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2341), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(2972), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97287] = 7, + STATE(4205), 1, + sym__directive_body_with_parameter, + [124847] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6880), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2342), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(2973), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97310] = 7, + STATE(4206), 1, + sym__directive_body_with_parameter, + [124863] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6882), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2327), 1, - aux_sym__escaped_repeat1, - STATE(2343), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(2974), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97333] = 7, + STATE(4207), 1, + sym__directive_body_with_parameter, + [124879] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6884), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2344), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(2975), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [97356] = 7, + STATE(4208), 1, + sym__directive_body_with_parameter, + [124895] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6886), 1, - anon_sym_RBRACE_RBRACE, - STATE(2328), 1, - aux_sym__escaped_repeat1, - STATE(2345), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(2976), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97379] = 7, + STATE(4209), 1, + sym__directive_body_with_parameter, + [124911] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6888), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2346), 1, + ACTIONS(7683), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__directive_parameter, + STATE(2977), 1, sym_comment, - STATE(2350), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97402] = 7, + STATE(4210), 1, + sym__directive_body_with_parameter, + [124927] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6890), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2347), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(2978), 1, sym_comment, - STATE(2372), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97425] = 7, + STATE(4112), 1, + sym__if_statement_directive_body, + [124943] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6892), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2348), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(2979), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [97448] = 7, + STATE(4211), 1, + sym__directive_body_with_parameter, + [124959] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6894), 1, - anon_sym_RBRACE_RBRACE, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2349), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(2980), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97471] = 7, + STATE(4212), 1, + sym__directive_body_with_parameter, + [124975] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6896), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2350), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(2981), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97494] = 7, + STATE(4213), 1, + sym__directive_body_with_parameter, + [124991] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6898), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2351), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(2982), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97517] = 7, + STATE(4214), 1, + sym__directive_body_with_parameter, + [125007] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6900), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2352), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(2983), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [97540] = 7, + STATE(4215), 1, + sym__directive_body_with_parameter, + [125023] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6902), 1, - anon_sym_RBRACE_RBRACE, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2353), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(2984), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97563] = 7, + STATE(4216), 1, + sym__directive_body_with_parameter, + [125039] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6904), 1, - anon_sym_RBRACE_RBRACE, - STATE(2290), 1, - aux_sym__escaped_repeat1, - STATE(2354), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(2985), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97586] = 7, + STATE(4650), 1, + sym__directive_body_with_parameter, + [125055] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6906), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2355), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(2986), 1, sym_comment, - STATE(2375), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97609] = 7, + STATE(4217), 1, + sym__if_statement_directive_body, + [125071] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6908), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2356), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2987), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97632] = 7, + STATE(4111), 1, + sym__if_statement_directive_body, + [125087] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6802), 1, - aux_sym_text_token2, - ACTIONS(6910), 1, - anon_sym_DASH_DASH_RBRACE_RBRACE, - STATE(2332), 1, - aux_sym_comment_repeat1, - STATE(2357), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(2988), 1, sym_comment, - STATE(2509), 1, - sym_text, - ACTIONS(6800), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97655] = 7, + STATE(4218), 1, + sym__if_statement_directive_body, + [125103] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6912), 1, - anon_sym_RBRACE_RBRACE, - STATE(2358), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(2989), 1, sym_comment, - STATE(2365), 1, - aux_sym__escaped_repeat1, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97678] = 7, + STATE(4219), 1, + sym__if_statement_directive_body, + [125119] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6914), 1, - anon_sym_RBRACE_RBRACE, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2359), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(2990), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97701] = 7, + STATE(4220), 1, + sym__if_statement_directive_body, + [125135] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6916), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2360), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(2991), 1, sym_comment, - STATE(2366), 1, - aux_sym__escaped_repeat1, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97724] = 7, + STATE(4221), 1, + sym__if_statement_directive_body, + [125151] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6918), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2361), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2992), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97747] = 7, + STATE(4222), 1, + sym__if_statement_directive_body, + [125167] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6920), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2362), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2993), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [97770] = 7, + STATE(4223), 1, + sym__if_statement_directive_body, + [125183] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6922), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2363), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(2994), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [97793] = 7, + STATE(4224), 1, + sym__if_statement_directive_body, + [125199] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6924), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2364), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(2995), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [97816] = 7, + STATE(4110), 1, + sym__if_statement_directive_body, + [125215] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6926), 1, - anon_sym_RBRACE_RBRACE, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2365), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(2996), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97839] = 7, + STATE(4109), 1, + sym__if_statement_directive_body, + [125231] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6928), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2366), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(2997), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97862] = 7, + STATE(4108), 1, + sym__if_statement_directive_body, + [125247] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6930), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2367), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(2998), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [97885] = 7, + STATE(4107), 1, + sym__if_statement_directive_body, + [125263] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6568), 1, - aux_sym_text_token3, - ACTIONS(6932), 1, - anon_sym_ATendphp, - STATE(2254), 1, - aux_sym__escaped_repeat1, - STATE(2368), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(2999), 1, sym_comment, - STATE(2515), 1, - sym_text, - ACTIONS(6566), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [97908] = 7, + STATE(4106), 1, + sym__if_statement_directive_body, + [125279] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6934), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2369), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(3000), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97931] = 7, + STATE(4105), 1, + sym__if_statement_directive_body, + [125295] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6936), 1, - anon_sym_RBRACE_RBRACE, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2370), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(3001), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97954] = 7, + STATE(3826), 1, + sym__if_statement_directive_body, + [125311] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6938), 1, - anon_sym_RBRACE_RBRACE, - STATE(2330), 1, - aux_sym__escaped_repeat1, - STATE(2371), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(3002), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [97977] = 7, + STATE(4104), 1, + sym__directive_body_with_parameter, + [125327] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6940), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2372), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(3003), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98000] = 7, + STATE(4103), 1, + sym__directive_body_with_parameter, + [125343] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6942), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2369), 1, - aux_sym__escaped_repeat1, - STATE(2373), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3004), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98023] = 7, + STATE(4649), 1, + sym__if_statement_directive_body, + [125359] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6944), 1, - anon_sym_RBRACE_RBRACE, - STATE(2370), 1, - aux_sym__escaped_repeat1, - STATE(2374), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(3005), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98046] = 7, + STATE(4648), 1, + sym__if_statement_directive_body, + [125375] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6946), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2241), 1, - aux_sym__escaped_repeat1, - STATE(2375), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(3006), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98069] = 7, + STATE(4102), 1, + sym__directive_body_with_parameter, + [125391] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6948), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2356), 1, - aux_sym__escaped_repeat1, - STATE(2376), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(3007), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98092] = 7, + STATE(4101), 1, + sym__directive_body_with_parameter, + [125407] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6950), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2351), 1, - aux_sym__escaped_repeat1, - STATE(2377), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(3008), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98115] = 7, + STATE(4100), 1, + sym__directive_body_with_parameter, + [125423] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6952), 1, - anon_sym_RBRACE_RBRACE, - STATE(2353), 1, - aux_sym__escaped_repeat1, - STATE(2378), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(3009), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98138] = 7, + STATE(4099), 1, + sym__directive_body_with_parameter, + [125439] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6954), 1, - anon_sym_RBRACE_RBRACE, - STATE(2371), 1, - aux_sym__escaped_repeat1, - STATE(2379), 1, + ACTIONS(7683), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__directive_parameter, + STATE(3010), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98161] = 7, + STATE(4098), 1, + sym__directive_body_with_parameter, + [125455] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6636), 1, - aux_sym_text_token2, - ACTIONS(6956), 1, - anon_sym_RBRACE_RBRACE, - STATE(2359), 1, - aux_sym__escaped_repeat1, - STATE(2380), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(3011), 1, sym_comment, - STATE(2510), 1, - sym_text, - ACTIONS(6634), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98184] = 7, + STATE(4048), 1, + sym__directive_body_with_parameter, + [125471] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6630), 1, - aux_sym_text_token2, - ACTIONS(6958), 1, - anon_sym_BANG_BANG_RBRACE, - STATE(2361), 1, - aux_sym__escaped_repeat1, - STATE(2381), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(3012), 1, sym_comment, - STATE(2512), 1, - sym_text, - ACTIONS(6628), 2, - aux_sym_text_token1, - aux_sym_text_token3, - [98207] = 7, - ACTIONS(6960), 1, + STATE(4096), 1, + sym__directive_body_with_parameter, + [125487] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6962), 1, - anon_sym_RPAREN, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - STATE(2382), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(3013), 1, sym_comment, - STATE(2439), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98229] = 7, - ACTIONS(6960), 1, + STATE(4095), 1, + sym__directive_body_with_parameter, + [125503] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(6966), 1, - anon_sym_RPAREN, - STATE(2383), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(3014), 1, sym_comment, - STATE(2446), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98251] = 7, - ACTIONS(6960), 1, + STATE(4094), 1, + sym__directive_body_with_parameter, + [125519] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(6968), 1, - anon_sym_RPAREN, - STATE(2384), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(3015), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98273] = 7, - ACTIONS(6960), 1, + STATE(4093), 1, + sym__directive_body_with_parameter, + [125535] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(6970), 1, - anon_sym_RPAREN, - STATE(2384), 1, - aux_sym__directive_parameter_repeat1, - STATE(2385), 1, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(3016), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98295] = 7, - ACTIONS(6960), 1, + STATE(4092), 1, + sym__directive_body_with_parameter, + [125551] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(6972), 1, - anon_sym_RPAREN, - STATE(2386), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(3017), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98317] = 7, - ACTIONS(6960), 1, + STATE(4228), 1, + sym__if_statement_directive_body, + [125567] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(6974), 1, - anon_sym_RPAREN, - STATE(2386), 1, - aux_sym__directive_parameter_repeat1, - STATE(2387), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(3018), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98339] = 7, + STATE(4229), 1, + sym__if_statement_directive_body, + [125583] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(5995), 1, - anon_sym_ATendswitch, - ACTIONS(6976), 1, - anon_sym_ATdefault, - ACTIONS(6978), 1, - anon_sym_ATcase, - STATE(2388), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3019), 1, sym_comment, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98361] = 7, - ACTIONS(6960), 1, + STATE(4230), 1, + sym__if_statement_directive_body, + [125599] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(6980), 1, - anon_sym_RPAREN, - STATE(2389), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(3020), 1, sym_comment, - STATE(2405), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98383] = 7, + STATE(4231), 1, + sym__directive_body_with_parameter, + [125615] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(6982), 1, - anon_sym_ATdefault, - ACTIONS(6984), 1, - anon_sym_ATendswitch, - STATE(2390), 1, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(3021), 1, sym_comment, - STATE(2400), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98405] = 7, - ACTIONS(6960), 1, + STATE(4232), 1, + sym__directive_body_with_parameter, + [125631] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(6986), 1, - anon_sym_RPAREN, - STATE(2391), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(3022), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98427] = 7, + STATE(4233), 1, + sym__directive_body_with_parameter, + [125647] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(6988), 1, - anon_sym_ATdefault, - ACTIONS(6990), 1, - anon_sym_ATendswitch, - STATE(2388), 1, - aux_sym_switch_repeat1, - STATE(2392), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(3023), 1, sym_comment, - STATE(3011), 1, - sym__case, - [98449] = 7, - ACTIONS(6960), 1, + STATE(4234), 1, + sym__directive_body_with_parameter, + [125663] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(6992), 1, - anon_sym_RPAREN, - STATE(2391), 1, - aux_sym__directive_parameter_repeat1, - STATE(2393), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(3024), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98471] = 7, + STATE(4235), 1, + sym__directive_body_with_parameter, + [125679] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6103), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(6994), 1, - anon_sym_ATdefault, - STATE(2394), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(3025), 1, sym_comment, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98493] = 7, - ACTIONS(6960), 1, + STATE(4236), 1, + sym__directive_body_with_parameter, + [125695] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(6996), 1, - anon_sym_RPAREN, - STATE(2395), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(3026), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98515] = 7, + STATE(4237), 1, + sym__directive_body_with_parameter, + [125711] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(6998), 1, - anon_sym_ATdefault, - ACTIONS(7000), 1, - anon_sym_ATendswitch, - STATE(2396), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(3027), 1, sym_comment, - STATE(2419), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98537] = 7, - ACTIONS(6960), 1, + STATE(4647), 1, + sym__if_statement_directive_body, + [125727] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7002), 1, - anon_sym_RPAREN, - STATE(2397), 1, + ACTIONS(7683), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__directive_parameter, + STATE(3028), 1, sym_comment, - STATE(2449), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98559] = 7, + STATE(4238), 1, + sym__directive_body_with_parameter, + [125743] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7004), 1, - anon_sym_ATdefault, - ACTIONS(7006), 1, - anon_sym_ATendswitch, - STATE(2394), 1, - aux_sym_switch_repeat1, - STATE(2398), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(3029), 1, sym_comment, - STATE(3011), 1, - sym__case, - [98581] = 7, - ACTIONS(6960), 1, + STATE(4239), 1, + sym__directive_body_with_parameter, + [125759] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7008), 1, - anon_sym_RPAREN, - STATE(2399), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(3030), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98603] = 7, + STATE(4240), 1, + sym__directive_body_with_parameter, + [125775] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(4455), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7010), 1, - anon_sym_ATdefault, - STATE(2400), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(3031), 1, sym_comment, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98625] = 6, - ACTIONS(6960), 1, + STATE(4241), 1, + sym__directive_body_with_parameter, + [125791] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7012), 1, - aux_sym_parameter_token1, - ACTIONS(7015), 1, - anon_sym_RPAREN2, - STATE(3175), 1, - sym__text_with_parenthesis, - STATE(3207), 1, - sym_parameter, - STATE(2401), 2, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(3032), 1, sym_comment, - aux_sym__directive_parameter_repeat1, - [98645] = 7, + STATE(4242), 1, + sym__directive_body_with_parameter, + [125807] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7017), 1, - anon_sym_ATdefault, - ACTIONS(7019), 1, - anon_sym_ATendswitch, - STATE(2402), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(3033), 1, sym_comment, - STATE(2406), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98667] = 7, - ACTIONS(6960), 1, + STATE(4243), 1, + sym__directive_body_with_parameter, + [125823] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7021), 1, - anon_sym_RPAREN, - STATE(2403), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(3034), 1, sym_comment, - STATE(2432), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98689] = 7, - ACTIONS(6960), 1, + STATE(4178), 1, + sym__directive_body_with_parameter, + [125839] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7023), 1, - anon_sym_RPAREN, - STATE(2395), 1, - aux_sym__directive_parameter_repeat1, - STATE(2404), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(3035), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98711] = 7, - ACTIONS(6960), 1, + STATE(4685), 1, + sym__directive_body_with_parameter, + [125855] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7025), 1, - anon_sym_RPAREN, - STATE(2405), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3036), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98733] = 7, + STATE(4090), 1, + sym__if_statement_directive_body, + [125871] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(3037), 1, + sym_comment, + STATE(4245), 1, + sym__if_statement_directive_body, + [125887] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6244), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7027), 1, - anon_sym_ATdefault, - STATE(2406), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(3038), 1, sym_comment, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98755] = 7, - ACTIONS(6960), 1, + STATE(4246), 1, + sym__if_statement_directive_body, + [125903] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7029), 1, - aux_sym_parameter_token1, - ACTIONS(7031), 1, - anon_sym_RPAREN2, - STATE(2407), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(3039), 1, sym_comment, - STATE(2409), 1, - aux_sym__directive_parameter_repeat1, - STATE(3175), 1, - sym__text_with_parenthesis, - STATE(3207), 1, - sym_parameter, - [98777] = 7, + STATE(4247), 1, + sym__if_statement_directive_body, + [125919] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6246), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7033), 1, - anon_sym_ATdefault, - STATE(2408), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(3040), 1, sym_comment, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98799] = 7, - ACTIONS(6960), 1, + STATE(4248), 1, + sym__if_statement_directive_body, + [125935] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7029), 1, - aux_sym_parameter_token1, - ACTIONS(7035), 1, - anon_sym_RPAREN2, - STATE(2401), 1, - aux_sym__directive_parameter_repeat1, - STATE(2409), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(3041), 1, sym_comment, - STATE(3175), 1, - sym__text_with_parenthesis, - STATE(3207), 1, - sym_parameter, - [98821] = 7, - ACTIONS(6960), 1, + STATE(4249), 1, + sym__if_statement_directive_body, + [125951] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7037), 1, - anon_sym_RPAREN, - STATE(2410), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3042), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98843] = 7, + STATE(4250), 1, + sym__if_statement_directive_body, + [125967] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7039), 1, - anon_sym_ATdefault, - ACTIONS(7041), 1, - anon_sym_ATendswitch, - STATE(2408), 1, - aux_sym_switch_repeat1, - STATE(2411), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3043), 1, sym_comment, - STATE(3011), 1, - sym__case, - [98865] = 7, + STATE(4251), 1, + sym__if_statement_directive_body, + [125983] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7043), 1, - anon_sym_ATdefault, - ACTIONS(7045), 1, - anon_sym_ATendswitch, - STATE(2412), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(3044), 1, sym_comment, - STATE(2479), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98887] = 7, + STATE(4643), 1, + sym__if_statement_directive_body, + [125999] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3263), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7047), 1, - anon_sym_ATdefault, - STATE(2413), 1, + ACTIONS(7683), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__directive_parameter, + STATE(3045), 1, sym_comment, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98909] = 7, - ACTIONS(6960), 1, + STATE(4042), 1, + sym__directive_body_with_parameter, + [126015] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7049), 1, - anon_sym_RPAREN, - STATE(2414), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(3046), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98931] = 7, - ACTIONS(6960), 1, + STATE(4089), 1, + sym__if_statement_directive_body, + [126031] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7051), 1, - anon_sym_RPAREN, - STATE(2415), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(3047), 1, sym_comment, - STATE(2427), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98953] = 7, - ACTIONS(6960), 1, + STATE(4088), 1, + sym__if_statement_directive_body, + [126047] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7053), 1, - anon_sym_RPAREN, - STATE(2410), 1, - aux_sym__directive_parameter_repeat1, - STATE(2416), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(3048), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [98975] = 7, + STATE(4084), 1, + sym__if_statement_directive_body, + [126063] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(5181), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7055), 1, - anon_sym_ATdefault, - STATE(2417), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3049), 1, sym_comment, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [98997] = 7, - ACTIONS(6960), 1, + STATE(4083), 1, + sym__if_statement_directive_body, + [126079] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7057), 1, - anon_sym_RPAREN, - STATE(2418), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3050), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99019] = 7, + STATE(4082), 1, + sym__if_statement_directive_body, + [126095] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2369), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7059), 1, - anon_sym_ATdefault, - STATE(2419), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(3051), 1, sym_comment, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [99041] = 7, + STATE(4081), 1, + sym__if_statement_directive_body, + [126111] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7061), 1, - anon_sym_ATdefault, - ACTIONS(7063), 1, - anon_sym_ATendswitch, - STATE(2417), 1, - aux_sym_switch_repeat1, - STATE(2420), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(3052), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99063] = 7, - ACTIONS(6960), 1, + STATE(4080), 1, + sym__if_statement_directive_body, + [126127] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7065), 1, - anon_sym_RPAREN, - STATE(2418), 1, - aux_sym__directive_parameter_repeat1, - STATE(2421), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3053), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99085] = 7, - ACTIONS(6960), 1, + STATE(4642), 1, + sym__if_statement_directive_body, + [126143] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7029), 1, - aux_sym_parameter_token1, - ACTIONS(7067), 1, - anon_sym_RPAREN2, - STATE(2401), 1, - aux_sym__directive_parameter_repeat1, - STATE(2422), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(3054), 1, sym_comment, - STATE(3175), 1, - sym__text_with_parenthesis, - STATE(3207), 1, - sym_parameter, - [99107] = 7, + STATE(4684), 1, + sym__directive_body_with_parameter, + [126159] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7069), 1, - anon_sym_ATdefault, - ACTIONS(7071), 1, - anon_sym_ATendswitch, - STATE(2423), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(3055), 1, sym_comment, - STATE(2430), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [99129] = 7, + STATE(4079), 1, + sym__if_statement_directive_body, + [126175] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7073), 1, - anon_sym_ATdefault, - ACTIONS(7075), 1, - anon_sym_ATendswitch, - STATE(2424), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(3056), 1, sym_comment, - STATE(2433), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [99151] = 5, + STATE(4078), 1, + sym__if_statement_directive_body, + [126191] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7079), 1, - anon_sym_ATcase, - STATE(3011), 1, - sym__case, - ACTIONS(7077), 2, - anon_sym_ATdefault, - anon_sym_ATendswitch, - STATE(2425), 2, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(3057), 1, sym_comment, - aux_sym_switch_repeat1, - [99169] = 7, + STATE(4077), 1, + sym__if_statement_directive_body, + [126207] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3557), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7082), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2426), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3058), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99191] = 7, - ACTIONS(6960), 1, + STATE(4641), 1, + sym__if_statement_directive_body, + [126223] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7084), 1, - anon_sym_RPAREN, - STATE(2427), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(3059), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99213] = 7, - ACTIONS(6960), 1, + STATE(4076), 1, + sym__directive_body_with_parameter, + [126239] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7086), 1, - anon_sym_RPAREN, - STATE(2428), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(3060), 1, sym_comment, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99235] = 7, + STATE(4075), 1, + sym__directive_body_with_parameter, + [126255] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7088), 1, - anon_sym_ATdefault, - ACTIONS(7090), 1, - anon_sym_ATendswitch, - STATE(2426), 1, - aux_sym_switch_repeat1, - STATE(2429), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(3061), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99257] = 7, + STATE(4252), 1, + sym__if_statement_directive_body, + [126271] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3749), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7092), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2430), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(3062), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99279] = 6, - ACTIONS(6960), 1, + STATE(4074), 1, + sym__directive_body_with_parameter, + [126287] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7015), 1, - anon_sym_RPAREN, - ACTIONS(7094), 1, - aux_sym_parameter_token1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - STATE(2431), 2, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(3063), 1, sym_comment, - aux_sym__directive_parameter_repeat1, - [99299] = 7, - ACTIONS(6960), 1, + STATE(4073), 1, + sym__directive_body_with_parameter, + [126303] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7097), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2432), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(3064), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99321] = 7, + STATE(4640), 1, + sym__if_statement_directive_body, + [126319] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(5056), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7099), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2433), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(3065), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99343] = 7, - ACTIONS(6960), 1, + STATE(4639), 1, + sym__if_statement_directive_body, + [126335] = 4, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7029), 1, + ACTIONS(8524), 1, + anon_sym_LPAREN2, + STATE(3066), 1, + sym_comment, + ACTIONS(8522), 2, aux_sym_parameter_token1, - ACTIONS(7101), 1, anon_sym_RPAREN2, - STATE(2422), 1, - aux_sym__directive_parameter_repeat1, - STATE(2434), 1, + [126349] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(3067), 1, sym_comment, - STATE(3175), 1, - sym__text_with_parenthesis, - STATE(3207), 1, - sym_parameter, - [99365] = 7, - ACTIONS(6960), 1, + STATE(4256), 1, + sym__if_statement_directive_body, + [126365] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7103), 1, - anon_sym_RPAREN, - STATE(2435), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(3068), 1, sym_comment, - STATE(2445), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99387] = 7, - ACTIONS(6960), 1, + STATE(4257), 1, + sym__if_statement_directive_body, + [126381] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7105), 1, - anon_sym_RPAREN, - STATE(2436), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3069), 1, sym_comment, - STATE(2466), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99409] = 7, - ACTIONS(6960), 1, + STATE(4258), 1, + sym__if_statement_directive_body, + [126397] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7107), 1, - anon_sym_RPAREN, - STATE(2428), 1, - aux_sym__directive_parameter_repeat1, - STATE(2437), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(3070), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99431] = 7, + STATE(4259), 1, + sym__directive_body_with_parameter, + [126413] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3940), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7109), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2438), 1, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(3071), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99453] = 7, - ACTIONS(6960), 1, + STATE(4260), 1, + sym__directive_body_with_parameter, + [126429] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7111), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2439), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(3072), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99475] = 7, + STATE(4261), 1, + sym__directive_body_with_parameter, + [126445] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2487), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7113), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2440), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(3073), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99497] = 7, + STATE(4262), 1, + sym__directive_body_with_parameter, + [126461] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7115), 1, - anon_sym_ATdefault, - ACTIONS(7117), 1, - anon_sym_ATendswitch, - STATE(2438), 1, - aux_sym_switch_repeat1, - STATE(2441), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(3074), 1, + sym_comment, + STATE(4263), 1, + sym__directive_body_with_parameter, + [126477] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(3075), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99519] = 7, - ACTIONS(6960), 1, + STATE(4264), 1, + sym__directive_body_with_parameter, + [126493] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7119), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2442), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(3076), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99541] = 7, + STATE(4072), 1, + sym__directive_body_with_parameter, + [126509] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7121), 1, - anon_sym_ATdefault, - ACTIONS(7123), 1, - anon_sym_ATendswitch, - STATE(2443), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(3077), 1, sym_comment, - STATE(2465), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [99563] = 7, + STATE(4265), 1, + sym__directive_body_with_parameter, + [126525] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3920), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7125), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2444), 1, + ACTIONS(7683), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__directive_parameter, + STATE(3078), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99585] = 7, - ACTIONS(6960), 1, + STATE(4266), 1, + sym__directive_body_with_parameter, + [126541] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7127), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2445), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(3079), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99607] = 7, - ACTIONS(6960), 1, + STATE(4267), 1, + sym__directive_body_with_parameter, + [126557] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7129), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2446), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(3080), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99629] = 7, + STATE(4268), 1, + sym__directive_body_with_parameter, + [126573] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7131), 1, - anon_sym_ATdefault, - ACTIONS(7133), 1, - anon_sym_ATendswitch, - STATE(2444), 1, - aux_sym_switch_repeat1, - STATE(2447), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(3081), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99651] = 7, - ACTIONS(6960), 1, + STATE(4269), 1, + sym__directive_body_with_parameter, + [126589] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7135), 1, - anon_sym_RPAREN, - STATE(2448), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(3082), 1, sym_comment, - STATE(2459), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99673] = 7, - ACTIONS(6960), 1, + STATE(4270), 1, + sym__directive_body_with_parameter, + [126605] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7137), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2449), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(3083), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99695] = 7, + STATE(4271), 1, + sym__directive_body_with_parameter, + [126621] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3769), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7139), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2450), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(3084), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99717] = 7, - ACTIONS(6960), 1, + STATE(4272), 1, + sym__directive_body_with_parameter, + [126637] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7141), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2451), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(3085), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99739] = 7, + STATE(4071), 1, + sym__directive_body_with_parameter, + [126653] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7143), 1, - anon_sym_ATdefault, - ACTIONS(7145), 1, - anon_sym_ATendswitch, - STATE(2450), 1, - aux_sym_switch_repeat1, - STATE(2452), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(3086), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99761] = 7, - ACTIONS(6960), 1, + STATE(4638), 1, + sym__if_statement_directive_body, + [126669] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7147), 1, - anon_sym_RPAREN, - STATE(2451), 1, - aux_sym__directive_parameter_repeat1, - STATE(2453), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(3087), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99783] = 7, + STATE(4273), 1, + sym__if_statement_directive_body, + [126685] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7149), 1, - anon_sym_ATdefault, - ACTIONS(7151), 1, - anon_sym_ATendswitch, - STATE(2454), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(3088), 1, sym_comment, - STATE(2461), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [99805] = 7, + STATE(4274), 1, + sym__if_statement_directive_body, + [126701] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3743), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7153), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2455), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(3089), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99827] = 7, - ACTIONS(6960), 1, + STATE(4275), 1, + sym__if_statement_directive_body, + [126717] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7155), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2456), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(3090), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99849] = 7, + STATE(4276), 1, + sym__if_statement_directive_body, + [126733] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7157), 1, - anon_sym_ATdefault, - ACTIONS(7159), 1, - anon_sym_ATendswitch, - STATE(2455), 1, - aux_sym_switch_repeat1, - STATE(2457), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(3091), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99871] = 7, + STATE(4277), 1, + sym__if_statement_directive_body, + [126749] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7161), 1, - anon_sym_ATdefault, - ACTIONS(7163), 1, - anon_sym_ATendswitch, - STATE(2458), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3092), 1, sym_comment, - STATE(2468), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [99893] = 7, - ACTIONS(6960), 1, + STATE(4278), 1, + sym__if_statement_directive_body, + [126765] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7165), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2459), 1, + ACTIONS(7683), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__directive_parameter, + STATE(3093), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99915] = 7, + STATE(4070), 1, + sym__directive_body_with_parameter, + [126781] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7167), 1, - anon_sym_ATdefault, - ACTIONS(7169), 1, - anon_sym_ATendswitch, - STATE(2440), 1, - aux_sym_switch_repeat1, - STATE(2460), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(3094), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99937] = 7, + STATE(4069), 1, + sym__directive_body_with_parameter, + [126797] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3659), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7171), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2461), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(3095), 1, sym_comment, - STATE(3011), 1, - sym__case, - [99959] = 7, - ACTIONS(6960), 1, + STATE(4068), 1, + sym__directive_body_with_parameter, + [126813] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7173), 1, - anon_sym_RPAREN, - STATE(2456), 1, - aux_sym__directive_parameter_repeat1, - STATE(2462), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(3096), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [99981] = 7, - ACTIONS(6960), 1, + STATE(4067), 1, + sym__directive_body_with_parameter, + [126829] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7175), 1, - anon_sym_RPAREN, - STATE(2463), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(3097), 1, sym_comment, - STATE(2476), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100003] = 7, + STATE(4066), 1, + sym__directive_body_with_parameter, + [126845] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3553), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7177), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2464), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(3098), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100025] = 7, + STATE(4065), 1, + sym__directive_body_with_parameter, + [126861] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3916), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7179), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2465), 1, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(3099), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100047] = 7, - ACTIONS(6960), 1, + STATE(4064), 1, + sym__directive_body_with_parameter, + [126877] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7181), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2466), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(3100), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100069] = 7, - ACTIONS(6960), 1, + STATE(4063), 1, + sym__directive_body_with_parameter, + [126893] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7183), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2467), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(3101), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100091] = 7, + STATE(4637), 1, + sym__if_statement_directive_body, + [126909] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(5659), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7185), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2468), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(3102), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100113] = 7, + STATE(4636), 1, + sym__if_statement_directive_body, + [126925] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7187), 1, - anon_sym_ATdefault, - ACTIONS(7189), 1, - anon_sym_ATendswitch, - STATE(2464), 1, - aux_sym_switch_repeat1, - STATE(2469), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(3103), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100135] = 7, - ACTIONS(6960), 1, + STATE(4635), 1, + sym__directive_body_with_parameter, + [126941] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7191), 1, - anon_sym_RPAREN, - STATE(2467), 1, - aux_sym__directive_parameter_repeat1, - STATE(2470), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(3104), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100157] = 7, + STATE(4634), 1, + sym__directive_body_with_parameter, + [126957] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7193), 1, - anon_sym_ATdefault, - ACTIONS(7195), 1, - anon_sym_ATendswitch, - STATE(2471), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3105), 1, sym_comment, - STATE(2477), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [100179] = 7, + STATE(4062), 1, + sym__if_statement_directive_body, + [126973] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3303), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7197), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2472), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(3106), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100201] = 7, - ACTIONS(6960), 1, + STATE(4061), 1, + sym__if_statement_directive_body, + [126989] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7199), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2473), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(3107), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100223] = 7, - ACTIONS(6960), 1, + STATE(4060), 1, + sym__if_statement_directive_body, + [127005] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7201), 1, - anon_sym_RPAREN, - STATE(2399), 1, - aux_sym__directive_parameter_repeat1, - STATE(2474), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(3108), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100245] = 7, + STATE(4056), 1, + sym__if_statement_directive_body, + [127021] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7203), 1, - anon_sym_ATdefault, - ACTIONS(7205), 1, - anon_sym_ATendswitch, - STATE(2472), 1, - aux_sym_switch_repeat1, - STATE(2475), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3109), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100267] = 7, - ACTIONS(6960), 1, + STATE(4055), 1, + sym__if_statement_directive_body, + [127037] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7207), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2476), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3110), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100289] = 7, + STATE(4279), 1, + sym__if_statement_directive_body, + [127053] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3295), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7209), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2477), 1, + ACTIONS(7423), 1, + anon_sym_LPAREN, + STATE(66), 1, + sym__directive_parameter, + STATE(3111), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100311] = 7, - ACTIONS(6960), 1, + STATE(4280), 1, + sym__if_statement_directive_body, + [127069] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7211), 1, - anon_sym_RPAREN, - STATE(2473), 1, - aux_sym__directive_parameter_repeat1, - STATE(2478), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3112), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100333] = 7, + STATE(4054), 1, + sym__if_statement_directive_body, + [127085] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3287), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7213), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2479), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(3113), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100355] = 7, - ACTIONS(6960), 1, + STATE(4053), 1, + sym__if_statement_directive_body, + [127101] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7215), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2480), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(3114), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100377] = 7, - ACTIONS(6960), 1, + STATE(4052), 1, + sym__if_statement_directive_body, + [127117] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7217), 1, - anon_sym_RPAREN, - STATE(2414), 1, - aux_sym__directive_parameter_repeat1, - STATE(2481), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(3115), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100399] = 7, - ACTIONS(6960), 1, + STATE(4051), 1, + sym__if_statement_directive_body, + [127133] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7219), 1, - anon_sym_RPAREN, - STATE(2482), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(3116), 1, sym_comment, - STATE(2493), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100421] = 7, + STATE(4050), 1, + sym__if_statement_directive_body, + [127149] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3265), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7221), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2483), 1, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(3117), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100443] = 7, - ACTIONS(6960), 1, + STATE(4284), 1, + sym__if_statement_directive_body, + [127165] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7223), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2484), 1, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(3118), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100465] = 7, + STATE(4285), 1, + sym__if_statement_directive_body, + [127181] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7225), 1, - anon_sym_ATdefault, - ACTIONS(7227), 1, - anon_sym_ATendswitch, - STATE(2483), 1, - aux_sym_switch_repeat1, - STATE(2485), 1, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3119), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100487] = 7, - ACTIONS(6960), 1, + STATE(4286), 1, + sym__if_statement_directive_body, + [127197] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7229), 1, - anon_sym_RPAREN, - STATE(2484), 1, - aux_sym__directive_parameter_repeat1, - STATE(2486), 1, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(3120), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100509] = 7, + STATE(4287), 1, + sym__directive_body_with_parameter, + [127213] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7231), 1, - anon_sym_ATdefault, - ACTIONS(7233), 1, - anon_sym_ATendswitch, - STATE(2487), 1, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(3121), 1, sym_comment, - STATE(2494), 1, - aux_sym_switch_repeat1, - STATE(3011), 1, - sym__case, - [100531] = 7, + STATE(4288), 1, + sym__directive_body_with_parameter, + [127229] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(3011), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7235), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2488), 1, + ACTIONS(7701), 1, + anon_sym_LPAREN, + STATE(436), 1, + sym__directive_parameter, + STATE(3122), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100553] = 7, - ACTIONS(6960), 1, + STATE(4289), 1, + sym__directive_body_with_parameter, + [127245] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7237), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2489), 1, + ACTIONS(7699), 1, + anon_sym_LPAREN, + STATE(363), 1, + sym__directive_parameter, + STATE(3123), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100575] = 7, - ACTIONS(6960), 1, + STATE(4290), 1, + sym__directive_body_with_parameter, + [127261] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7239), 1, - anon_sym_RPAREN, - STATE(2442), 1, - aux_sym__directive_parameter_repeat1, - STATE(2490), 1, + ACTIONS(7697), 1, + anon_sym_LPAREN, + STATE(289), 1, + sym__directive_parameter, + STATE(3124), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100597] = 7, - ACTIONS(6960), 1, + STATE(4291), 1, + sym__directive_body_with_parameter, + [127277] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7241), 1, - anon_sym_RPAREN, - STATE(2480), 1, - aux_sym__directive_parameter_repeat1, - STATE(2491), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(3125), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100619] = 7, + STATE(4049), 1, + sym__if_statement_directive_body, + [127293] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7243), 1, - anon_sym_ATdefault, - ACTIONS(7245), 1, - anon_sym_ATendswitch, - STATE(2488), 1, - aux_sym_switch_repeat1, - STATE(2492), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(3126), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100641] = 7, - ACTIONS(6960), 1, + STATE(4292), 1, + sym__directive_body_with_parameter, + [127309] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7247), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2493), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(3127), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100663] = 7, + STATE(4293), 1, + sym__directive_body_with_parameter, + [127325] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2798), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7249), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2494), 1, + ACTIONS(7683), 1, + anon_sym_LPAREN, + STATE(319), 1, + sym__directive_parameter, + STATE(3128), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100685] = 7, - ACTIONS(6960), 1, + STATE(4294), 1, + sym__directive_body_with_parameter, + [127341] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7251), 1, - anon_sym_RPAREN, - STATE(2489), 1, - aux_sym__directive_parameter_repeat1, - STATE(2495), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(3129), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100707] = 7, - ACTIONS(6960), 1, + STATE(4295), 1, + sym__directive_body_with_parameter, + [127357] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7253), 1, - anon_sym_RPAREN, - STATE(2496), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(3130), 1, sym_comment, - STATE(2507), 1, - aux_sym__directive_parameter_repeat1, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100729] = 7, + STATE(4296), 1, + sym__directive_body_with_parameter, + [127373] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2373), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7255), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2497), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(3131), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100751] = 7, + STATE(4297), 1, + sym__directive_body_with_parameter, + [127389] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2694), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7257), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2498), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(3132), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100773] = 7, - ACTIONS(6960), 1, + STATE(4298), 1, + sym__directive_body_with_parameter, + [127405] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7259), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2499), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(3133), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100795] = 7, + STATE(4299), 1, + sym__directive_body_with_parameter, + [127421] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7261), 1, - anon_sym_ATdefault, - ACTIONS(7263), 1, - anon_sym_ATendswitch, - STATE(2498), 1, - aux_sym_switch_repeat1, - STATE(2500), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(3134), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100817] = 7, - ACTIONS(6960), 1, + STATE(4633), 1, + sym__directive_body_with_parameter, + [127437] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7265), 1, - anon_sym_RPAREN, - STATE(2499), 1, - aux_sym__directive_parameter_repeat1, - STATE(2501), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(3135), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100839] = 7, + STATE(4300), 1, + sym__directive_body_with_parameter, + [127453] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7267), 1, - anon_sym_ATdefault, - ACTIONS(7269), 1, - anon_sym_ATendswitch, - STATE(2497), 1, - aux_sym_switch_repeat1, - STATE(2502), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(3136), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100861] = 7, + STATE(4632), 1, + sym__directive_body_with_parameter, + [127469] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(2459), 1, - anon_sym_ATendswitch, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7271), 1, - anon_sym_ATdefault, - STATE(2425), 1, - aux_sym_switch_repeat1, - STATE(2503), 1, + ACTIONS(7417), 1, + anon_sym_LPAREN, + STATE(74), 1, + sym__directive_parameter, + STATE(3137), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100883] = 7, + STATE(4301), 1, + sym__if_statement_directive_body, + [127485] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7273), 1, - anon_sym_ATdefault, - ACTIONS(7275), 1, - anon_sym_ATendswitch, - STATE(2413), 1, - aux_sym_switch_repeat1, - STATE(2504), 1, + ACTIONS(7411), 1, + anon_sym_LPAREN, + STATE(70), 1, + sym__directive_parameter, + STATE(3138), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100905] = 7, - ACTIONS(6960), 1, + STATE(4302), 1, + sym__if_statement_directive_body, + [127501] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7277), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2505), 1, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(3139), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100927] = 7, + STATE(4303), 1, + sym__if_statement_directive_body, + [127517] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6978), 1, - anon_sym_ATcase, - ACTIONS(7279), 1, - anon_sym_ATdefault, - ACTIONS(7281), 1, - anon_sym_ATendswitch, - STATE(2503), 1, - aux_sym_switch_repeat1, - STATE(2506), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(111), 1, + sym__directive_parameter, + STATE(3140), 1, sym_comment, - STATE(3011), 1, - sym__case, - [100949] = 7, - ACTIONS(6960), 1, + STATE(4244), 1, + sym__if_statement_directive_body, + [127533] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7283), 1, - anon_sym_RPAREN, - STATE(2431), 1, - aux_sym__directive_parameter_repeat1, - STATE(2507), 1, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(3141), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100971] = 7, - ACTIONS(6960), 1, + STATE(4305), 1, + sym__if_statement_directive_body, + [127549] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6964), 1, - aux_sym_parameter_token1, - ACTIONS(7285), 1, - anon_sym_RPAREN, - STATE(2505), 1, - aux_sym__directive_parameter_repeat1, - STATE(2508), 1, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(3142), 1, sym_comment, - STATE(3187), 1, - sym__text_with_parenthesis, - STATE(3188), 1, - sym_parameter, - [100993] = 4, + STATE(4028), 1, + sym__directive_body_with_parameter, + [127565] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7289), 1, - aux_sym_text_token2, - STATE(2509), 1, + ACTIONS(7693), 1, + anon_sym_LPAREN, + STATE(395), 1, + sym__directive_parameter, + STATE(3143), 1, sym_comment, - ACTIONS(7287), 3, - anon_sym_DASH_DASH_RBRACE_RBRACE, - aux_sym_text_token1, - aux_sym_text_token3, - [101008] = 4, + STATE(4047), 1, + sym__directive_body_with_parameter, + [127581] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7293), 1, - aux_sym_text_token2, - STATE(2510), 1, + ACTIONS(7691), 1, + anon_sym_LPAREN, + STATE(384), 1, + sym__directive_parameter, + STATE(3144), 1, sym_comment, - ACTIONS(7291), 3, - anon_sym_RBRACE_RBRACE, - aux_sym_text_token1, - aux_sym_text_token3, - [101023] = 4, + STATE(4046), 1, + sym__directive_body_with_parameter, + [127597] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6520), 1, - aux_sym_text_token2, - STATE(2511), 1, + ACTIONS(7689), 1, + anon_sym_LPAREN, + STATE(372), 1, + sym__directive_parameter, + STATE(3145), 1, sym_comment, - ACTIONS(6518), 3, - anon_sym_DASH_DASH_RBRACE_RBRACE, - aux_sym_text_token1, - aux_sym_text_token3, - [101038] = 4, + STATE(4045), 1, + sym__directive_body_with_parameter, + [127613] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7293), 1, - aux_sym_text_token2, - STATE(2512), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(3146), 1, sym_comment, - ACTIONS(7291), 3, - anon_sym_BANG_BANG_RBRACE, - aux_sym_text_token1, - aux_sym_text_token3, - [101053] = 4, + STATE(4044), 1, + sym__directive_body_with_parameter, + [127629] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6520), 1, - aux_sym_text_token2, - STATE(2513), 1, + ACTIONS(7685), 1, + anon_sym_LPAREN, + STATE(354), 1, + sym__directive_parameter, + STATE(3147), 1, sym_comment, - ACTIONS(6518), 3, - anon_sym_RBRACE_RBRACE, - aux_sym_text_token1, - aux_sym_text_token3, - [101068] = 4, + STATE(4043), 1, + sym__directive_body_with_parameter, + [127645] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2514), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(3148), 1, sym_comment, - ACTIONS(6518), 2, - anon_sym_ATendphp, - aux_sym_text_token3, - ACTIONS(6520), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [101083] = 4, + STATE(4013), 1, + sym__directive_body_with_parameter, + [127661] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2515), 1, + ACTIONS(7551), 1, + anon_sym_LPAREN, + STATE(259), 1, + sym__directive_parameter, + STATE(3149), 1, sym_comment, - ACTIONS(7291), 2, - anon_sym_ATendphp, - aux_sym_text_token3, - ACTIONS(7293), 2, - aux_sym_text_token1, - aux_sym_text_token2, - [101098] = 4, + STATE(4041), 1, + sym__directive_body_with_parameter, + [127677] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6520), 1, - aux_sym_text_token2, - STATE(2516), 1, + ACTIONS(7665), 1, + anon_sym_LPAREN, + STATE(204), 1, + sym__directive_parameter, + STATE(3150), 1, sym_comment, - ACTIONS(6518), 3, - anon_sym_BANG_BANG_RBRACE, - aux_sym_text_token1, - aux_sym_text_token3, - [101113] = 5, + STATE(4040), 1, + sym__directive_body_with_parameter, + [127693] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2517), 1, + STATE(3151), 1, sym_comment, - STATE(3808), 1, + STATE(4683), 1, sym__directive_body_with_parameter, - [101129] = 5, + [127709] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2518), 1, + STATE(3152), 1, sym_comment, - STATE(3887), 1, + STATE(4682), 1, sym__directive_body_with_parameter, - [101145] = 5, + [127725] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2519), 1, + STATE(3153), 1, sym_comment, - STATE(3412), 1, + STATE(4039), 1, sym__directive_body_with_parameter, - [101161] = 5, + [127741] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2520), 1, + STATE(3154), 1, sym_comment, - STATE(3413), 1, + STATE(4038), 1, sym__directive_body_with_parameter, - [101177] = 5, + [127757] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2521), 1, + STATE(3155), 1, sym_comment, - STATE(3359), 1, + STATE(4037), 1, sym__directive_body_with_parameter, - [101193] = 5, + [127773] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2522), 1, + STATE(3156), 1, sym_comment, - STATE(3358), 1, + STATE(4036), 1, sym__directive_body_with_parameter, - [101209] = 5, + [127789] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2523), 1, + STATE(3157), 1, sym_comment, - STATE(3414), 1, + STATE(4631), 1, sym__directive_body_with_parameter, - [101225] = 5, + [127805] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2524), 1, + STATE(3158), 1, sym_comment, - STATE(3332), 1, + STATE(4630), 1, sym__directive_body_with_parameter, - [101241] = 5, + [127821] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2525), 1, + STATE(3159), 1, sym_comment, - STATE(3415), 1, + STATE(4306), 1, sym__if_statement_directive_body, - [101257] = 5, + [127837] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2526), 1, + STATE(3160), 1, sym_comment, - STATE(3416), 1, + STATE(4307), 1, sym__if_statement_directive_body, - [101273] = 5, + [127853] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2527), 1, + STATE(3161), 1, sym_comment, - STATE(3409), 1, + STATE(4035), 1, sym__directive_body_with_parameter, - [101289] = 5, + [127869] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2528), 1, + STATE(3162), 1, sym_comment, - STATE(3417), 1, + STATE(4034), 1, sym__if_statement_directive_body, - [101305] = 5, + [127885] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2529), 1, + STATE(3163), 1, sym_comment, - STATE(3418), 1, + STATE(4308), 1, sym__if_statement_directive_body, - [101321] = 5, + [127901] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2530), 1, + STATE(3164), 1, sym_comment, - STATE(3419), 1, + STATE(4033), 1, sym__if_statement_directive_body, - [101337] = 5, + [127917] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2531), 1, + STATE(3165), 1, sym_comment, - STATE(3606), 1, + STATE(4032), 1, sym__if_statement_directive_body, - [101353] = 5, + [127933] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2532), 1, + STATE(3166), 1, sym_comment, - STATE(3476), 1, + STATE(3957), 1, sym__if_statement_directive_body, - [101369] = 5, + [127949] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2533), 1, + STATE(3167), 1, sym_comment, - STATE(3331), 1, - sym__directive_body_with_parameter, - [101385] = 5, + STATE(4312), 1, + sym__if_statement_directive_body, + [127965] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2534), 1, + STATE(3168), 1, sym_comment, - STATE(3423), 1, + STATE(4313), 1, sym__if_statement_directive_body, - [101401] = 5, + [127981] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2535), 1, + STATE(3169), 1, sym_comment, - STATE(3425), 1, + STATE(4314), 1, sym__if_statement_directive_body, - [101417] = 5, + [127997] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2536), 1, + STATE(3170), 1, sym_comment, - STATE(3426), 1, - sym__if_statement_directive_body, - [101433] = 5, + STATE(4315), 1, + sym__directive_body_with_parameter, + [128013] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2537), 1, + STATE(3171), 1, sym_comment, - STATE(3427), 1, + STATE(4316), 1, sym__directive_body_with_parameter, - [101449] = 5, + [128029] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2538), 1, + STATE(3172), 1, sym_comment, - STATE(3428), 1, + STATE(4317), 1, sym__directive_body_with_parameter, - [101465] = 5, + [128045] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2539), 1, + STATE(3173), 1, sym_comment, - STATE(3429), 1, + STATE(4318), 1, sym__directive_body_with_parameter, - [101481] = 5, + [128061] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2540), 1, + STATE(3174), 1, sym_comment, - STATE(3430), 1, - sym__directive_body_with_parameter, - [101497] = 5, + STATE(4027), 1, + sym__if_statement_directive_body, + [128077] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2541), 1, + STATE(3175), 1, sym_comment, - STATE(3431), 1, + STATE(4319), 1, sym__directive_body_with_parameter, - [101513] = 5, + [128093] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2542), 1, + STATE(3176), 1, sym_comment, - STATE(3433), 1, + STATE(4320), 1, sym__directive_body_with_parameter, - [101529] = 5, + [128109] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2543), 1, + STATE(3177), 1, sym_comment, - STATE(3434), 1, + STATE(4304), 1, sym__directive_body_with_parameter, - [101545] = 5, + [128125] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2544), 1, + STATE(3178), 1, sym_comment, - STATE(3446), 1, + STATE(4322), 1, sym__directive_body_with_parameter, - [101561] = 5, + [128141] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2545), 1, + STATE(3179), 1, sym_comment, - STATE(3447), 1, + STATE(4323), 1, sym__directive_body_with_parameter, - [101577] = 5, + [128157] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2546), 1, + STATE(3180), 1, sym_comment, - STATE(3448), 1, + STATE(4324), 1, sym__directive_body_with_parameter, - [101593] = 5, + [128173] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2547), 1, + STATE(3181), 1, sym_comment, - STATE(3449), 1, + STATE(4325), 1, sym__directive_body_with_parameter, - [101609] = 5, + [128189] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2548), 1, + STATE(3182), 1, sym_comment, - STATE(3450), 1, + STATE(4326), 1, sym__directive_body_with_parameter, - [101625] = 5, + [128205] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2549), 1, + STATE(3183), 1, sym_comment, - STATE(3451), 1, - sym__directive_body_with_parameter, - [101641] = 5, + STATE(4026), 1, + sym__if_statement_directive_body, + [128221] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2550), 1, + STATE(3184), 1, sym_comment, - STATE(3410), 1, + STATE(4327), 1, sym__directive_body_with_parameter, - [101657] = 5, + [128237] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2551), 1, + STATE(3185), 1, sym_comment, - STATE(3452), 1, + STATE(4328), 1, sym__directive_body_with_parameter, - [101673] = 5, + [128253] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2552), 1, + STATE(3186), 1, sym_comment, - STATE(3330), 1, - sym__directive_body_with_parameter, - [101689] = 5, + STATE(3827), 1, + sym__if_statement_directive_body, + [128269] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2553), 1, + STATE(3187), 1, sym_comment, - STATE(3453), 1, + STATE(4329), 1, sym__if_statement_directive_body, - [101705] = 5, + [128285] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2554), 1, + STATE(3188), 1, sym_comment, - STATE(3454), 1, + STATE(4330), 1, + sym__if_statement_directive_body, + [128301] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7407), 1, + anon_sym_LPAREN, + STATE(98), 1, + sym__directive_parameter, + STATE(3189), 1, + sym_comment, + STATE(4331), 1, sym__if_statement_directive_body, - [101721] = 5, + [128317] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2555), 1, + STATE(3190), 1, sym_comment, - STATE(3455), 1, + STATE(4332), 1, sym__if_statement_directive_body, - [101737] = 5, + [128333] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2556), 1, + STATE(3191), 1, sym_comment, - STATE(3456), 1, + STATE(4025), 1, sym__if_statement_directive_body, - [101753] = 5, + [128349] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2557), 1, + STATE(3192), 1, sym_comment, - STATE(3457), 1, + STATE(4024), 1, sym__if_statement_directive_body, - [101769] = 5, + [128365] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2558), 1, + STATE(3193), 1, sym_comment, - STATE(3408), 1, - sym__directive_body_with_parameter, - [101785] = 5, + STATE(4023), 1, + sym__if_statement_directive_body, + [128381] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2559), 1, + STATE(3194), 1, sym_comment, - STATE(3580), 1, + STATE(4022), 1, sym__if_statement_directive_body, - [101801] = 5, + [128397] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2560), 1, + STATE(3195), 1, sym_comment, - STATE(3390), 1, - sym__directive_body_with_parameter, - [101817] = 5, + STATE(4021), 1, + sym__if_statement_directive_body, + [128413] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2561), 1, + STATE(3196), 1, sym_comment, - STATE(3329), 1, + STATE(3828), 1, + sym__if_statement_directive_body, + [128429] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7419), 1, + anon_sym_LPAREN, + STATE(82), 1, + sym__directive_parameter, + STATE(3197), 1, + sym_comment, + STATE(3829), 1, + sym__if_statement_directive_body, + [128445] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(3198), 1, + sym_comment, + STATE(4020), 1, sym__directive_body_with_parameter, - [101833] = 5, + [128461] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2562), 1, + STATE(3199), 1, sym_comment, - STATE(3555), 1, + STATE(4019), 1, sym__directive_body_with_parameter, - [101849] = 5, + [128477] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2563), 1, + STATE(3200), 1, sym_comment, - STATE(3462), 1, + STATE(3830), 1, sym__if_statement_directive_body, - [101865] = 5, + [128493] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2564), 1, + STATE(3201), 1, sym_comment, - STATE(3463), 1, - sym__if_statement_directive_body, - [101881] = 5, + STATE(4681), 1, + sym__directive_body_with_parameter, + [128509] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(3202), 1, + sym_comment, + ACTIONS(8526), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [128521] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2565), 1, + STATE(3203), 1, sym_comment, - STATE(3464), 1, - sym__if_statement_directive_body, - [101897] = 5, + STATE(4018), 1, + sym__directive_body_with_parameter, + [128537] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, STATE(372), 1, sym__directive_parameter, - STATE(2566), 1, + STATE(3204), 1, sym_comment, - STATE(3465), 1, + STATE(4017), 1, sym__directive_body_with_parameter, - [101913] = 5, + [128553] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2567), 1, + STATE(3205), 1, sym_comment, - STATE(3328), 1, + STATE(4016), 1, sym__directive_body_with_parameter, - [101929] = 5, + [128569] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2568), 1, + STATE(3206), 1, sym_comment, - STATE(3327), 1, + STATE(4015), 1, sym__directive_body_with_parameter, - [101945] = 5, + [128585] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2569), 1, + STATE(3207), 1, sym_comment, - STATE(3397), 1, + STATE(4014), 1, sym__directive_body_with_parameter, - [101961] = 5, + [128601] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2570), 1, + STATE(3208), 1, sym_comment, - STATE(3326), 1, - sym__directive_body_with_parameter, - [101977] = 5, + STATE(4333), 1, + sym__if_statement_directive_body, + [128617] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2571), 1, + STATE(3209), 1, sym_comment, - STATE(3323), 1, + STATE(4334), 1, sym__if_statement_directive_body, - [101993] = 5, + [128633] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2572), 1, + STATE(3210), 1, sym_comment, - STATE(3396), 1, + STATE(3988), 1, sym__directive_body_with_parameter, - [102009] = 5, + [128649] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2573), 1, + STATE(3211), 1, sym_comment, - STATE(3393), 1, + STATE(4680), 1, sym__directive_body_with_parameter, - [102025] = 5, + [128665] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2574), 1, + STATE(3212), 1, sym_comment, - STATE(3392), 1, - sym__directive_body_with_parameter, - [102041] = 5, + STATE(4335), 1, + sym__if_statement_directive_body, + [128681] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2575), 1, + STATE(3213), 1, sym_comment, - STATE(3466), 1, - sym__directive_body_with_parameter, - [102057] = 5, + STATE(4336), 1, + sym__if_statement_directive_body, + [128697] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2576), 1, + STATE(3214), 1, sym_comment, - STATE(3467), 1, + STATE(4012), 1, sym__directive_body_with_parameter, - [102073] = 5, + [128713] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2577), 1, + STATE(3215), 1, sym_comment, - STATE(3468), 1, + STATE(3820), 1, sym__directive_body_with_parameter, - [102089] = 5, + [128729] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2578), 1, + STATE(3216), 1, sym_comment, - STATE(3469), 1, + STATE(4011), 1, sym__directive_body_with_parameter, - [102105] = 5, + [128745] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2579), 1, + STATE(3217), 1, sym_comment, - STATE(3472), 1, - sym__directive_body_with_parameter, - [102121] = 5, + STATE(4340), 1, + sym__if_statement_directive_body, + [128761] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2580), 1, + STATE(3218), 1, sym_comment, - STATE(3473), 1, + STATE(4341), 1, + sym__if_statement_directive_body, + [128777] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3219), 1, + sym_comment, + STATE(4342), 1, + sym__if_statement_directive_body, + [128793] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7705), 1, + anon_sym_LPAREN, + STATE(386), 1, + sym__directive_parameter, + STATE(3220), 1, + sym_comment, + STATE(4343), 1, sym__directive_body_with_parameter, - [102137] = 5, + [128809] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, - STATE(2581), 1, + STATE(3221), 1, sym_comment, - STATE(3486), 1, + STATE(4344), 1, sym__directive_body_with_parameter, - [102153] = 5, + [128825] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2582), 1, + STATE(3222), 1, sym_comment, - STATE(3487), 1, + STATE(4345), 1, sym__directive_body_with_parameter, - [102169] = 5, + [128841] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2583), 1, + STATE(3223), 1, sym_comment, - STATE(3488), 1, + STATE(4010), 1, sym__directive_body_with_parameter, - [102185] = 5, + [128857] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2584), 1, + STATE(3224), 1, sym_comment, - STATE(3489), 1, + STATE(4346), 1, sym__directive_body_with_parameter, - [102201] = 5, + [128873] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2585), 1, + STATE(3225), 1, sym_comment, - STATE(3490), 1, + STATE(4347), 1, sym__directive_body_with_parameter, - [102217] = 5, + [128889] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2586), 1, + STATE(3226), 1, sym_comment, - STATE(3491), 1, + STATE(4348), 1, sym__directive_body_with_parameter, - [102233] = 5, + [128905] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2587), 1, + STATE(3227), 1, sym_comment, - STATE(3492), 1, + STATE(4349), 1, sym__directive_body_with_parameter, - [102249] = 5, + [128921] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2588), 1, + STATE(3228), 1, sym_comment, - STATE(3322), 1, - sym__if_statement_directive_body, - [102265] = 5, + STATE(4350), 1, + sym__directive_body_with_parameter, + [128937] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2589), 1, + STATE(3229), 1, sym_comment, - STATE(3493), 1, - sym__if_statement_directive_body, - [102281] = 5, + STATE(4351), 1, + sym__directive_body_with_parameter, + [128953] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2590), 1, + STATE(3230), 1, sym_comment, - STATE(3494), 1, - sym__if_statement_directive_body, - [102297] = 5, + STATE(4352), 1, + sym__directive_body_with_parameter, + [128969] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2591), 1, + STATE(3231), 1, sym_comment, - STATE(3495), 1, - sym__if_statement_directive_body, - [102313] = 5, + STATE(4353), 1, + sym__directive_body_with_parameter, + [128985] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2592), 1, + STATE(3232), 1, sym_comment, - STATE(3496), 1, - sym__if_statement_directive_body, - [102329] = 5, + STATE(4009), 1, + sym__directive_body_with_parameter, + [129001] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2593), 1, + STATE(3233), 1, sym_comment, - STATE(3497), 1, - sym__if_statement_directive_body, - [102345] = 5, + STATE(4354), 1, + sym__directive_body_with_parameter, + [129017] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2594), 1, + STATE(3234), 1, sym_comment, - STATE(3554), 1, + STATE(4355), 1, sym__directive_body_with_parameter, - [102361] = 5, + [129033] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2595), 1, + STATE(3235), 1, sym_comment, - STATE(3553), 1, + STATE(4356), 1, sym__directive_body_with_parameter, - [102377] = 5, + [129049] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2596), 1, + STATE(3236), 1, sym_comment, - STATE(3391), 1, - sym__directive_body_with_parameter, - [102393] = 5, + STATE(3831), 1, + sym__if_statement_directive_body, + [129065] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2597), 1, + STATE(3237), 1, sym_comment, - STATE(3529), 1, - sym__directive_body_with_parameter, - [102409] = 5, + STATE(4357), 1, + sym__if_statement_directive_body, + [129081] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2598), 1, + STATE(3238), 1, sym_comment, - STATE(3501), 1, + STATE(4358), 1, sym__if_statement_directive_body, - [102425] = 5, + [129097] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2599), 1, + STATE(3239), 1, sym_comment, - STATE(3502), 1, + STATE(4359), 1, sym__if_statement_directive_body, - [102441] = 5, + [129113] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2600), 1, + STATE(3240), 1, sym_comment, - STATE(3504), 1, + STATE(3832), 1, sym__if_statement_directive_body, - [102457] = 5, + [129129] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2601), 1, + STATE(3241), 1, sym_comment, - STATE(3505), 1, + STATE(3836), 1, + sym__if_statement_directive_body, + [129145] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7703), 1, + anon_sym_LPAREN, + STATE(271), 1, + sym__directive_parameter, + STATE(3242), 1, + sym_comment, + STATE(4008), 1, sym__directive_body_with_parameter, - [102473] = 5, + [129161] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2602), 1, + STATE(3243), 1, sym_comment, - STATE(3506), 1, + STATE(4007), 1, sym__directive_body_with_parameter, - [102489] = 5, + [129177] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7409), 1, + anon_sym_LPAREN, + STATE(84), 1, + sym__directive_parameter, + STATE(3244), 1, + sym_comment, + STATE(4006), 1, + sym__if_statement_directive_body, + [129193] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7415), 1, + anon_sym_LPAREN, + STATE(101), 1, + sym__directive_parameter, + STATE(3245), 1, + sym_comment, + STATE(4005), 1, + sym__if_statement_directive_body, + [129209] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(3246), 1, + sym_comment, + STATE(4004), 1, + sym__if_statement_directive_body, + [129225] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2603), 1, + STATE(3247), 1, sym_comment, - STATE(3507), 1, - sym__directive_body_with_parameter, - [102505] = 5, + STATE(4000), 1, + sym__if_statement_directive_body, + [129241] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2604), 1, + STATE(3248), 1, sym_comment, - STATE(3371), 1, - sym__directive_body_with_parameter, - [102521] = 5, + STATE(3999), 1, + sym__if_statement_directive_body, + [129257] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2605), 1, + STATE(3249), 1, sym_comment, - STATE(3508), 1, + STATE(4679), 1, sym__directive_body_with_parameter, - [102537] = 5, + [129273] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2606), 1, + STATE(3250), 1, sym_comment, - STATE(3389), 1, - sym__directive_body_with_parameter, - [102553] = 5, + STATE(4678), 1, + sym__if_statement_directive_body, + [129289] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2607), 1, + STATE(3251), 1, sym_comment, - STATE(3509), 1, - sym__directive_body_with_parameter, - [102569] = 5, + STATE(3998), 1, + sym__if_statement_directive_body, + [129305] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2608), 1, + STATE(3252), 1, sym_comment, - STATE(3510), 1, - sym__directive_body_with_parameter, - [102585] = 5, + STATE(3997), 1, + sym__if_statement_directive_body, + [129321] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2609), 1, + STATE(3253), 1, sym_comment, - STATE(3511), 1, - sym__directive_body_with_parameter, - [102601] = 5, + STATE(3996), 1, + sym__if_statement_directive_body, + [129337] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2610), 1, + STATE(3254), 1, sym_comment, - STATE(3388), 1, + STATE(3995), 1, sym__if_statement_directive_body, - [102617] = 5, + [129353] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2611), 1, + STATE(3255), 1, sym_comment, - STATE(3523), 1, - sym__directive_body_with_parameter, - [102633] = 5, + STATE(3994), 1, + sym__if_statement_directive_body, + [129369] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2612), 1, + STATE(3256), 1, sym_comment, - STATE(3524), 1, - sym__directive_body_with_parameter, - [102649] = 5, + STATE(3993), 1, + sym__if_statement_directive_body, + [129385] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2613), 1, + STATE(3257), 1, sym_comment, - STATE(3310), 1, + STATE(4360), 1, sym__if_statement_directive_body, - [102665] = 5, + [129401] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2614), 1, + STATE(3258), 1, sym_comment, - STATE(3297), 1, + STATE(4361), 1, sym__if_statement_directive_body, - [102681] = 5, + [129417] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2615), 1, + STATE(3259), 1, sym_comment, - STATE(3525), 1, - sym__directive_body_with_parameter, - [102697] = 5, + STATE(4677), 1, + sym__if_statement_directive_body, + [129433] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2616), 1, + STATE(3260), 1, sym_comment, - STATE(3526), 1, + STATE(3992), 1, sym__directive_body_with_parameter, - [102713] = 5, + [129449] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2617), 1, + STATE(3261), 1, sym_comment, - STATE(3530), 1, - sym__directive_body_with_parameter, - [102729] = 5, + STATE(4362), 1, + sym__if_statement_directive_body, + [129465] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2618), 1, + STATE(3262), 1, sym_comment, - STATE(3531), 1, - sym__directive_body_with_parameter, - [102745] = 5, + STATE(4363), 1, + sym__if_statement_directive_body, + [129481] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2619), 1, + STATE(3263), 1, sym_comment, - STATE(3387), 1, + STATE(4364), 1, sym__if_statement_directive_body, - [102761] = 5, + [129497] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2620), 1, + STATE(3264), 1, sym_comment, - STATE(3532), 1, + STATE(3991), 1, sym__directive_body_with_parameter, - [102777] = 5, + [129513] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2621), 1, + STATE(3265), 1, sym_comment, - STATE(3400), 1, - sym__if_statement_directive_body, - [102793] = 5, + STATE(3990), 1, + sym__directive_body_with_parameter, + [129529] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, - anon_sym_LPAREN, - STATE(106), 1, - sym__directive_parameter, - STATE(2622), 1, + STATE(3266), 1, sym_comment, - STATE(3533), 1, - sym__if_statement_directive_body, - [102809] = 5, + ACTIONS(8528), 3, + anon_sym_ATdefault, + anon_sym_ATendswitch, + anon_sym_ATcase, + [129541] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2623), 1, + STATE(3267), 1, sym_comment, - STATE(3534), 1, + STATE(4368), 1, sym__if_statement_directive_body, - [102825] = 5, + [129557] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2624), 1, + STATE(3268), 1, sym_comment, - STATE(3535), 1, + STATE(4369), 1, sym__if_statement_directive_body, - [102841] = 5, + [129573] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2625), 1, + STATE(3269), 1, sym_comment, - STATE(3536), 1, + STATE(4370), 1, sym__if_statement_directive_body, - [102857] = 5, + [129589] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2626), 1, + STATE(3270), 1, sym_comment, - STATE(3537), 1, - sym__if_statement_directive_body, - [102873] = 5, + STATE(4371), 1, + sym__directive_body_with_parameter, + [129605] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2627), 1, + STATE(3271), 1, sym_comment, - STATE(3528), 1, + STATE(4372), 1, sym__directive_body_with_parameter, - [102889] = 5, + [129621] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7679), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(240), 1, sym__directive_parameter, - STATE(2628), 1, + STATE(3272), 1, sym_comment, - STATE(3527), 1, + STATE(4656), 1, sym__directive_body_with_parameter, - [102905] = 5, + [129637] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2629), 1, + STATE(3273), 1, sym_comment, - STATE(3503), 1, + STATE(4373), 1, sym__directive_body_with_parameter, - [102921] = 5, + [129653] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2630), 1, + STATE(3274), 1, sym_comment, - STATE(3542), 1, - sym__if_statement_directive_body, - [102937] = 5, + STATE(4374), 1, + sym__directive_body_with_parameter, + [129669] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2631), 1, + STATE(3275), 1, sym_comment, - STATE(3543), 1, - sym__if_statement_directive_body, - [102953] = 5, + STATE(4375), 1, + sym__directive_body_with_parameter, + [129685] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2632), 1, + STATE(3276), 1, sym_comment, - STATE(3544), 1, - sym__if_statement_directive_body, - [102969] = 5, + STATE(4376), 1, + sym__directive_body_with_parameter, + [129701] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2633), 1, + STATE(3277), 1, sym_comment, - STATE(3545), 1, + STATE(4377), 1, sym__directive_body_with_parameter, - [102985] = 5, + [129717] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2634), 1, + STATE(3278), 1, sym_comment, - STATE(3546), 1, + STATE(4378), 1, sym__directive_body_with_parameter, - [103001] = 5, + [129733] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2635), 1, + STATE(3279), 1, sym_comment, - STATE(3547), 1, + STATE(4379), 1, sym__directive_body_with_parameter, - [103017] = 5, + [129749] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2636), 1, + STATE(3280), 1, sym_comment, - STATE(3548), 1, + STATE(4380), 1, sym__directive_body_with_parameter, - [103033] = 5, + [129765] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2637), 1, + STATE(3281), 1, sym_comment, - STATE(3549), 1, - sym__directive_body_with_parameter, - [103049] = 5, + STATE(3948), 1, + sym__if_statement_directive_body, + [129781] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2638), 1, + STATE(3282), 1, sym_comment, - STATE(3552), 1, + STATE(4381), 1, sym__directive_body_with_parameter, - [103065] = 5, + [129797] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2639), 1, + STATE(3283), 1, sym_comment, - STATE(3556), 1, + STATE(4382), 1, sym__directive_body_with_parameter, - [103081] = 5, + [129813] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2640), 1, + STATE(3284), 1, sym_comment, - STATE(3568), 1, + STATE(4383), 1, sym__directive_body_with_parameter, - [103097] = 5, + [129829] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2641), 1, + STATE(3285), 1, sym_comment, - STATE(3569), 1, + STATE(4384), 1, sym__directive_body_with_parameter, - [103113] = 5, + [129845] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2642), 1, + STATE(3286), 1, sym_comment, - STATE(3386), 1, + STATE(3837), 1, sym__if_statement_directive_body, - [103129] = 5, + [129861] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2643), 1, + STATE(3287), 1, sym_comment, - STATE(3570), 1, - sym__directive_body_with_parameter, - [103145] = 5, + STATE(4385), 1, + sym__if_statement_directive_body, + [129877] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2644), 1, + STATE(3288), 1, sym_comment, - STATE(3571), 1, - sym__directive_body_with_parameter, - [103161] = 5, + STATE(4386), 1, + sym__if_statement_directive_body, + [129893] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2645), 1, + STATE(3289), 1, sym_comment, - STATE(3572), 1, + STATE(3987), 1, sym__directive_body_with_parameter, - [103177] = 5, + [129909] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2646), 1, + STATE(3290), 1, sym_comment, - STATE(3573), 1, + STATE(3986), 1, sym__directive_body_with_parameter, - [103193] = 5, + [129925] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2647), 1, + STATE(3291), 1, sym_comment, - STATE(3574), 1, + STATE(3985), 1, sym__directive_body_with_parameter, - [103209] = 5, + [129941] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2648), 1, + STATE(3292), 1, sym_comment, - STATE(3275), 1, + STATE(3984), 1, sym__directive_body_with_parameter, - [103225] = 5, + [129957] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2649), 1, + STATE(3293), 1, sym_comment, - STATE(3575), 1, - sym__if_statement_directive_body, - [103241] = 5, + STATE(3983), 1, + sym__directive_body_with_parameter, + [129973] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2650), 1, + STATE(3294), 1, sym_comment, - STATE(3607), 1, - sym__if_statement_directive_body, - [103257] = 5, + STATE(3982), 1, + sym__directive_body_with_parameter, + [129989] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2651), 1, + STATE(3295), 1, sym_comment, - STATE(3576), 1, + STATE(4676), 1, sym__if_statement_directive_body, - [103273] = 5, + [130005] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2652), 1, + STATE(3296), 1, sym_comment, - STATE(3657), 1, + STATE(3838), 1, sym__if_statement_directive_body, - [103289] = 5, + [130021] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2653), 1, + STATE(3297), 1, sym_comment, - STATE(3577), 1, - sym__if_statement_directive_body, - [103305] = 5, + STATE(3981), 1, + sym__directive_body_with_parameter, + [130037] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2654), 1, + STATE(3298), 1, sym_comment, - STATE(3578), 1, - sym__if_statement_directive_body, - [103321] = 5, + STATE(4629), 1, + sym__directive_body_with_parameter, + [130053] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2655), 1, + STATE(3299), 1, sym_comment, - STATE(3579), 1, - sym__if_statement_directive_body, - [103337] = 5, + STATE(4628), 1, + sym__directive_body_with_parameter, + [130069] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2656), 1, + STATE(3300), 1, sym_comment, - STATE(3658), 1, - sym__if_statement_directive_body, - [103353] = 5, + STATE(3980), 1, + sym__directive_body_with_parameter, + [130085] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2657), 1, + STATE(3301), 1, sym_comment, - STATE(3585), 1, - sym__if_statement_directive_body, - [103369] = 5, + STATE(3979), 1, + sym__directive_body_with_parameter, + [130101] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2658), 1, + STATE(3302), 1, sym_comment, - STATE(3586), 1, + STATE(3978), 1, sym__if_statement_directive_body, - [103385] = 5, + [130117] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2659), 1, + STATE(3303), 1, sym_comment, - STATE(3274), 1, - sym__directive_body_with_parameter, - [103401] = 5, + STATE(3977), 1, + sym__if_statement_directive_body, + [130133] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2660), 1, + STATE(3304), 1, sym_comment, - STATE(3273), 1, - sym__directive_body_with_parameter, - [103417] = 5, + STATE(3976), 1, + sym__if_statement_directive_body, + [130149] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2661), 1, + STATE(3305), 1, sym_comment, - STATE(3587), 1, + STATE(3972), 1, sym__if_statement_directive_body, - [103433] = 5, + [130165] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2662), 1, + STATE(3306), 1, sym_comment, - STATE(3381), 1, + STATE(4387), 1, sym__if_statement_directive_body, - [103449] = 5, + [130181] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2663), 1, + STATE(3307), 1, sym_comment, - STATE(3293), 1, + STATE(4388), 1, sym__if_statement_directive_body, - [103465] = 5, + [130197] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2664), 1, + STATE(3308), 1, sym_comment, - STATE(3292), 1, + STATE(3971), 1, sym__if_statement_directive_body, - [103481] = 5, + [130213] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2665), 1, + STATE(3309), 1, sym_comment, - STATE(3380), 1, + STATE(3970), 1, sym__if_statement_directive_body, - [103497] = 5, + [130229] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2666), 1, + STATE(3310), 1, sym_comment, - STATE(3379), 1, + STATE(4389), 1, sym__if_statement_directive_body, - [103513] = 5, + [130245] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2667), 1, + STATE(3311), 1, sym_comment, - STATE(3588), 1, - sym__directive_body_with_parameter, - [103529] = 5, + STATE(4390), 1, + sym__if_statement_directive_body, + [130261] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2668), 1, + STATE(3312), 1, sym_comment, - STATE(3589), 1, - sym__directive_body_with_parameter, - [103545] = 5, + STATE(4391), 1, + sym__if_statement_directive_body, + [130277] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2669), 1, + STATE(3313), 1, sym_comment, - STATE(3378), 1, + STATE(4392), 1, sym__if_statement_directive_body, - [103561] = 5, + [130293] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2670), 1, + STATE(3314), 1, sym_comment, - STATE(3590), 1, - sym__directive_body_with_parameter, - [103577] = 5, + STATE(3969), 1, + sym__if_statement_directive_body, + [130309] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2671), 1, + STATE(3315), 1, sym_comment, - STATE(3591), 1, - sym__directive_body_with_parameter, - [103593] = 5, + STATE(3968), 1, + sym__if_statement_directive_body, + [130325] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2672), 1, + STATE(3316), 1, sym_comment, - STATE(3592), 1, - sym__directive_body_with_parameter, - [103609] = 5, + STATE(3967), 1, + sym__if_statement_directive_body, + [130341] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2673), 1, + STATE(3317), 1, sym_comment, - STATE(3593), 1, - sym__directive_body_with_parameter, - [103625] = 5, + STATE(4396), 1, + sym__if_statement_directive_body, + [130357] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2674), 1, + STATE(3318), 1, sym_comment, - STATE(3594), 1, - sym__directive_body_with_parameter, - [103641] = 5, + STATE(4397), 1, + sym__if_statement_directive_body, + [130373] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2675), 1, + STATE(3319), 1, sym_comment, - STATE(3604), 1, - sym__directive_body_with_parameter, - [103657] = 5, + STATE(4398), 1, + sym__if_statement_directive_body, + [130389] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2676), 1, + STATE(3320), 1, sym_comment, - STATE(3608), 1, + STATE(4399), 1, sym__directive_body_with_parameter, - [103673] = 5, + [130405] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2677), 1, + STATE(3321), 1, sym_comment, - STATE(3609), 1, - sym__directive_body_with_parameter, - [103689] = 5, + STATE(3966), 1, + sym__if_statement_directive_body, + [130421] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2678), 1, + STATE(3322), 1, sym_comment, - STATE(3610), 1, + STATE(4400), 1, sym__directive_body_with_parameter, - [103705] = 5, + [130437] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2679), 1, + STATE(3323), 1, sym_comment, - STATE(3611), 1, + STATE(4401), 1, sym__directive_body_with_parameter, - [103721] = 5, + [130453] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2680), 1, + STATE(3324), 1, sym_comment, - STATE(3612), 1, + STATE(4402), 1, sym__directive_body_with_parameter, - [103737] = 5, + [130469] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2681), 1, + STATE(3325), 1, sym_comment, - STATE(3613), 1, + STATE(4403), 1, sym__directive_body_with_parameter, - [103753] = 5, + [130485] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2682), 1, + STATE(3326), 1, sym_comment, - STATE(3291), 1, - sym__if_statement_directive_body, - [103769] = 5, + STATE(4404), 1, + sym__directive_body_with_parameter, + [130501] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2683), 1, + STATE(3327), 1, sym_comment, - STATE(3614), 1, - sym__if_statement_directive_body, - [103785] = 5, + STATE(4405), 1, + sym__directive_body_with_parameter, + [130517] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2684), 1, + STATE(3328), 1, sym_comment, - STATE(3615), 1, - sym__if_statement_directive_body, - [103801] = 5, + STATE(4406), 1, + sym__directive_body_with_parameter, + [130533] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2685), 1, + STATE(3329), 1, sym_comment, - STATE(3616), 1, - sym__if_statement_directive_body, - [103817] = 5, + STATE(4407), 1, + sym__directive_body_with_parameter, + [130549] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2686), 1, + STATE(3330), 1, sym_comment, - STATE(3617), 1, + STATE(3965), 1, sym__if_statement_directive_body, - [103833] = 5, + [130565] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2687), 1, + STATE(3331), 1, sym_comment, - STATE(3618), 1, - sym__if_statement_directive_body, - [103849] = 5, + STATE(4408), 1, + sym__directive_body_with_parameter, + [130581] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2688), 1, + STATE(3332), 1, sym_comment, - STATE(3377), 1, - sym__if_statement_directive_body, - [103865] = 5, + STATE(4154), 1, + sym__directive_body_with_parameter, + [130597] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2689), 1, + STATE(3333), 1, sym_comment, - STATE(3290), 1, + STATE(4410), 1, sym__directive_body_with_parameter, - [103881] = 5, + [130613] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2690), 1, + STATE(3334), 1, sym_comment, - STATE(3376), 1, + STATE(4411), 1, sym__directive_body_with_parameter, - [103897] = 5, + [130629] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2691), 1, + STATE(3335), 1, sym_comment, - STATE(3581), 1, - sym__if_statement_directive_body, - [103913] = 5, + STATE(4412), 1, + sym__directive_body_with_parameter, + [130645] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2692), 1, + STATE(3336), 1, sym_comment, - STATE(3623), 1, - sym__if_statement_directive_body, - [103929] = 5, + STATE(4627), 1, + sym__directive_body_with_parameter, + [130661] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2693), 1, + STATE(3337), 1, sym_comment, - STATE(3624), 1, + STATE(4413), 1, sym__if_statement_directive_body, - [103945] = 5, + [130677] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2694), 1, + STATE(3338), 1, sym_comment, - STATE(3625), 1, - sym__if_statement_directive_body, - [103961] = 5, + STATE(4626), 1, + sym__directive_body_with_parameter, + [130693] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2695), 1, + STATE(3339), 1, sym_comment, - STATE(3626), 1, + STATE(3964), 1, sym__directive_body_with_parameter, - [103977] = 5, + [130709] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2696), 1, + STATE(3340), 1, sym_comment, - STATE(3375), 1, + STATE(3963), 1, sym__directive_body_with_parameter, - [103993] = 5, + [130725] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2697), 1, + STATE(3341), 1, sym_comment, - STATE(3627), 1, + STATE(3962), 1, sym__directive_body_with_parameter, - [104009] = 5, + [130741] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2698), 1, + STATE(3342), 1, sym_comment, - STATE(3374), 1, + STATE(3961), 1, sym__directive_body_with_parameter, - [104025] = 5, + [130757] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2699), 1, + STATE(3343), 1, sym_comment, - STATE(3628), 1, + STATE(3960), 1, sym__directive_body_with_parameter, - [104041] = 5, + [130773] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2700), 1, + STATE(3344), 1, sym_comment, - STATE(3629), 1, + STATE(3959), 1, sym__directive_body_with_parameter, - [104057] = 5, + [130789] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2701), 1, + STATE(3345), 1, sym_comment, - STATE(3630), 1, + STATE(3958), 1, sym__directive_body_with_parameter, - [104073] = 5, + [130805] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2702), 1, + STATE(3346), 1, sym_comment, - STATE(3636), 1, + STATE(3920), 1, sym__directive_body_with_parameter, - [104089] = 5, + [130821] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2703), 1, + STATE(3347), 1, sym_comment, - STATE(3373), 1, + STATE(4625), 1, sym__directive_body_with_parameter, - [104105] = 5, + [130837] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2704), 1, + STATE(3348), 1, sym_comment, - STATE(3637), 1, + STATE(4624), 1, sym__directive_body_with_parameter, - [104121] = 5, + [130853] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2705), 1, + STATE(3349), 1, sym_comment, - STATE(3289), 1, + STATE(3956), 1, sym__directive_body_with_parameter, - [104137] = 5, + [130869] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2706), 1, + STATE(3350), 1, sym_comment, - STATE(3288), 1, + STATE(3955), 1, sym__directive_body_with_parameter, - [104153] = 5, + [130885] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, - STATE(2707), 1, + STATE(3351), 1, sym_comment, - STATE(3649), 1, + STATE(4623), 1, sym__directive_body_with_parameter, - [104169] = 5, + [130901] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2708), 1, + STATE(3352), 1, sym_comment, - STATE(3650), 1, + STATE(3839), 1, sym__directive_body_with_parameter, - [104185] = 5, + [130917] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2709), 1, + STATE(3353), 1, sym_comment, - STATE(3651), 1, + STATE(3954), 1, sym__directive_body_with_parameter, - [104201] = 5, + [130933] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2710), 1, + STATE(3354), 1, sym_comment, - STATE(3652), 1, + STATE(3953), 1, sym__directive_body_with_parameter, - [104217] = 5, + [130949] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2711), 1, + STATE(3355), 1, sym_comment, - STATE(3372), 1, - sym__directive_body_with_parameter, - [104233] = 5, + STATE(4414), 1, + sym__if_statement_directive_body, + [130965] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2712), 1, + STATE(3356), 1, sym_comment, - STATE(3257), 1, - sym__directive_body_with_parameter, - [104249] = 5, + STATE(4415), 1, + sym__if_statement_directive_body, + [130981] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2713), 1, + STATE(3357), 1, sym_comment, - STATE(3654), 1, + STATE(3952), 1, sym__directive_body_with_parameter, - [104265] = 5, + [130997] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2714), 1, + STATE(3358), 1, sym_comment, - STATE(3655), 1, + STATE(3951), 1, sym__directive_body_with_parameter, - [104281] = 5, + [131013] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2715), 1, + STATE(3359), 1, sym_comment, - STATE(3269), 1, - sym__directive_body_with_parameter, - [104297] = 5, + STATE(4416), 1, + sym__if_statement_directive_body, + [131029] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2716), 1, + STATE(3360), 1, sym_comment, - STATE(3656), 1, + STATE(4417), 1, sym__if_statement_directive_body, - [104313] = 5, + [131045] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2717), 1, + STATE(3361), 1, sym_comment, - STATE(3660), 1, + STATE(4418), 1, sym__if_statement_directive_body, - [104329] = 5, + [131061] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2718), 1, + STATE(3362), 1, sym_comment, - STATE(3661), 1, + STATE(4419), 1, sym__if_statement_directive_body, - [104345] = 5, + [131077] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2719), 1, + STATE(3363), 1, sym_comment, - STATE(3662), 1, + STATE(4420), 1, sym__if_statement_directive_body, - [104361] = 5, + [131093] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2720), 1, + STATE(3364), 1, sym_comment, - STATE(3663), 1, + STATE(3950), 1, sym__if_statement_directive_body, - [104377] = 5, + [131109] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2721), 1, + STATE(3365), 1, sym_comment, - STATE(3668), 1, + STATE(3949), 1, sym__if_statement_directive_body, - [104393] = 5, + [131125] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2722), 1, + STATE(3366), 1, sym_comment, - STATE(3669), 1, + STATE(3931), 1, + sym__directive_body_with_parameter, + [131141] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7413), 1, + anon_sym_LPAREN, + STATE(109), 1, + sym__directive_parameter, + STATE(3367), 1, + sym_comment, + STATE(4424), 1, sym__if_statement_directive_body, - [104409] = 5, + [131157] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2723), 1, + STATE(3368), 1, sym_comment, - STATE(3601), 1, + STATE(4425), 1, sym__if_statement_directive_body, - [104425] = 5, + [131173] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2724), 1, + STATE(3369), 1, sym_comment, - STATE(3671), 1, - sym__directive_body_with_parameter, - [104441] = 5, + STATE(4426), 1, + sym__if_statement_directive_body, + [131189] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2725), 1, + STATE(3370), 1, sym_comment, - STATE(3672), 1, - sym__directive_body_with_parameter, - [104457] = 5, + STATE(3944), 1, + sym__if_statement_directive_body, + [131205] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2726), 1, + STATE(3371), 1, sym_comment, - STATE(3673), 1, + STATE(4427), 1, sym__directive_body_with_parameter, - [104473] = 5, + [131221] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2727), 1, + STATE(3372), 1, sym_comment, - STATE(3674), 1, + STATE(4428), 1, sym__directive_body_with_parameter, - [104489] = 5, + [131237] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2728), 1, + STATE(3373), 1, sym_comment, - STATE(3675), 1, + STATE(4429), 1, sym__directive_body_with_parameter, - [104505] = 5, + [131253] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2729), 1, + STATE(3374), 1, sym_comment, - STATE(3676), 1, + STATE(4430), 1, sym__directive_body_with_parameter, - [104521] = 5, + [131269] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2730), 1, + STATE(3375), 1, sym_comment, - STATE(3677), 1, + STATE(4431), 1, sym__directive_body_with_parameter, - [104537] = 5, + [131285] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2731), 1, + STATE(3376), 1, sym_comment, - STATE(3690), 1, + STATE(4394), 1, sym__directive_body_with_parameter, - [104553] = 5, + [131301] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2732), 1, + STATE(3377), 1, sym_comment, - STATE(3691), 1, + STATE(4433), 1, sym__directive_body_with_parameter, - [104569] = 5, + [131317] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2733), 1, + STATE(3378), 1, sym_comment, - STATE(3692), 1, + STATE(4434), 1, sym__directive_body_with_parameter, - [104585] = 5, + [131333] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2734), 1, + STATE(3379), 1, sym_comment, - STATE(3344), 1, + STATE(3943), 1, sym__if_statement_directive_body, - [104601] = 5, + [131349] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2735), 1, + STATE(3380), 1, sym_comment, - STATE(3693), 1, + STATE(4435), 1, sym__directive_body_with_parameter, - [104617] = 5, + [131365] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2736), 1, + STATE(3381), 1, sym_comment, - STATE(3694), 1, + STATE(4436), 1, sym__directive_body_with_parameter, - [104633] = 5, + [131381] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2737), 1, + STATE(3382), 1, sym_comment, - STATE(3695), 1, + STATE(4437), 1, sym__directive_body_with_parameter, - [104649] = 5, + [131397] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, - STATE(2738), 1, + STATE(3383), 1, sym_comment, - STATE(3696), 1, + STATE(4438), 1, sym__directive_body_with_parameter, - [104665] = 5, + [131413] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2739), 1, + STATE(3384), 1, sym_comment, - STATE(3279), 1, + STATE(4439), 1, sym__directive_body_with_parameter, - [104681] = 5, + [131429] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2740), 1, + STATE(3385), 1, sym_comment, - STATE(3697), 1, - sym__if_statement_directive_body, - [104697] = 5, + STATE(4440), 1, + sym__directive_body_with_parameter, + [131445] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2741), 1, + STATE(3386), 1, sym_comment, - STATE(3698), 1, - sym__if_statement_directive_body, - [104713] = 5, + STATE(4622), 1, + sym__directive_body_with_parameter, + [131461] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2742), 1, + STATE(3387), 1, sym_comment, - STATE(3370), 1, - sym__directive_body_with_parameter, - [104729] = 5, + STATE(3942), 1, + sym__if_statement_directive_body, + [131477] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2743), 1, + STATE(3388), 1, sym_comment, - STATE(3699), 1, + STATE(3941), 1, sym__if_statement_directive_body, - [104745] = 5, + [131493] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2744), 1, + STATE(3389), 1, sym_comment, - STATE(3357), 1, - sym__directive_body_with_parameter, - [104761] = 5, + STATE(3940), 1, + sym__if_statement_directive_body, + [131509] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2745), 1, + STATE(3390), 1, sym_comment, - STATE(3700), 1, + STATE(3939), 1, sym__if_statement_directive_body, - [104777] = 5, + [131525] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2746), 1, + STATE(3391), 1, sym_comment, - STATE(3701), 1, + STATE(3938), 1, sym__if_statement_directive_body, - [104793] = 5, + [131541] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2747), 1, + STATE(3392), 1, sym_comment, - STATE(3706), 1, + STATE(4621), 1, sym__if_statement_directive_body, - [104809] = 5, + [131557] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2748), 1, + STATE(3393), 1, sym_comment, - STATE(3707), 1, + STATE(3937), 1, sym__if_statement_directive_body, - [104825] = 5, + [131573] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2749), 1, + STATE(3394), 1, sym_comment, - STATE(3708), 1, + STATE(4620), 1, sym__if_statement_directive_body, - [104841] = 5, + [131589] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2750), 1, + STATE(3395), 1, sym_comment, - STATE(3712), 1, + STATE(3936), 1, sym__directive_body_with_parameter, - [104857] = 5, + [131605] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2751), 1, + STATE(3396), 1, sym_comment, - STATE(3280), 1, - sym__directive_body_with_parameter, - [104873] = 5, + STATE(4619), 1, + sym__if_statement_directive_body, + [131621] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2752), 1, + STATE(3397), 1, sym_comment, - STATE(3263), 1, - sym__directive_body_with_parameter, - [104889] = 5, + STATE(4672), 1, + sym__if_statement_directive_body, + [131637] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2753), 1, + STATE(3398), 1, sym_comment, - STATE(3713), 1, - sym__directive_body_with_parameter, - [104905] = 5, - ACTIONS(3), 1, + STATE(4671), 1, + sym__if_statement_directive_body, + [131653] = 4, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, - anon_sym_LPAREN, - STATE(418), 1, - sym__directive_parameter, - STATE(2754), 1, + ACTIONS(8530), 1, + anon_sym_LPAREN2, + STATE(3399), 1, sym_comment, - STATE(3714), 1, - sym__directive_body_with_parameter, - [104921] = 5, + ACTIONS(8522), 2, + anon_sym_RPAREN, + aux_sym_parameter_token1, + [131667] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2755), 1, + STATE(3400), 1, sym_comment, - STATE(3356), 1, + STATE(3935), 1, sym__directive_body_with_parameter, - [104937] = 5, + [131683] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2756), 1, + STATE(3401), 1, sym_comment, - STATE(3272), 1, + STATE(3934), 1, sym__directive_body_with_parameter, - [104953] = 5, + [131699] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2757), 1, + STATE(3402), 1, sym_comment, - STATE(3355), 1, + STATE(3933), 1, sym__directive_body_with_parameter, - [104969] = 5, + [131715] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2758), 1, + STATE(3403), 1, sym_comment, - STATE(3271), 1, + STATE(3932), 1, sym__directive_body_with_parameter, - [104985] = 5, + [131731] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2759), 1, + STATE(3404), 1, sym_comment, - STATE(3715), 1, - sym__directive_body_with_parameter, - [105001] = 5, + STATE(4441), 1, + sym__if_statement_directive_body, + [131747] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2760), 1, + STATE(3405), 1, sym_comment, - STATE(3716), 1, - sym__directive_body_with_parameter, - [105017] = 5, + STATE(4442), 1, + sym__if_statement_directive_body, + [131763] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, STATE(384), 1, sym__directive_parameter, - STATE(2761), 1, + STATE(3406), 1, sym_comment, - STATE(3270), 1, + STATE(3794), 1, sym__directive_body_with_parameter, - [105033] = 3, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2762), 1, - sym_comment, - ACTIONS(6506), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [105045] = 5, + [131779] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2763), 1, + STATE(3407), 1, sym_comment, - STATE(3719), 1, + STATE(3904), 1, sym__directive_body_with_parameter, - [105061] = 5, + [131795] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2764), 1, + STATE(3408), 1, sym_comment, - STATE(3720), 1, - sym__directive_body_with_parameter, - [105077] = 5, + STATE(4443), 1, + sym__if_statement_directive_body, + [131811] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2765), 1, + STATE(3409), 1, sym_comment, - STATE(3732), 1, - sym__directive_body_with_parameter, - [105093] = 5, + STATE(4444), 1, + sym__if_statement_directive_body, + [131827] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2766), 1, + STATE(3410), 1, sym_comment, - STATE(3733), 1, - sym__directive_body_with_parameter, - [105109] = 5, + STATE(4445), 1, + sym__if_statement_directive_body, + [131843] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2767), 1, + STATE(3411), 1, sym_comment, - STATE(3734), 1, - sym__directive_body_with_parameter, - [105125] = 5, + STATE(4446), 1, + sym__if_statement_directive_body, + [131859] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2768), 1, + STATE(3412), 1, sym_comment, - STATE(3735), 1, - sym__directive_body_with_parameter, - [105141] = 5, + STATE(4447), 1, + sym__if_statement_directive_body, + [131875] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2769), 1, + STATE(3413), 1, sym_comment, - STATE(3736), 1, - sym__directive_body_with_parameter, - [105157] = 5, + STATE(4448), 1, + sym__if_statement_directive_body, + [131891] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2770), 1, + STATE(3414), 1, sym_comment, - STATE(3737), 1, + STATE(3930), 1, sym__directive_body_with_parameter, - [105173] = 5, + [131907] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2771), 1, + STATE(3415), 1, sym_comment, - STATE(3738), 1, + STATE(3929), 1, sym__directive_body_with_parameter, - [105189] = 3, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(2772), 1, - sym_comment, - ACTIONS(6510), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [105201] = 5, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, - anon_sym_LPAREN, - STATE(106), 1, - sym__directive_parameter, - STATE(2773), 1, - sym_comment, - STATE(3739), 1, - sym__if_statement_directive_body, - [105217] = 5, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, - anon_sym_LPAREN, - STATE(93), 1, - sym__directive_parameter, - STATE(2774), 1, - sym_comment, - STATE(3740), 1, - sym__if_statement_directive_body, - [105233] = 5, + [131923] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2775), 1, + STATE(3416), 1, sym_comment, - STATE(3741), 1, - sym__if_statement_directive_body, - [105249] = 5, + STATE(3928), 1, + sym__directive_body_with_parameter, + [131939] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2776), 1, + STATE(3417), 1, sym_comment, - STATE(3742), 1, + STATE(4452), 1, sym__if_statement_directive_body, - [105265] = 5, + [131955] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2777), 1, + STATE(3418), 1, sym_comment, - STATE(3743), 1, + STATE(4453), 1, sym__if_statement_directive_body, - [105281] = 5, + [131971] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2778), 1, + STATE(3419), 1, sym_comment, - STATE(3748), 1, - sym__if_statement_directive_body, - [105297] = 5, + STATE(3819), 1, + sym__directive_body_with_parameter, + [131987] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2779), 1, + STATE(3420), 1, sym_comment, - STATE(3749), 1, + STATE(4454), 1, sym__if_statement_directive_body, - [105313] = 5, + [132003] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2780), 1, + STATE(3421), 1, sym_comment, - STATE(3268), 1, - sym__if_statement_directive_body, - [105329] = 5, + STATE(4455), 1, + sym__directive_body_with_parameter, + [132019] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2781), 1, + STATE(3422), 1, sym_comment, - STATE(3750), 1, - sym__if_statement_directive_body, - [105345] = 5, + STATE(4456), 1, + sym__directive_body_with_parameter, + [132035] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2782), 1, + STATE(3423), 1, sym_comment, - STATE(3751), 1, + STATE(4457), 1, sym__directive_body_with_parameter, - [105361] = 5, + [132051] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2783), 1, + STATE(3424), 1, sym_comment, - STATE(3752), 1, + STATE(4458), 1, sym__directive_body_with_parameter, - [105377] = 5, + [132067] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2784), 1, + STATE(3425), 1, sym_comment, - STATE(3753), 1, + STATE(4459), 1, sym__directive_body_with_parameter, - [105393] = 5, + [132083] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2785), 1, + STATE(3426), 1, sym_comment, - STATE(3754), 1, + STATE(4460), 1, sym__directive_body_with_parameter, - [105409] = 5, + [132099] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2786), 1, + STATE(3427), 1, sym_comment, - STATE(3755), 1, + STATE(4432), 1, sym__directive_body_with_parameter, - [105425] = 5, + [132115] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2787), 1, + STATE(3428), 1, sym_comment, - STATE(3757), 1, - sym__directive_body_with_parameter, - [105441] = 5, + STATE(4670), 1, + sym__if_statement_directive_body, + [132131] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2788), 1, + STATE(3429), 1, sym_comment, - STATE(3267), 1, - sym__if_statement_directive_body, - [105457] = 5, + STATE(4462), 1, + sym__directive_body_with_parameter, + [132147] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2789), 1, + STATE(3430), 1, sym_comment, - STATE(3758), 1, + STATE(4463), 1, sym__directive_body_with_parameter, - [105473] = 5, + [132163] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2790), 1, + STATE(3431), 1, sym_comment, - STATE(3354), 1, + STATE(4464), 1, sym__directive_body_with_parameter, - [105489] = 5, + [132179] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2791), 1, + STATE(3432), 1, sym_comment, - STATE(3768), 1, + STATE(4465), 1, sym__directive_body_with_parameter, - [105505] = 5, + [132195] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2792), 1, + STATE(3433), 1, sym_comment, - STATE(3769), 1, + STATE(4466), 1, sym__directive_body_with_parameter, - [105521] = 5, + [132211] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2793), 1, + STATE(3434), 1, sym_comment, - STATE(3770), 1, + STATE(4467), 1, sym__directive_body_with_parameter, - [105537] = 5, + [132227] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2794), 1, + STATE(3435), 1, sym_comment, - STATE(3771), 1, + STATE(4468), 1, sym__directive_body_with_parameter, - [105553] = 5, + [132243] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2795), 1, + STATE(3436), 1, sym_comment, - STATE(3772), 1, - sym__directive_body_with_parameter, - [105569] = 5, + STATE(4615), 1, + sym__if_statement_directive_body, + [132259] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2796), 1, + STATE(3437), 1, sym_comment, - STATE(3353), 1, + STATE(3818), 1, sym__directive_body_with_parameter, - [105585] = 5, + [132275] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2797), 1, + STATE(3438), 1, sym_comment, - STATE(3266), 1, - sym__if_statement_directive_body, - [105601] = 5, + STATE(3927), 1, + sym__directive_body_with_parameter, + [132291] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2798), 1, + STATE(3439), 1, sym_comment, - STATE(3265), 1, - sym__if_statement_directive_body, - [105617] = 5, + STATE(3817), 1, + sym__directive_body_with_parameter, + [132307] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2799), 1, + STATE(3440), 1, sym_comment, - STATE(3773), 1, + STATE(3816), 1, sym__directive_body_with_parameter, - [105633] = 5, + [132323] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2800), 1, + STATE(3441), 1, sym_comment, - STATE(3774), 1, + STATE(3815), 1, sym__directive_body_with_parameter, - [105649] = 5, + [132339] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2801), 1, + STATE(3442), 1, sym_comment, - STATE(3264), 1, - sym__if_statement_directive_body, - [105665] = 5, + STATE(3926), 1, + sym__directive_body_with_parameter, + [132355] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2802), 1, + STATE(3443), 1, sym_comment, - STATE(3775), 1, - sym__if_statement_directive_body, - [105681] = 5, + STATE(3925), 1, + sym__directive_body_with_parameter, + [132371] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2803), 1, + STATE(3444), 1, sym_comment, - STATE(3352), 1, + STATE(3924), 1, sym__directive_body_with_parameter, - [105697] = 5, + [132387] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2804), 1, + STATE(3445), 1, sym_comment, - STATE(3729), 1, + STATE(4669), 1, sym__if_statement_directive_body, - [105713] = 5, + [132403] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2805), 1, + STATE(3446), 1, sym_comment, - STATE(3777), 1, + STATE(4614), 1, sym__if_statement_directive_body, - [105729] = 5, + [132419] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2806), 1, + STATE(3447), 1, sym_comment, - STATE(3778), 1, - sym__if_statement_directive_body, - [105745] = 5, + STATE(3814), 1, + sym__directive_body_with_parameter, + [132435] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2807), 1, + STATE(3448), 1, sym_comment, - STATE(3779), 1, - sym__if_statement_directive_body, - [105761] = 5, + STATE(3813), 1, + sym__directive_body_with_parameter, + [132451] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2808), 1, + STATE(3449), 1, sym_comment, - STATE(3784), 1, - sym__if_statement_directive_body, - [105777] = 5, + STATE(3923), 1, + sym__directive_body_with_parameter, + [132467] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2809), 1, + STATE(3450), 1, sym_comment, - STATE(3785), 1, + STATE(3922), 1, sym__if_statement_directive_body, - [105793] = 5, + [132483] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2810), 1, + STATE(3451), 1, sym_comment, - STATE(3786), 1, + STATE(3921), 1, sym__if_statement_directive_body, - [105809] = 5, + [132499] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2811), 1, + STATE(3452), 1, sym_comment, - STATE(3787), 1, - sym__directive_body_with_parameter, - [105825] = 5, + STATE(3878), 1, + sym__if_statement_directive_body, + [132515] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2812), 1, + STATE(3453), 1, sym_comment, STATE(3788), 1, - sym__directive_body_with_parameter, - [105841] = 5, + sym__if_statement_directive_body, + [132531] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2813), 1, + STATE(3454), 1, sym_comment, - STATE(3789), 1, - sym__directive_body_with_parameter, - [105857] = 5, + STATE(4469), 1, + sym__if_statement_directive_body, + [132547] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2814), 1, + STATE(3455), 1, sym_comment, - STATE(3790), 1, + STATE(3812), 1, sym__directive_body_with_parameter, - [105873] = 5, + [132563] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2815), 1, + STATE(3456), 1, sym_comment, - STATE(3791), 1, - sym__directive_body_with_parameter, - [105889] = 5, + STATE(3916), 1, + sym__if_statement_directive_body, + [132579] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2816), 1, + STATE(3457), 1, sym_comment, - STATE(3794), 1, - sym__directive_body_with_parameter, - [105905] = 5, + STATE(4470), 1, + sym__if_statement_directive_body, + [132595] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2817), 1, + STATE(3458), 1, sym_comment, - STATE(3795), 1, - sym__directive_body_with_parameter, - [105921] = 5, + STATE(4471), 1, + sym__if_statement_directive_body, + [132611] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2818), 1, + STATE(3459), 1, sym_comment, - STATE(3807), 1, - sym__directive_body_with_parameter, - [105937] = 5, + STATE(4472), 1, + sym__if_statement_directive_body, + [132627] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2819), 1, + STATE(3460), 1, sym_comment, - STATE(3360), 1, - sym__directive_body_with_parameter, - [105953] = 5, + STATE(4473), 1, + sym__if_statement_directive_body, + [132643] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2820), 1, + STATE(3461), 1, sym_comment, - STATE(3809), 1, - sym__directive_body_with_parameter, - [105969] = 5, + STATE(4474), 1, + sym__if_statement_directive_body, + [132659] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2821), 1, + STATE(3462), 1, sym_comment, - STATE(3810), 1, - sym__directive_body_with_parameter, - [105985] = 5, + STATE(4475), 1, + sym__if_statement_directive_body, + [132675] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2822), 1, + STATE(3463), 1, sym_comment, - STATE(3811), 1, - sym__directive_body_with_parameter, - [106001] = 5, + STATE(4476), 1, + sym__if_statement_directive_body, + [132691] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2823), 1, + STATE(3464), 1, sym_comment, - STATE(3812), 1, - sym__directive_body_with_parameter, - [106017] = 5, + STATE(3915), 1, + sym__if_statement_directive_body, + [132707] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2824), 1, + STATE(3465), 1, sym_comment, - STATE(3813), 1, + STATE(3792), 1, sym__directive_body_with_parameter, - [106033] = 5, + [132723] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2825), 1, + STATE(3466), 1, sym_comment, - STATE(3361), 1, - sym__directive_body_with_parameter, - [106049] = 5, + STATE(3810), 1, + sym__if_statement_directive_body, + [132739] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2826), 1, + STATE(3467), 1, sym_comment, - STATE(3351), 1, - sym__directive_body_with_parameter, - [106065] = 5, + STATE(4480), 1, + sym__if_statement_directive_body, + [132755] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2827), 1, + STATE(3468), 1, sym_comment, - STATE(3814), 1, + STATE(3809), 1, sym__if_statement_directive_body, - [106081] = 5, + [132771] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2828), 1, + STATE(3469), 1, sym_comment, - STATE(3815), 1, + STATE(4481), 1, sym__if_statement_directive_body, - [106097] = 5, + [132787] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2829), 1, + STATE(3470), 1, sym_comment, - STATE(3816), 1, + STATE(4482), 1, sym__if_statement_directive_body, - [106113] = 5, + [132803] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2830), 1, + STATE(3471), 1, sym_comment, - STATE(3817), 1, - sym__if_statement_directive_body, - [106129] = 5, + STATE(4483), 1, + sym__directive_body_with_parameter, + [132819] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2831), 1, + STATE(3472), 1, sym_comment, - STATE(3818), 1, - sym__if_statement_directive_body, - [106145] = 5, + STATE(4484), 1, + sym__directive_body_with_parameter, + [132835] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2832), 1, + STATE(3473), 1, sym_comment, - STATE(3823), 1, - sym__if_statement_directive_body, - [106161] = 5, + STATE(4485), 1, + sym__directive_body_with_parameter, + [132851] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2833), 1, + STATE(3474), 1, sym_comment, - STATE(3824), 1, - sym__if_statement_directive_body, - [106177] = 5, + STATE(4486), 1, + sym__directive_body_with_parameter, + [132867] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2834), 1, + STATE(3475), 1, sym_comment, - STATE(3350), 1, - sym__if_statement_directive_body, - [106193] = 5, + STATE(4487), 1, + sym__directive_body_with_parameter, + [132883] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2835), 1, + STATE(3476), 1, sym_comment, - STATE(3349), 1, - sym__if_statement_directive_body, - [106209] = 5, + STATE(4488), 1, + sym__directive_body_with_parameter, + [132899] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2836), 1, + STATE(3477), 1, sym_comment, - STATE(3348), 1, + STATE(3914), 1, sym__if_statement_directive_body, - [106225] = 5, + [132915] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2837), 1, + STATE(3478), 1, sym_comment, - STATE(3825), 1, - sym__if_statement_directive_body, - [106241] = 5, + STATE(4489), 1, + sym__directive_body_with_parameter, + [132931] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2838), 1, + STATE(3479), 1, sym_comment, - STATE(3826), 1, + STATE(4490), 1, sym__directive_body_with_parameter, - [106257] = 5, + [132947] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2839), 1, + STATE(3480), 1, sym_comment, - STATE(3827), 1, + STATE(4491), 1, sym__directive_body_with_parameter, - [106273] = 5, + [132963] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2840), 1, + STATE(3481), 1, sym_comment, - STATE(3828), 1, + STATE(4492), 1, sym__directive_body_with_parameter, - [106289] = 5, + [132979] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2841), 1, + STATE(3482), 1, sym_comment, - STATE(3829), 1, + STATE(4493), 1, sym__directive_body_with_parameter, - [106305] = 5, + [132995] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2842), 1, + STATE(3483), 1, sym_comment, - STATE(3830), 1, + STATE(4494), 1, sym__directive_body_with_parameter, - [106321] = 5, + [133011] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2843), 1, + STATE(3484), 1, sym_comment, - STATE(3362), 1, + STATE(4495), 1, sym__directive_body_with_parameter, - [106337] = 5, + [133027] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2844), 1, + STATE(3485), 1, sym_comment, - STATE(3363), 1, - sym__directive_body_with_parameter, - [106353] = 5, + STATE(3913), 1, + sym__if_statement_directive_body, + [133043] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2845), 1, + STATE(3486), 1, sym_comment, - STATE(3833), 1, - sym__directive_body_with_parameter, - [106369] = 5, + STATE(3808), 1, + sym__if_statement_directive_body, + [133059] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2846), 1, + STATE(3487), 1, sym_comment, - STATE(3834), 1, - sym__directive_body_with_parameter, - [106385] = 5, + STATE(3912), 1, + sym__if_statement_directive_body, + [133075] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2847), 1, + STATE(3488), 1, sym_comment, - STATE(3842), 1, - sym__directive_body_with_parameter, - [106401] = 5, + STATE(3804), 1, + sym__if_statement_directive_body, + [133091] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2848), 1, + STATE(3489), 1, sym_comment, - STATE(3659), 1, + STATE(3803), 1, sym__if_statement_directive_body, - [106417] = 5, + [133107] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2849), 1, + STATE(3490), 1, sym_comment, - STATE(3683), 1, - sym__directive_body_with_parameter, - [106433] = 5, + STATE(3802), 1, + sym__if_statement_directive_body, + [133123] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2850), 1, + STATE(3491), 1, sym_comment, - STATE(3364), 1, - sym__directive_body_with_parameter, - [106449] = 5, + STATE(3911), 1, + sym__if_statement_directive_body, + [133139] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2851), 1, + STATE(3492), 1, sym_comment, - STATE(3843), 1, - sym__directive_body_with_parameter, - [106465] = 5, + STATE(3910), 1, + sym__if_statement_directive_body, + [133155] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2852), 1, + STATE(3493), 1, sym_comment, - STATE(3844), 1, - sym__directive_body_with_parameter, - [106481] = 5, + STATE(3909), 1, + sym__if_statement_directive_body, + [133171] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2853), 1, + STATE(3494), 1, sym_comment, - STATE(3365), 1, + STATE(4613), 1, sym__if_statement_directive_body, - [106497] = 5, + [133187] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2854), 1, + STATE(3495), 1, sym_comment, - STATE(3684), 1, - sym__directive_body_with_parameter, - [106513] = 5, + STATE(4612), 1, + sym__if_statement_directive_body, + [133203] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2855), 1, + STATE(3496), 1, sym_comment, - STATE(3845), 1, - sym__directive_body_with_parameter, - [106529] = 5, + STATE(3801), 1, + sym__if_statement_directive_body, + [133219] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2856), 1, + STATE(3497), 1, sym_comment, - STATE(3846), 1, - sym__directive_body_with_parameter, - [106545] = 5, + STATE(3800), 1, + sym__if_statement_directive_body, + [133235] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2857), 1, + STATE(3498), 1, sym_comment, - STATE(3847), 1, + STATE(4560), 1, + sym__if_statement_directive_body, + [133251] = 5, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(7695), 1, + anon_sym_LPAREN, + STATE(403), 1, + sym__directive_parameter, + STATE(3499), 1, + sym_comment, + STATE(3908), 1, sym__directive_body_with_parameter, - [106561] = 5, + [133267] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2858), 1, + STATE(3500), 1, sym_comment, - STATE(3848), 1, + STATE(3907), 1, sym__directive_body_with_parameter, - [106577] = 5, + [133283] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2859), 1, + STATE(3501), 1, sym_comment, - STATE(3366), 1, - sym__if_statement_directive_body, - [106593] = 5, + STATE(3906), 1, + sym__directive_body_with_parameter, + [133299] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2860), 1, + STATE(3502), 1, sym_comment, - STATE(3849), 1, - sym__if_statement_directive_body, - [106609] = 5, + STATE(4496), 1, + sym__directive_body_with_parameter, + [133315] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2861), 1, + STATE(3503), 1, sym_comment, - STATE(3850), 1, + STATE(4610), 1, sym__if_statement_directive_body, - [106625] = 5, + [133331] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2862), 1, + STATE(3504), 1, sym_comment, - STATE(3851), 1, + STATE(3799), 1, sym__if_statement_directive_body, - [106641] = 5, + [133347] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2863), 1, + STATE(3505), 1, sym_comment, - STATE(3852), 1, + STATE(3798), 1, sym__if_statement_directive_body, - [106657] = 5, + [133363] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2864), 1, + STATE(3506), 1, sym_comment, - STATE(3853), 1, + STATE(4497), 1, sym__if_statement_directive_body, - [106673] = 5, + [133379] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2865), 1, + STATE(3507), 1, sym_comment, - STATE(3319), 1, - sym__directive_body_with_parameter, - [106689] = 5, + STATE(4498), 1, + sym__if_statement_directive_body, + [133395] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2866), 1, + STATE(3508), 1, sym_comment, - STATE(3343), 1, + STATE(4499), 1, sym__if_statement_directive_body, - [106705] = 5, + [133411] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2867), 1, + STATE(3509), 1, sym_comment, - STATE(3858), 1, + STATE(4500), 1, sym__if_statement_directive_body, - [106721] = 5, + [133427] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2868), 1, + STATE(3510), 1, sym_comment, - STATE(3859), 1, + STATE(4501), 1, sym__if_statement_directive_body, - [106737] = 5, + [133443] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2869), 1, + STATE(3511), 1, sym_comment, - STATE(3860), 1, + STATE(4502), 1, sym__if_statement_directive_body, - [106753] = 5, + [133459] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2870), 1, + STATE(3512), 1, sym_comment, - STATE(3861), 1, - sym__directive_body_with_parameter, - [106769] = 5, + STATE(4503), 1, + sym__if_statement_directive_body, + [133475] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2871), 1, + STATE(3513), 1, sym_comment, - STATE(3862), 1, - sym__directive_body_with_parameter, - [106785] = 5, + STATE(4504), 1, + sym__if_statement_directive_body, + [133491] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2872), 1, + STATE(3514), 1, sym_comment, - STATE(3342), 1, + STATE(3797), 1, sym__if_statement_directive_body, - [106801] = 5, + [133507] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2873), 1, + STATE(3515), 1, sym_comment, - STATE(3863), 1, - sym__directive_body_with_parameter, - [106817] = 5, + STATE(4609), 1, + sym__if_statement_directive_body, + [133523] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2874), 1, + STATE(3516), 1, sym_comment, - STATE(3864), 1, + STATE(3796), 1, sym__directive_body_with_parameter, - [106833] = 5, + [133539] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2875), 1, + STATE(3517), 1, sym_comment, - STATE(3865), 1, + STATE(3795), 1, sym__directive_body_with_parameter, - [106849] = 5, + [133555] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2876), 1, + STATE(3518), 1, sym_comment, - STATE(3868), 1, - sym__directive_body_with_parameter, - [106865] = 5, + STATE(4508), 1, + sym__if_statement_directive_body, + [133571] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2877), 1, + STATE(3519), 1, sym_comment, - STATE(3869), 1, - sym__directive_body_with_parameter, - [106881] = 5, + STATE(4509), 1, + sym__if_statement_directive_body, + [133587] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2878), 1, + STATE(3520), 1, sym_comment, - STATE(3881), 1, - sym__directive_body_with_parameter, - [106897] = 5, + STATE(4510), 1, + sym__if_statement_directive_body, + [133603] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2879), 1, + STATE(3521), 1, sym_comment, - STATE(3882), 1, + STATE(4511), 1, sym__directive_body_with_parameter, - [106913] = 5, + [133619] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2880), 1, + STATE(3522), 1, sym_comment, - STATE(3341), 1, - sym__if_statement_directive_body, - [106929] = 5, + STATE(4512), 1, + sym__directive_body_with_parameter, + [133635] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2881), 1, + STATE(3523), 1, sym_comment, - STATE(3883), 1, + STATE(4513), 1, sym__directive_body_with_parameter, - [106945] = 5, + [133651] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2882), 1, + STATE(3524), 1, sym_comment, - STATE(3340), 1, - sym__if_statement_directive_body, - [106961] = 5, + STATE(4514), 1, + sym__directive_body_with_parameter, + [133667] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2883), 1, + STATE(3525), 1, sym_comment, - STATE(3884), 1, + STATE(4515), 1, sym__directive_body_with_parameter, - [106977] = 5, + [133683] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2884), 1, + STATE(3526), 1, sym_comment, - STATE(3885), 1, + STATE(3905), 1, sym__directive_body_with_parameter, - [106993] = 5, + [133699] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2885), 1, + STATE(3527), 1, sym_comment, - STATE(3886), 1, + STATE(4516), 1, sym__directive_body_with_parameter, - [107009] = 5, + [133715] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2886), 1, + STATE(3528), 1, sym_comment, - STATE(3411), 1, + STATE(4517), 1, sym__directive_body_with_parameter, - [107025] = 5, + [133731] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2887), 1, + STATE(3529), 1, sym_comment, - STATE(3367), 1, - sym__if_statement_directive_body, - [107041] = 5, + STATE(4518), 1, + sym__directive_body_with_parameter, + [133747] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2888), 1, + STATE(3530), 1, sym_comment, - STATE(3888), 1, - sym__if_statement_directive_body, - [107057] = 5, + STATE(4519), 1, + sym__directive_body_with_parameter, + [133763] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2889), 1, + STATE(3531), 1, sym_comment, - STATE(3605), 1, + STATE(4520), 1, sym__directive_body_with_parameter, - [107073] = 5, + [133779] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2890), 1, + STATE(3532), 1, sym_comment, - STATE(3711), 1, + STATE(4521), 1, sym__directive_body_with_parameter, - [107089] = 5, + [133795] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2891), 1, + STATE(3533), 1, sym_comment, - STATE(3394), 1, - sym__if_statement_directive_body, - [107105] = 5, + STATE(4522), 1, + sym__directive_body_with_parameter, + [133811] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2892), 1, + STATE(3534), 1, sym_comment, - STATE(3889), 1, - sym__if_statement_directive_body, - [107121] = 5, + STATE(3874), 1, + sym__directive_body_with_parameter, + [133827] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2893), 1, + STATE(3535), 1, sym_comment, - STATE(3890), 1, - sym__if_statement_directive_body, - [107137] = 5, + STATE(4658), 1, + sym__directive_body_with_parameter, + [133843] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2894), 1, + STATE(3536), 1, sym_comment, - STATE(3891), 1, - sym__if_statement_directive_body, - [107153] = 5, + STATE(3903), 1, + sym__directive_body_with_parameter, + [133859] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2895), 1, + STATE(3537), 1, sym_comment, - STATE(3339), 1, + STATE(3902), 1, sym__directive_body_with_parameter, - [107169] = 5, + [133875] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2896), 1, + STATE(3538), 1, sym_comment, - STATE(3892), 1, - sym__if_statement_directive_body, - [107185] = 5, + STATE(3901), 1, + sym__directive_body_with_parameter, + [133891] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2897), 1, + STATE(3539), 1, sym_comment, - STATE(3897), 1, - sym__if_statement_directive_body, - [107201] = 5, + STATE(4608), 1, + sym__directive_body_with_parameter, + [133907] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2898), 1, + STATE(3540), 1, sym_comment, - STATE(3898), 1, - sym__if_statement_directive_body, - [107217] = 5, + STATE(4607), 1, + sym__directive_body_with_parameter, + [133923] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2899), 1, + STATE(3541), 1, sym_comment, - STATE(3899), 1, - sym__if_statement_directive_body, - [107233] = 5, + STATE(3900), 1, + sym__directive_body_with_parameter, + [133939] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2900), 1, + STATE(3542), 1, sym_comment, - STATE(3900), 1, + STATE(3899), 1, sym__directive_body_with_parameter, - [107249] = 5, + [133955] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2901), 1, + STATE(3543), 1, sym_comment, - STATE(3901), 1, + STATE(4606), 1, sym__directive_body_with_parameter, - [107265] = 5, + [133971] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2902), 1, + STATE(3544), 1, sym_comment, - STATE(3902), 1, - sym__directive_body_with_parameter, - [107281] = 5, + STATE(4668), 1, + sym__if_statement_directive_body, + [133987] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2903), 1, + STATE(3545), 1, sym_comment, - STATE(3903), 1, + STATE(3793), 1, sym__directive_body_with_parameter, - [107297] = 5, + [134003] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2904), 1, + STATE(3546), 1, sym_comment, - STATE(3904), 1, + STATE(3789), 1, sym__directive_body_with_parameter, - [107313] = 5, + [134019] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2905), 1, + STATE(3547), 1, sym_comment, - STATE(3907), 1, + STATE(3898), 1, sym__directive_body_with_parameter, - [107329] = 5, + [134035] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2906), 1, + STATE(3548), 1, sym_comment, - STATE(3908), 1, + STATE(3897), 1, sym__directive_body_with_parameter, - [107345] = 5, + [134051] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, STATE(271), 1, sym__directive_parameter, - STATE(2907), 1, + STATE(3549), 1, sym_comment, - STATE(3916), 1, + STATE(3896), 1, sym__directive_body_with_parameter, - [107361] = 5, + [134067] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2908), 1, + STATE(3550), 1, sym_comment, - STATE(3917), 1, + STATE(3895), 1, sym__directive_body_with_parameter, - [107377] = 5, + [134083] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2909), 1, + STATE(3551), 1, sym_comment, - STATE(3918), 1, + STATE(4523), 1, sym__directive_body_with_parameter, - [107393] = 5, + [134099] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2910), 1, + STATE(3552), 1, sym_comment, - STATE(3919), 1, + STATE(4524), 1, sym__directive_body_with_parameter, - [107409] = 5, + [134115] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2911), 1, + STATE(3553), 1, sym_comment, - STATE(3920), 1, - sym__directive_body_with_parameter, - [107425] = 5, + STATE(3894), 1, + sym__if_statement_directive_body, + [134131] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2912), 1, + STATE(3554), 1, sym_comment, - STATE(3921), 1, - sym__directive_body_with_parameter, - [107441] = 5, + STATE(3893), 1, + sym__if_statement_directive_body, + [134147] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2913), 1, + STATE(3555), 1, sym_comment, - STATE(3922), 1, - sym__directive_body_with_parameter, - [107457] = 5, + STATE(4667), 1, + sym__if_statement_directive_body, + [134163] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2914), 1, + STATE(3556), 1, sym_comment, - STATE(3395), 1, + STATE(4525), 1, sym__if_statement_directive_body, - [107473] = 5, + [134179] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2915), 1, + STATE(3557), 1, sym_comment, - STATE(3923), 1, + STATE(4526), 1, sym__if_statement_directive_body, - [107489] = 5, + [134195] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2916), 1, + STATE(3558), 1, sym_comment, - STATE(3924), 1, + STATE(4527), 1, sym__if_statement_directive_body, - [107505] = 5, + [134211] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2917), 1, + STATE(3559), 1, sym_comment, - STATE(3925), 1, + STATE(4528), 1, sym__if_statement_directive_body, - [107521] = 5, + [134227] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2918), 1, + STATE(3560), 1, sym_comment, - STATE(3338), 1, - sym__directive_body_with_parameter, - [107537] = 5, + STATE(4529), 1, + sym__if_statement_directive_body, + [134243] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2919), 1, + STATE(3561), 1, sym_comment, - STATE(3926), 1, + STATE(4530), 1, sym__if_statement_directive_body, - [107553] = 5, + [134259] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2920), 1, + STATE(3562), 1, sym_comment, - STATE(3927), 1, + STATE(4531), 1, sym__if_statement_directive_body, - [107569] = 5, + [134275] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2921), 1, + STATE(3563), 1, sym_comment, - STATE(3932), 1, + STATE(4532), 1, sym__if_statement_directive_body, - [107585] = 5, + [134291] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2922), 1, + STATE(3564), 1, sym_comment, - STATE(3933), 1, + STATE(3892), 1, sym__if_statement_directive_body, - [107601] = 5, + [134307] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2923), 1, + STATE(3565), 1, sym_comment, - STATE(3934), 1, + STATE(3888), 1, sym__if_statement_directive_body, - [107617] = 5, + [134323] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2924), 1, + STATE(3566), 1, sym_comment, - STATE(3935), 1, - sym__directive_body_with_parameter, - [107633] = 5, + STATE(3887), 1, + sym__if_statement_directive_body, + [134339] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2925), 1, + STATE(3567), 1, sym_comment, - STATE(3936), 1, - sym__directive_body_with_parameter, - [107649] = 5, + STATE(3886), 1, + sym__if_statement_directive_body, + [134355] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2926), 1, + STATE(3568), 1, sym_comment, - STATE(3337), 1, - sym__directive_body_with_parameter, - [107665] = 5, + STATE(4536), 1, + sym__if_statement_directive_body, + [134371] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2927), 1, + STATE(3569), 1, sym_comment, - STATE(3937), 1, - sym__directive_body_with_parameter, - [107681] = 5, + STATE(4537), 1, + sym__if_statement_directive_body, + [134387] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2928), 1, + STATE(3570), 1, sym_comment, - STATE(3287), 1, - sym__directive_body_with_parameter, - [107697] = 5, + STATE(4538), 1, + sym__if_statement_directive_body, + [134403] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2929), 1, + STATE(3571), 1, sym_comment, - STATE(3938), 1, + STATE(4539), 1, sym__directive_body_with_parameter, - [107713] = 5, + [134419] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2930), 1, + STATE(3572), 1, sym_comment, - STATE(3939), 1, + STATE(4540), 1, sym__directive_body_with_parameter, - [107729] = 5, + [134435] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2931), 1, + STATE(3573), 1, sym_comment, - STATE(3942), 1, + STATE(4541), 1, sym__directive_body_with_parameter, - [107745] = 5, + [134451] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2932), 1, + STATE(3574), 1, sym_comment, - STATE(3943), 1, + STATE(4542), 1, sym__directive_body_with_parameter, - [107761] = 5, + [134467] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2933), 1, + STATE(3575), 1, sym_comment, - STATE(3944), 1, - sym__directive_body_with_parameter, - [107777] = 5, + STATE(3885), 1, + sym__if_statement_directive_body, + [134483] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2934), 1, + STATE(3576), 1, sym_comment, - STATE(3945), 1, + STATE(4461), 1, sym__directive_body_with_parameter, - [107793] = 5, + [134499] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2935), 1, + STATE(3577), 1, sym_comment, - STATE(3398), 1, - sym__if_statement_directive_body, - [107809] = 5, + STATE(4544), 1, + sym__directive_body_with_parameter, + [134515] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2936), 1, + STATE(3578), 1, sym_comment, - STATE(3399), 1, - sym__if_statement_directive_body, - [107825] = 5, + STATE(4545), 1, + sym__directive_body_with_parameter, + [134531] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2937), 1, + STATE(3579), 1, sym_comment, - STATE(3946), 1, + STATE(4546), 1, sym__directive_body_with_parameter, - [107841] = 5, + [134547] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2938), 1, + STATE(3580), 1, sym_comment, - STATE(3947), 1, + STATE(4547), 1, sym__directive_body_with_parameter, - [107857] = 5, + [134563] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2939), 1, + STATE(3581), 1, sym_comment, - STATE(3948), 1, + STATE(4548), 1, sym__directive_body_with_parameter, - [107873] = 5, + [134579] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2940), 1, + STATE(3582), 1, sym_comment, - STATE(3949), 1, + STATE(4549), 1, sym__directive_body_with_parameter, - [107889] = 5, + [134595] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2941), 1, + STATE(3583), 1, sym_comment, - STATE(3335), 1, - sym__directive_body_with_parameter, - [107905] = 5, + STATE(3884), 1, + sym__if_statement_directive_body, + [134611] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2942), 1, + STATE(3584), 1, sym_comment, - STATE(3334), 1, - sym__directive_body_with_parameter, - [107921] = 5, + STATE(3883), 1, + sym__if_statement_directive_body, + [134627] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2943), 1, + STATE(3585), 1, sym_comment, - STATE(3950), 1, - sym__directive_body_with_parameter, - [107937] = 5, + STATE(3882), 1, + sym__if_statement_directive_body, + [134643] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2944), 1, + STATE(3586), 1, sym_comment, - STATE(3432), 1, + STATE(3881), 1, sym__if_statement_directive_body, - [107953] = 5, + [134659] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2945), 1, + STATE(3587), 1, sym_comment, - STATE(3401), 1, + STATE(4605), 1, sym__directive_body_with_parameter, - [107969] = 5, + [134675] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2946), 1, + STATE(3588), 1, sym_comment, - STATE(3402), 1, + STATE(3880), 1, sym__directive_body_with_parameter, - [107985] = 5, + [134691] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2947), 1, + STATE(3589), 1, sym_comment, - STATE(3951), 1, - sym__if_statement_directive_body, - [108001] = 5, + STATE(3879), 1, + sym__directive_body_with_parameter, + [134707] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2948), 1, + STATE(3590), 1, sym_comment, - STATE(3952), 1, - sym__if_statement_directive_body, - [108017] = 5, + STATE(3811), 1, + sym__directive_body_with_parameter, + [134723] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(372), 1, sym__directive_parameter, - STATE(2949), 1, + STATE(3591), 1, sym_comment, - STATE(3953), 1, - sym__if_statement_directive_body, - [108033] = 5, + STATE(3877), 1, + sym__directive_body_with_parameter, + [134739] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2950), 1, + STATE(3592), 1, sym_comment, - STATE(3954), 1, - sym__if_statement_directive_body, - [108049] = 5, + STATE(4604), 1, + sym__directive_body_with_parameter, + [134755] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2951), 1, + STATE(3593), 1, sym_comment, - STATE(3955), 1, - sym__if_statement_directive_body, - [108065] = 4, - ACTIONS(6960), 1, + STATE(3840), 1, + sym__directive_body_with_parameter, + [134771] = 5, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7297), 1, - anon_sym_LPAREN2, - STATE(2952), 1, + ACTIONS(7687), 1, + anon_sym_LPAREN, + STATE(361), 1, + sym__directive_parameter, + STATE(3594), 1, sym_comment, - ACTIONS(7295), 2, - anon_sym_RPAREN, - aux_sym_parameter_token1, - [108079] = 5, + STATE(3876), 1, + sym__directive_body_with_parameter, + [134787] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2953), 1, + STATE(3595), 1, sym_comment, - STATE(3959), 1, - sym__if_statement_directive_body, - [108095] = 5, + STATE(3875), 1, + sym__directive_body_with_parameter, + [134803] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2954), 1, + STATE(3596), 1, sym_comment, - STATE(3960), 1, - sym__if_statement_directive_body, - [108111] = 5, + STATE(3848), 1, + sym__directive_body_with_parameter, + [134819] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2955), 1, + STATE(3597), 1, sym_comment, - STATE(3961), 1, - sym__if_statement_directive_body, - [108127] = 5, + STATE(3841), 1, + sym__directive_body_with_parameter, + [134835] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2956), 1, + STATE(3598), 1, sym_comment, - STATE(3962), 1, + STATE(3842), 1, sym__directive_body_with_parameter, - [108143] = 5, + [134851] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2957), 1, + STATE(3599), 1, sym_comment, - STATE(3963), 1, + STATE(3873), 1, sym__directive_body_with_parameter, - [108159] = 5, + [134867] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(384), 1, sym__directive_parameter, - STATE(2958), 1, + STATE(3600), 1, sym_comment, - STATE(3403), 1, + STATE(4550), 1, sym__directive_body_with_parameter, - [108175] = 5, + [134883] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(395), 1, sym__directive_parameter, - STATE(2959), 1, + STATE(3601), 1, sym_comment, - STATE(3964), 1, + STATE(4551), 1, sym__directive_body_with_parameter, - [108191] = 5, + [134899] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2960), 1, + STATE(3602), 1, sym_comment, - STATE(3965), 1, + STATE(3872), 1, sym__directive_body_with_parameter, - [108207] = 5, + [134915] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2961), 1, + STATE(3603), 1, sym_comment, - STATE(3966), 1, + STATE(3790), 1, sym__directive_body_with_parameter, - [108223] = 5, + [134931] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(403), 1, sym__directive_parameter, - STATE(2962), 1, + STATE(3604), 1, sym_comment, - STATE(3967), 1, + STATE(4552), 1, sym__directive_body_with_parameter, - [108239] = 5, + [134947] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2963), 1, + STATE(3605), 1, sym_comment, - STATE(3968), 1, + STATE(3843), 1, sym__directive_body_with_parameter, - [108255] = 5, + [134963] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(74), 1, sym__directive_parameter, - STATE(2964), 1, + STATE(3606), 1, sym_comment, - STATE(3333), 1, - sym__directive_body_with_parameter, - [108271] = 5, + STATE(4553), 1, + sym__if_statement_directive_body, + [134979] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2965), 1, + STATE(3607), 1, sym_comment, - STATE(3969), 1, - sym__directive_body_with_parameter, - [108287] = 5, + STATE(4554), 1, + sym__if_statement_directive_body, + [134995] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2966), 1, + STATE(3608), 1, sym_comment, - STATE(3970), 1, - sym__directive_body_with_parameter, - [108303] = 5, + STATE(4555), 1, + sym__if_statement_directive_body, + [135011] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2967), 1, + STATE(3609), 1, sym_comment, - STATE(3971), 1, - sym__directive_body_with_parameter, - [108319] = 5, + STATE(4556), 1, + sym__if_statement_directive_body, + [135027] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2968), 1, + STATE(3610), 1, sym_comment, - STATE(3972), 1, - sym__directive_body_with_parameter, - [108335] = 5, + STATE(4557), 1, + sym__if_statement_directive_body, + [135043] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2969), 1, + STATE(3611), 1, sym_comment, - STATE(3973), 1, - sym__directive_body_with_parameter, - [108351] = 5, + STATE(4558), 1, + sym__if_statement_directive_body, + [135059] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2970), 1, + STATE(3612), 1, sym_comment, - STATE(3974), 1, - sym__directive_body_with_parameter, - [108367] = 5, + STATE(4559), 1, + sym__if_statement_directive_body, + [135075] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2971), 1, + STATE(3613), 1, sym_comment, - STATE(3975), 1, - sym__directive_body_with_parameter, - [108383] = 5, + STATE(4543), 1, + sym__if_statement_directive_body, + [135091] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2972), 1, + STATE(3614), 1, sym_comment, - STATE(3325), 1, + STATE(3871), 1, sym__directive_body_with_parameter, - [108399] = 5, + [135107] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2973), 1, + STATE(3615), 1, sym_comment, - STATE(3324), 1, + STATE(3870), 1, sym__directive_body_with_parameter, - [108415] = 5, + [135123] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2974), 1, + STATE(3616), 1, sym_comment, - STATE(3321), 1, + STATE(3869), 1, sym__directive_body_with_parameter, - [108431] = 5, + [135139] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2975), 1, + STATE(3617), 1, sym_comment, - STATE(3404), 1, + STATE(3868), 1, sym__directive_body_with_parameter, - [108447] = 5, + [135155] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2976), 1, + STATE(3618), 1, sym_comment, - STATE(3976), 1, + STATE(4564), 1, sym__if_statement_directive_body, - [108463] = 5, + [135171] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2977), 1, + STATE(3619), 1, sym_comment, - STATE(3977), 1, + STATE(4565), 1, sym__if_statement_directive_body, - [108479] = 5, + [135187] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2978), 1, + STATE(3620), 1, sym_comment, - STATE(3978), 1, + STATE(4566), 1, sym__if_statement_directive_body, - [108495] = 5, + [135203] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2979), 1, + STATE(3621), 1, sym_comment, - STATE(3979), 1, - sym__if_statement_directive_body, - [108511] = 5, + STATE(4567), 1, + sym__directive_body_with_parameter, + [135219] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(271), 1, sym__directive_parameter, - STATE(2980), 1, + STATE(3622), 1, sym_comment, - STATE(3980), 1, - sym__if_statement_directive_body, - [108527] = 5, + STATE(4568), 1, + sym__directive_body_with_parameter, + [135235] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(436), 1, sym__directive_parameter, - STATE(2981), 1, + STATE(3623), 1, sym_comment, - STATE(3405), 1, + STATE(4569), 1, sym__directive_body_with_parameter, - [108543] = 5, + [135251] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(386), 1, sym__directive_parameter, - STATE(2982), 1, + STATE(3624), 1, sym_comment, - STATE(3406), 1, + STATE(3867), 1, sym__directive_body_with_parameter, - [108559] = 5, + [135267] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(363), 1, sym__directive_parameter, - STATE(2983), 1, + STATE(3625), 1, sym_comment, - STATE(3407), 1, + STATE(4570), 1, sym__directive_body_with_parameter, - [108575] = 5, + [135283] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(289), 1, sym__directive_parameter, - STATE(2984), 1, + STATE(3626), 1, sym_comment, - STATE(3320), 1, + STATE(4571), 1, sym__directive_body_with_parameter, - [108591] = 5, + [135299] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(204), 1, sym__directive_parameter, - STATE(2985), 1, + STATE(3627), 1, sym_comment, - STATE(3435), 1, + STATE(4572), 1, sym__directive_body_with_parameter, - [108607] = 5, + [135315] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(259), 1, sym__directive_parameter, - STATE(2986), 1, + STATE(3628), 1, sym_comment, - STATE(3880), 1, - sym__if_statement_directive_body, - [108623] = 5, + STATE(4573), 1, + sym__directive_body_with_parameter, + [135331] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(319), 1, sym__directive_parameter, - STATE(2987), 1, + STATE(3629), 1, sym_comment, - STATE(3653), 1, - sym__if_statement_directive_body, - [108639] = 5, + STATE(4574), 1, + sym__directive_body_with_parameter, + [135347] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(354), 1, sym__directive_parameter, - STATE(2988), 1, + STATE(3630), 1, sym_comment, - STATE(3940), 1, - sym__if_statement_directive_body, - [108655] = 5, + STATE(4575), 1, + sym__directive_body_with_parameter, + [135363] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(361), 1, sym__directive_parameter, - STATE(2989), 1, + STATE(3631), 1, sym_comment, - STATE(3928), 1, + STATE(4576), 1, sym__directive_body_with_parameter, - [108671] = 5, + [135379] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2990), 1, + STATE(3632), 1, sym_comment, - STATE(3915), 1, - sym__directive_body_with_parameter, - [108687] = 5, + STATE(3866), 1, + sym__if_statement_directive_body, + [135395] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(101), 1, sym__directive_parameter, - STATE(2991), 1, + STATE(3633), 1, sym_comment, - STATE(3914), 1, - sym__directive_body_with_parameter, - [108703] = 5, + STATE(3865), 1, + sym__if_statement_directive_body, + [135411] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(109), 1, sym__directive_parameter, - STATE(2992), 1, + STATE(3634), 1, sym_comment, - STATE(3913), 1, - sym__directive_body_with_parameter, - [108719] = 5, + STATE(3864), 1, + sym__if_statement_directive_body, + [135427] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(66), 1, sym__directive_parameter, - STATE(2993), 1, + STATE(3635), 1, sym_comment, - STATE(3912), 1, - sym__directive_body_with_parameter, - [108735] = 5, + STATE(3860), 1, + sym__if_statement_directive_body, + [135443] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2994), 1, + STATE(3636), 1, sym_comment, - STATE(3911), 1, - sym__directive_body_with_parameter, - [108751] = 5, + STATE(3859), 1, + sym__if_statement_directive_body, + [135459] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(84), 1, sym__directive_parameter, - STATE(2995), 1, + STATE(3637), 1, sym_comment, - STATE(3910), 1, - sym__directive_body_with_parameter, - [108767] = 5, + STATE(3858), 1, + sym__if_statement_directive_body, + [135475] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(82), 1, sym__directive_parameter, - STATE(2996), 1, + STATE(3638), 1, sym_comment, - STATE(3909), 1, - sym__directive_body_with_parameter, - [108783] = 5, + STATE(3857), 1, + sym__if_statement_directive_body, + [135491] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(111), 1, sym__directive_parameter, - STATE(2997), 1, + STATE(3639), 1, sym_comment, - STATE(3906), 1, - sym__directive_body_with_parameter, - [108799] = 5, + STATE(3856), 1, + sym__if_statement_directive_body, + [135507] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(98), 1, sym__directive_parameter, - STATE(2998), 1, + STATE(3640), 1, sym_comment, - STATE(3905), 1, - sym__directive_body_with_parameter, - [108815] = 5, + STATE(3855), 1, + sym__if_statement_directive_body, + [135523] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(70), 1, sym__directive_parameter, - STATE(2999), 1, + STATE(3641), 1, sym_comment, - STATE(3893), 1, - sym__directive_body_with_parameter, - [108831] = 5, + STATE(4666), 1, + sym__if_statement_directive_body, + [135539] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(74), 1, sym__directive_parameter, - STATE(3000), 1, + STATE(3642), 1, sym_comment, - STATE(3856), 1, - sym__directive_body_with_parameter, - [108847] = 5, + STATE(4665), 1, + sym__if_statement_directive_body, + [135555] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(70), 1, sym__directive_parameter, - STATE(3001), 1, + STATE(3643), 1, sym_comment, - STATE(3879), 1, - sym__directive_body_with_parameter, - [108863] = 5, + STATE(3854), 1, + sym__if_statement_directive_body, + [135571] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(74), 1, sym__directive_parameter, - STATE(3002), 1, + STATE(3644), 1, sym_comment, - STATE(3878), 1, - sym__directive_body_with_parameter, - [108879] = 5, + STATE(3853), 1, + sym__if_statement_directive_body, + [135587] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(204), 1, sym__directive_parameter, - STATE(3003), 1, + STATE(3645), 1, sym_comment, - STATE(3436), 1, + STATE(3844), 1, sym__directive_body_with_parameter, - [108895] = 5, + [135603] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(403), 1, sym__directive_parameter, - STATE(3004), 1, + STATE(3646), 1, sym_comment, - STATE(3877), 1, - sym__if_statement_directive_body, - [108911] = 5, + STATE(3852), 1, + sym__directive_body_with_parameter, + [135619] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(395), 1, sym__directive_parameter, - STATE(3005), 1, + STATE(3647), 1, sym_comment, - STATE(3876), 1, - sym__if_statement_directive_body, - [108927] = 5, + STATE(3851), 1, + sym__directive_body_with_parameter, + [135635] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(384), 1, sym__directive_parameter, - STATE(3006), 1, + STATE(3648), 1, sym_comment, - STATE(3875), 1, - sym__if_statement_directive_body, - [108943] = 5, + STATE(3850), 1, + sym__directive_body_with_parameter, + [135651] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(372), 1, sym__directive_parameter, - STATE(3007), 1, + STATE(3649), 1, sym_comment, - STATE(3874), 1, - sym__if_statement_directive_body, - [108959] = 5, + STATE(4577), 1, + sym__directive_body_with_parameter, + [135667] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(384), 1, sym__directive_parameter, - STATE(3008), 1, + STATE(3650), 1, sym_comment, - STATE(3873), 1, - sym__if_statement_directive_body, - [108975] = 5, + STATE(4578), 1, + sym__directive_body_with_parameter, + [135683] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(319), 1, sym__directive_parameter, - STATE(3009), 1, + STATE(3651), 1, sym_comment, - STATE(3299), 1, + STATE(3791), 1, sym__directive_body_with_parameter, - [108991] = 5, + [135699] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(372), 1, sym__directive_parameter, - STATE(3010), 1, + STATE(3652), 1, sym_comment, - STATE(3318), 1, + STATE(3849), 1, sym__directive_body_with_parameter, - [109007] = 3, + [135715] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3011), 1, - sym_comment, - ACTIONS(7299), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [109019] = 5, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(395), 1, sym__directive_parameter, - STATE(3012), 1, + STATE(3653), 1, sym_comment, - STATE(3317), 1, + STATE(4579), 1, sym__directive_body_with_parameter, - [109035] = 5, + [135731] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(403), 1, sym__directive_parameter, - STATE(3013), 1, + STATE(3654), 1, sym_comment, - STATE(3867), 1, - sym__if_statement_directive_body, - [109051] = 5, + STATE(4580), 1, + sym__directive_body_with_parameter, + [135747] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(259), 1, sym__directive_parameter, - STATE(3014), 1, + STATE(3655), 1, sym_comment, - STATE(3866), 1, - sym__if_statement_directive_body, - [109067] = 5, + STATE(3845), 1, + sym__directive_body_with_parameter, + [135763] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(74), 1, sym__directive_parameter, - STATE(3015), 1, + STATE(3656), 1, sym_comment, - STATE(3854), 1, + STATE(4581), 1, sym__if_statement_directive_body, - [109083] = 5, + [135779] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(70), 1, sym__directive_parameter, - STATE(3016), 1, + STATE(3657), 1, sym_comment, - STATE(3841), 1, - sym__directive_body_with_parameter, - [109099] = 5, + STATE(4582), 1, + sym__if_statement_directive_body, + [135795] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(98), 1, sym__directive_parameter, - STATE(3017), 1, + STATE(3658), 1, sym_comment, - STATE(3840), 1, - sym__directive_body_with_parameter, - [109115] = 5, + STATE(4583), 1, + sym__if_statement_directive_body, + [135811] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(111), 1, sym__directive_parameter, - STATE(3018), 1, + STATE(3659), 1, sym_comment, - STATE(3316), 1, + STATE(4584), 1, sym__if_statement_directive_body, - [109131] = 5, + [135827] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(82), 1, sym__directive_parameter, - STATE(3019), 1, + STATE(3660), 1, sym_comment, - STATE(3839), 1, - sym__directive_body_with_parameter, - [109147] = 5, + STATE(4585), 1, + sym__if_statement_directive_body, + [135843] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(84), 1, sym__directive_parameter, - STATE(3020), 1, + STATE(3661), 1, sym_comment, - STATE(3315), 1, + STATE(4586), 1, sym__if_statement_directive_body, - [109163] = 5, + [135859] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(84), 1, sym__directive_parameter, - STATE(3021), 1, + STATE(3662), 1, sym_comment, - STATE(3838), 1, - sym__directive_body_with_parameter, - [109179] = 5, + STATE(4587), 1, + sym__if_statement_directive_body, + [135875] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(66), 1, sym__directive_parameter, - STATE(3022), 1, + STATE(3663), 1, sym_comment, - STATE(3837), 1, - sym__directive_body_with_parameter, - [109195] = 5, + STATE(4588), 1, + sym__if_statement_directive_body, + [135891] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(319), 1, sym__directive_parameter, - STATE(3023), 1, + STATE(3664), 1, sym_comment, - STATE(3870), 1, + STATE(3846), 1, sym__directive_body_with_parameter, - [109211] = 5, + [135907] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(354), 1, sym__directive_parameter, - STATE(3024), 1, + STATE(3665), 1, sym_comment, - STATE(3835), 1, + STATE(4659), 1, sym__directive_body_with_parameter, - [109227] = 5, + [135923] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(361), 1, sym__directive_parameter, - STATE(3025), 1, + STATE(3666), 1, sym_comment, - STATE(3832), 1, + STATE(4660), 1, sym__directive_body_with_parameter, - [109243] = 5, + [135939] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(372), 1, sym__directive_parameter, - STATE(3026), 1, + STATE(3667), 1, sym_comment, - STATE(3831), 1, + STATE(4661), 1, sym__directive_body_with_parameter, - [109259] = 5, + [135955] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(109), 1, sym__directive_parameter, - STATE(3027), 1, + STATE(3668), 1, sym_comment, - STATE(3437), 1, - sym__directive_body_with_parameter, - [109275] = 5, + STATE(4592), 1, + sym__if_statement_directive_body, + [135971] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(101), 1, sym__directive_parameter, - STATE(3028), 1, + STATE(3669), 1, sym_comment, - STATE(3438), 1, - sym__directive_body_with_parameter, - [109291] = 5, + STATE(4593), 1, + sym__if_statement_directive_body, + [135987] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(84), 1, sym__directive_parameter, - STATE(3029), 1, + STATE(3670), 1, sym_comment, - STATE(3819), 1, - sym__directive_body_with_parameter, - [109307] = 5, + STATE(4594), 1, + sym__if_statement_directive_body, + [136003] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(386), 1, sym__directive_parameter, - STATE(3030), 1, + STATE(3671), 1, sym_comment, - STATE(3806), 1, + STATE(4595), 1, sym__directive_body_with_parameter, - [109323] = 5, + [136019] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(271), 1, sym__directive_parameter, - STATE(3031), 1, + STATE(3672), 1, sym_comment, - STATE(3805), 1, + STATE(4596), 1, sym__directive_body_with_parameter, - [109339] = 5, + [136035] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(403), 1, sym__directive_parameter, - STATE(3032), 1, + STATE(3673), 1, sym_comment, - STATE(3804), 1, + STATE(4664), 1, sym__directive_body_with_parameter, - [109355] = 5, + [136051] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(436), 1, sym__directive_parameter, - STATE(3033), 1, + STATE(3674), 1, sym_comment, - STATE(3314), 1, - sym__if_statement_directive_body, - [109371] = 5, + STATE(4597), 1, + sym__directive_body_with_parameter, + [136067] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(363), 1, sym__directive_parameter, - STATE(3034), 1, + STATE(3675), 1, sym_comment, - STATE(3685), 1, + STATE(4598), 1, sym__directive_body_with_parameter, - [109387] = 5, + [136083] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(289), 1, sym__directive_parameter, - STATE(3035), 1, + STATE(3676), 1, sym_comment, - STATE(3803), 1, + STATE(4599), 1, sym__directive_body_with_parameter, - [109403] = 5, + [136099] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(204), 1, sym__directive_parameter, - STATE(3036), 1, + STATE(3677), 1, sym_comment, - STATE(3439), 1, + STATE(4600), 1, sym__directive_body_with_parameter, - [109419] = 5, + [136115] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(259), 1, sym__directive_parameter, - STATE(3037), 1, + STATE(3678), 1, sym_comment, - STATE(3440), 1, + STATE(4601), 1, sym__directive_body_with_parameter, - [109435] = 5, + [136131] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(319), 1, sym__directive_parameter, - STATE(3038), 1, + STATE(3679), 1, sym_comment, - STATE(3802), 1, - sym__if_statement_directive_body, - [109451] = 5, + STATE(4602), 1, + sym__directive_body_with_parameter, + [136147] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(354), 1, sym__directive_parameter, - STATE(3039), 1, + STATE(3680), 1, sym_comment, - STATE(3801), 1, - sym__if_statement_directive_body, - [109467] = 5, + STATE(4603), 1, + sym__directive_body_with_parameter, + [136163] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(395), 1, sym__directive_parameter, - STATE(3040), 1, + STATE(3681), 1, sym_comment, - STATE(3800), 1, - sym__if_statement_directive_body, - [109483] = 5, + STATE(4663), 1, + sym__directive_body_with_parameter, + [136179] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(384), 1, sym__directive_parameter, - STATE(3041), 1, + STATE(3682), 1, sym_comment, - STATE(3799), 1, - sym__if_statement_directive_body, - [109499] = 5, + STATE(4662), 1, + sym__directive_body_with_parameter, + [136195] = 5, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(354), 1, sym__directive_parameter, - STATE(3042), 1, + STATE(3683), 1, sym_comment, - STATE(3798), 1, - sym__if_statement_directive_body, - [109515] = 5, + STATE(3847), 1, + sym__directive_body_with_parameter, + [136211] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7707), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(2286), 1, sym__directive_parameter, - STATE(3043), 1, + STATE(3684), 1, sym_comment, - STATE(3346), 1, - sym__directive_body_with_parameter, - [109531] = 5, + [136224] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7707), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(2296), 1, sym__directive_parameter, - STATE(3044), 1, + STATE(3685), 1, sym_comment, - STATE(3442), 1, - sym__if_statement_directive_body, - [109547] = 5, + [136237] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(2789), 1, sym__directive_parameter, - STATE(3045), 1, + STATE(3686), 1, sym_comment, - STATE(3792), 1, - sym__if_statement_directive_body, - [109563] = 5, + [136250] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7709), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(2405), 1, sym__directive_parameter, - STATE(3046), 1, + STATE(3687), 1, sym_comment, - STATE(3780), 1, - sym__if_statement_directive_body, - [109579] = 5, + [136263] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(2756), 1, sym__directive_parameter, - STATE(3047), 1, + STATE(3688), 1, sym_comment, - STATE(3767), 1, - sym__if_statement_directive_body, - [109595] = 5, + [136276] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(2785), 1, sym__directive_parameter, - STATE(3048), 1, + STATE(3689), 1, sym_comment, - STATE(3766), 1, - sym__directive_body_with_parameter, - [109611] = 5, + [136289] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(2149), 1, sym__directive_parameter, - STATE(3049), 1, + STATE(3690), 1, sym_comment, - STATE(3765), 1, - sym__directive_body_with_parameter, - [109627] = 5, + [136302] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7681), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(2150), 1, sym__directive_parameter, - STATE(3050), 1, + STATE(3691), 1, sym_comment, - STATE(3709), 1, - sym__directive_body_with_parameter, - [109643] = 5, + [136315] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(2088), 1, sym__directive_parameter, - STATE(3051), 1, + STATE(3692), 1, sym_comment, - STATE(3764), 1, - sym__directive_body_with_parameter, - [109659] = 5, + [136328] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7683), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(2087), 1, sym__directive_parameter, - STATE(3052), 1, + STATE(3693), 1, sym_comment, - STATE(3763), 1, - sym__directive_body_with_parameter, - [109675] = 5, + [136341] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(2806), 1, sym__directive_parameter, - STATE(3053), 1, + STATE(3694), 1, sym_comment, - STATE(3761), 1, - sym__directive_body_with_parameter, - [109691] = 5, + [136354] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7401), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(950), 1, sym__directive_parameter, - STATE(3054), 1, + STATE(3695), 1, sym_comment, - STATE(3760), 1, - sym__directive_body_with_parameter, - [109707] = 5, + [136367] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7401), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(818), 1, sym__directive_parameter, - STATE(3055), 1, + STATE(3696), 1, sym_comment, - STATE(3759), 1, - sym__directive_body_with_parameter, - [109723] = 5, + [136380] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(2026), 1, sym__directive_parameter, - STATE(3056), 1, + STATE(3697), 1, sym_comment, - STATE(3710), 1, - sym__directive_body_with_parameter, - [109739] = 5, + [136393] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7685), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(2025), 1, sym__directive_parameter, - STATE(3057), 1, + STATE(3698), 1, sym_comment, - STATE(3756), 1, - sym__directive_body_with_parameter, - [109755] = 5, + [136406] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(2754), 1, sym__directive_parameter, - STATE(3058), 1, + STATE(3699), 1, sym_comment, - STATE(3744), 1, - sym__directive_body_with_parameter, - [109771] = 5, + [136419] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(2858), 1, sym__directive_parameter, - STATE(3059), 1, + STATE(3700), 1, sym_comment, - STATE(3836), 1, - sym__directive_body_with_parameter, - [109787] = 5, + [136432] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(1964), 1, sym__directive_parameter, - STATE(3060), 1, + STATE(3701), 1, sym_comment, - STATE(3730), 1, - sym__directive_body_with_parameter, - [109803] = 5, + [136445] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7687), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(1963), 1, sym__directive_parameter, - STATE(3061), 1, + STATE(3702), 1, sym_comment, - STATE(3670), 1, - sym__directive_body_with_parameter, - [109819] = 5, + [136458] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7425), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(627), 1, sym__directive_parameter, - STATE(3062), 1, + STATE(3703), 1, sym_comment, - STATE(3728), 1, - sym__directive_body_with_parameter, - [109835] = 5, + [136471] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7425), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(626), 1, sym__directive_parameter, - STATE(3063), 1, + STATE(3704), 1, sym_comment, - STATE(3727), 1, - sym__directive_body_with_parameter, - [109851] = 5, + [136484] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(2753), 1, sym__directive_parameter, - STATE(3064), 1, + STATE(3705), 1, sym_comment, - STATE(3309), 1, - sym__if_statement_directive_body, - [109867] = 5, + [136497] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(2837), 1, sym__directive_parameter, - STATE(3065), 1, + STATE(3706), 1, sym_comment, - STATE(3308), 1, - sym__if_statement_directive_body, - [109883] = 5, + [136510] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(2866), 1, sym__directive_parameter, - STATE(3066), 1, + STATE(3707), 1, sym_comment, - STATE(3307), 1, - sym__if_statement_directive_body, - [109899] = 5, + [136523] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(2730), 1, sym__directive_parameter, - STATE(3067), 1, + STATE(3708), 1, sym_comment, - STATE(3443), 1, - sym__if_statement_directive_body, - [109915] = 5, + [136536] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(1902), 1, sym__directive_parameter, - STATE(3068), 1, + STATE(3709), 1, sym_comment, - STATE(3726), 1, - sym__if_statement_directive_body, - [109931] = 5, + [136549] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7689), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(1901), 1, sym__directive_parameter, - STATE(3069), 1, + STATE(3710), 1, sym_comment, - STATE(3725), 1, - sym__if_statement_directive_body, - [109947] = 5, + [136562] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(2832), 1, sym__directive_parameter, - STATE(3070), 1, + STATE(3711), 1, sym_comment, - STATE(3724), 1, - sym__if_statement_directive_body, - [109963] = 5, + [136575] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(1840), 1, sym__directive_parameter, - STATE(3071), 1, + STATE(3712), 1, sym_comment, - STATE(3723), 1, - sym__if_statement_directive_body, - [109979] = 5, + [136588] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7691), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(1839), 1, sym__directive_parameter, - STATE(3072), 1, + STATE(3713), 1, sym_comment, - STATE(3722), 1, - sym__if_statement_directive_body, - [109995] = 5, + [136601] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7399), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(542), 1, sym__directive_parameter, - STATE(3073), 1, + STATE(3714), 1, sym_comment, - STATE(3444), 1, - sym__if_statement_directive_body, - [110011] = 5, + [136614] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7399), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(943), 1, sym__directive_parameter, - STATE(3074), 1, + STATE(3715), 1, sym_comment, - STATE(3471), 1, - sym__if_statement_directive_body, - [110027] = 5, + [136627] = 3, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(3716), 1, + sym_comment, + ACTIONS(8534), 2, + anon_sym_RPAREN, + aux_sym_parameter_token1, + [136638] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(1778), 1, sym__directive_parameter, - STATE(3075), 1, + STATE(3717), 1, sym_comment, - STATE(3306), 1, - sym__if_statement_directive_body, - [110043] = 5, + [136651] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7693), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(1777), 1, sym__directive_parameter, - STATE(3076), 1, + STATE(3718), 1, sym_comment, - STATE(3305), 1, - sym__if_statement_directive_body, - [110059] = 5, + [136664] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(2777), 1, sym__directive_parameter, - STATE(3077), 1, + STATE(3719), 1, sym_comment, - STATE(3441), 1, - sym__if_statement_directive_body, - [110075] = 5, + [136677] = 3, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(3720), 1, + sym_comment, + ACTIONS(8522), 2, + anon_sym_RPAREN, + aux_sym_parameter_token1, + [136688] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(2786), 1, sym__directive_parameter, - STATE(3078), 1, + STATE(3721), 1, sym_comment, - STATE(3259), 1, - sym__if_statement_directive_body, - [110091] = 5, + [136701] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(2524), 1, sym__directive_parameter, - STATE(3079), 1, + STATE(3722), 1, sym_comment, - STATE(3304), 1, - sym__directive_body_with_parameter, - [110107] = 5, + [136714] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(7551), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(2517), 1, sym__directive_parameter, - STATE(3080), 1, + STATE(3723), 1, sym_comment, - STATE(3702), 1, - sym__if_statement_directive_body, - [110123] = 5, + [136727] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(1716), 1, sym__directive_parameter, - STATE(3081), 1, + STATE(3724), 1, sym_comment, - STATE(3689), 1, - sym__if_statement_directive_body, - [110139] = 5, + [136740] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7695), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(1715), 1, sym__directive_parameter, - STATE(3082), 1, + STATE(3725), 1, sym_comment, - STATE(3688), 1, - sym__if_statement_directive_body, - [110155] = 5, + [136753] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(2787), 1, sym__directive_parameter, - STATE(3083), 1, + STATE(3726), 1, sym_comment, - STATE(3687), 1, - sym__directive_body_with_parameter, - [110171] = 5, + [136766] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(2758), 1, sym__directive_parameter, - STATE(3084), 1, + STATE(3727), 1, sym_comment, - STATE(3686), 1, - sym__directive_body_with_parameter, - [110187] = 5, + [136779] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(746), 1, sym__directive_parameter, - STATE(3085), 1, + STATE(3728), 1, sym_comment, - STATE(3682), 1, - sym__directive_body_with_parameter, - [110203] = 5, + [136792] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7417), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(747), 1, sym__directive_parameter, - STATE(3086), 1, + STATE(3729), 1, sym_comment, - STATE(3681), 1, - sym__directive_body_with_parameter, - [110219] = 5, + [136805] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(2278), 1, sym__directive_parameter, - STATE(3087), 1, + STATE(3730), 1, sym_comment, - STATE(3680), 1, - sym__directive_body_with_parameter, - [110235] = 5, + [136818] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7665), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(2277), 1, sym__directive_parameter, - STATE(3088), 1, + STATE(3731), 1, sym_comment, - STATE(3679), 1, - sym__directive_body_with_parameter, - [110251] = 5, + [136831] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(2742), 1, sym__directive_parameter, - STATE(3089), 1, + STATE(3732), 1, sym_comment, - STATE(3678), 1, - sym__directive_body_with_parameter, - [110267] = 5, + [136844] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(2831), 1, sym__directive_parameter, - STATE(3090), 1, + STATE(3733), 1, sym_comment, - STATE(3664), 1, - sym__directive_body_with_parameter, - [110283] = 5, + [136857] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(821), 1, sym__directive_parameter, - STATE(3091), 1, + STATE(3734), 1, sym_comment, - STATE(3648), 1, - sym__directive_body_with_parameter, - [110299] = 5, + [136870] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7411), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(822), 1, sym__directive_parameter, - STATE(3092), 1, + STATE(3735), 1, sym_comment, - STATE(3647), 1, - sym__directive_body_with_parameter, - [110315] = 5, + [136883] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(1668), 1, sym__directive_parameter, - STATE(3093), 1, + STATE(3736), 1, sym_comment, - STATE(3646), 1, - sym__directive_body_with_parameter, - [110331] = 5, + [136896] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7697), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(1667), 1, sym__directive_parameter, - STATE(3094), 1, + STATE(3737), 1, sym_comment, - STATE(3645), 1, - sym__directive_body_with_parameter, - [110347] = 5, + [136909] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(2791), 1, sym__directive_parameter, - STATE(3095), 1, + STATE(3738), 1, sym_comment, - STATE(3644), 1, - sym__directive_body_with_parameter, - [110363] = 5, + [136922] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7679), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(2211), 1, sym__directive_parameter, - STATE(3096), 1, + STATE(3739), 1, sym_comment, - STATE(3731), 1, - sym__directive_body_with_parameter, - [110379] = 5, + [136935] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7679), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(2212), 1, sym__directive_parameter, - STATE(3097), 1, + STATE(3740), 1, sym_comment, - STATE(3258), 1, - sym__if_statement_directive_body, - [110395] = 5, + [136948] = 3, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(3741), 1, + sym_comment, + ACTIONS(8536), 2, + anon_sym_RPAREN, + aux_sym_parameter_token1, + [136959] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(953), 1, sym__directive_parameter, - STATE(3098), 1, + STATE(3742), 1, sym_comment, - STATE(3642), 1, - sym__if_statement_directive_body, - [110411] = 5, + [136972] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7407), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(895), 1, sym__directive_parameter, - STATE(3099), 1, + STATE(3743), 1, sym_comment, - STATE(3641), 1, - sym__if_statement_directive_body, - [110427] = 5, + [136985] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(2857), 1, sym__directive_parameter, - STATE(3100), 1, + STATE(3744), 1, sym_comment, - STATE(3640), 1, - sym__if_statement_directive_body, - [110443] = 5, + [136998] = 3, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(3745), 1, + sym_comment, + ACTIONS(8538), 2, + anon_sym_RPAREN, + aux_sym_parameter_token1, + [137009] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(2840), 1, sym__directive_parameter, - STATE(3101), 1, + STATE(3746), 1, sym_comment, - STATE(3639), 1, - sym__if_statement_directive_body, - [110459] = 5, + [137022] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(1608), 1, sym__directive_parameter, - STATE(3102), 1, + STATE(3747), 1, sym_comment, - STATE(3303), 1, - sym__directive_body_with_parameter, - [110475] = 5, + [137035] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7699), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(1607), 1, sym__directive_parameter, - STATE(3103), 1, + STATE(3748), 1, sym_comment, - STATE(3638), 1, - sym__if_statement_directive_body, - [110491] = 3, + [137048] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3104), 1, + ACTIONS(7421), 1, + anon_sym_LPAREN, + STATE(966), 1, + sym__directive_parameter, + STATE(3749), 1, sym_comment, - ACTIONS(7301), 3, - anon_sym_ATdefault, - anon_sym_ATendswitch, - anon_sym_ATcase, - [110503] = 5, + [137061] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7421), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(967), 1, sym__directive_parameter, - STATE(3105), 1, + STATE(3750), 1, sym_comment, - STATE(3475), 1, - sym__if_statement_directive_body, - [110519] = 5, + [137074] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(2736), 1, sym__directive_parameter, - STATE(3106), 1, + STATE(3751), 1, sym_comment, - STATE(3302), 1, - sym__directive_body_with_parameter, - [110535] = 5, + [137087] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(71), 1, + STATE(2849), 1, sym__directive_parameter, - STATE(3107), 1, + STATE(3752), 1, sym_comment, - STATE(3643), 1, - sym__if_statement_directive_body, - [110551] = 5, + [137100] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(104), 1, + STATE(1547), 1, sym__directive_parameter, - STATE(3108), 1, + STATE(3753), 1, sym_comment, - STATE(3603), 1, - sym__if_statement_directive_body, - [110567] = 5, + [137113] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(1039), 1, sym__directive_parameter, - STATE(3109), 1, + STATE(3754), 1, sym_comment, - STATE(3602), 1, - sym__if_statement_directive_body, - [110583] = 5, + [137126] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(2810), 1, sym__directive_parameter, - STATE(3110), 1, + STATE(3755), 1, sym_comment, - STATE(3301), 1, - sym__directive_body_with_parameter, - [110599] = 5, + [137139] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, + ACTIONS(7419), 1, anon_sym_LPAREN, - STATE(372), 1, + STATE(1040), 1, sym__directive_parameter, - STATE(3111), 1, + STATE(3756), 1, sym_comment, - STATE(3557), 1, - sym__directive_body_with_parameter, - [110615] = 5, + [137152] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7701), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(1546), 1, sym__directive_parameter, - STATE(3112), 1, + STATE(3757), 1, sym_comment, - STATE(3300), 1, - sym__directive_body_with_parameter, - [110631] = 5, + [137165] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(345), 1, + STATE(2835), 1, sym__directive_parameter, - STATE(3113), 1, + STATE(3758), 1, sym_comment, - STATE(3600), 1, - sym__directive_body_with_parameter, - [110647] = 5, + [137178] = 3, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(3759), 1, + sym_comment, + ACTIONS(8534), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [137189] = 3, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(3760), 1, + sym_comment, + ACTIONS(8522), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [137200] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(418), 1, + STATE(2845), 1, sym__directive_parameter, - STATE(3114), 1, + STATE(3761), 1, sym_comment, - STATE(3599), 1, - sym__directive_body_with_parameter, - [110663] = 5, + [137213] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(348), 1, + STATE(1344), 1, sym__directive_parameter, - STATE(3115), 1, + STATE(3762), 1, sym_comment, - STATE(3598), 1, - sym__directive_body_with_parameter, - [110679] = 5, + [137226] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, + ACTIONS(7423), 1, anon_sym_LPAREN, - STATE(277), 1, + STATE(1343), 1, sym__directive_parameter, - STATE(3116), 1, + STATE(3763), 1, sym_comment, - STATE(3597), 1, - sym__directive_body_with_parameter, - [110695] = 5, + [137239] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(195), 1, + STATE(1485), 1, sym__directive_parameter, - STATE(3117), 1, + STATE(3764), 1, sym_comment, - STATE(3596), 1, - sym__directive_body_with_parameter, - [110711] = 5, + [137252] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(2792), 1, sym__directive_parameter, - STATE(3118), 1, + STATE(3765), 1, sym_comment, - STATE(3595), 1, - sym__directive_body_with_parameter, - [110727] = 5, + [137265] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(7715), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(2398), 1, sym__directive_parameter, - STATE(3119), 1, + STATE(3766), 1, sym_comment, - STATE(3477), 1, - sym__if_statement_directive_body, - [110743] = 5, + [137278] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7715), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(2397), 1, sym__directive_parameter, - STATE(3120), 1, + STATE(3767), 1, sym_comment, - STATE(3478), 1, - sym__if_statement_directive_body, - [110759] = 5, + [137291] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7703), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(1486), 1, sym__directive_parameter, - STATE(3121), 1, + STATE(3768), 1, sym_comment, - STATE(3567), 1, - sym__directive_body_with_parameter, - [110775] = 5, + [137304] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(335), 1, + STATE(1280), 1, sym__directive_parameter, - STATE(3122), 1, + STATE(3769), 1, sym_comment, - STATE(3566), 1, - sym__directive_body_with_parameter, - [110791] = 5, + [137317] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, + ACTIONS(7397), 1, anon_sym_LPAREN, - STATE(342), 1, + STATE(1279), 1, sym__directive_parameter, - STATE(3123), 1, + STATE(3770), 1, sym_comment, - STATE(3565), 1, - sym__directive_body_with_parameter, - [110807] = 5, + [137330] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(355), 1, + STATE(2818), 1, sym__directive_parameter, - STATE(3124), 1, + STATE(3771), 1, sym_comment, - STATE(3564), 1, - sym__directive_body_with_parameter, - [110823] = 5, + [137343] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(2760), 1, sym__directive_parameter, - STATE(3125), 1, + STATE(3772), 1, sym_comment, - STATE(3276), 1, - sym__directive_body_with_parameter, - [110839] = 5, + [137356] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(364), 1, + STATE(1426), 1, sym__directive_parameter, - STATE(3126), 1, + STATE(3773), 1, sym_comment, - STATE(3563), 1, - sym__directive_body_with_parameter, - [110855] = 5, + [137369] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(7705), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(1425), 1, sym__directive_parameter, - STATE(3127), 1, + STATE(3774), 1, sym_comment, - STATE(3562), 1, - sym__directive_body_with_parameter, - [110871] = 5, + [137382] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(1216), 1, sym__directive_parameter, - STATE(3128), 1, + STATE(3775), 1, sym_comment, - STATE(3561), 1, - sym__directive_body_with_parameter, - [110887] = 5, + [137395] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, + ACTIONS(7413), 1, anon_sym_LPAREN, - STATE(271), 1, + STATE(1215), 1, sym__directive_parameter, - STATE(3129), 1, + STATE(3776), 1, sym_comment, - STATE(3298), 1, - sym__directive_body_with_parameter, - [110903] = 5, + [137408] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(384), 1, + STATE(2800), 1, sym__directive_parameter, - STATE(3130), 1, + STATE(3777), 1, sym_comment, - STATE(3479), 1, - sym__directive_body_with_parameter, - [110919] = 5, + [137421] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(374), 1, + STATE(2739), 1, sym__directive_parameter, - STATE(3131), 1, + STATE(3778), 1, sym_comment, - STATE(3480), 1, - sym__directive_body_with_parameter, - [110935] = 5, + [137434] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(106), 1, + STATE(1083), 1, sym__directive_parameter, - STATE(3132), 1, + STATE(3779), 1, sym_comment, - STATE(3560), 1, - sym__if_statement_directive_body, - [110951] = 5, + [137447] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(93), 1, + STATE(2819), 1, sym__directive_parameter, - STATE(3133), 1, + STATE(3780), 1, sym_comment, - STATE(3559), 1, - sym__if_statement_directive_body, - [110967] = 5, + [137460] = 3, + ACTIONS(8167), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + STATE(3781), 1, + sym_comment, + ACTIONS(8536), 2, + aux_sym_parameter_token1, + anon_sym_RPAREN2, + [137471] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7409), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(1084), 1, sym__directive_parameter, - STATE(3134), 1, + STATE(3782), 1, sym_comment, - STATE(3558), 1, - sym__if_statement_directive_body, - [110983] = 5, + [137484] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(80), 1, + STATE(1150), 1, sym__directive_parameter, - STATE(3135), 1, + STATE(3783), 1, sym_comment, - STATE(3474), 1, - sym__if_statement_directive_body, - [110999] = 5, + [137497] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, + ACTIONS(7415), 1, anon_sym_LPAREN, - STATE(81), 1, + STATE(1149), 1, sym__directive_parameter, - STATE(3136), 1, + STATE(3784), 1, sym_comment, - STATE(3551), 1, - sym__if_statement_directive_body, - [111015] = 5, + [137510] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, + ACTIONS(7709), 1, anon_sym_LPAREN, - STATE(309), 1, + STATE(2404), 1, sym__directive_parameter, - STATE(3137), 1, + STATE(3785), 1, sym_comment, - STATE(3277), 1, - sym__directive_body_with_parameter, - [111031] = 4, - ACTIONS(6960), 1, + [137523] = 3, + ACTIONS(8167), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7303), 1, - anon_sym_LPAREN2, - STATE(3138), 1, + STATE(3786), 1, sym_comment, - ACTIONS(7295), 2, + ACTIONS(8538), 2, aux_sym_parameter_token1, anon_sym_RPAREN2, - [111045] = 5, + [137534] = 4, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6514), 1, + ACTIONS(8532), 1, anon_sym_LPAREN, - STATE(202), 1, + STATE(2766), 1, sym__directive_parameter, - STATE(3139), 1, + STATE(3787), 1, sym_comment, - STATE(3424), 1, - sym__directive_body_with_parameter, - [111061] = 5, + [137547] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, - anon_sym_LPAREN, - STATE(71), 1, - sym__directive_parameter, - STATE(3140), 1, + ACTIONS(8540), 1, + anon_sym_ATendif, + STATE(3788), 1, sym_comment, - STATE(3521), 1, - sym__if_statement_directive_body, - [111077] = 5, + [137557] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, - anon_sym_LPAREN, - STATE(104), 1, - sym__directive_parameter, - STATE(3141), 1, + ACTIONS(8542), 1, + anon_sym_ATendpersist, + STATE(3789), 1, sym_comment, - STATE(3520), 1, - sym__if_statement_directive_body, - [111093] = 5, + [137567] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, - anon_sym_LPAREN, - STATE(364), 1, - sym__directive_parameter, - STATE(3142), 1, + ACTIONS(8544), 1, + anon_sym_ATendteleport, + STATE(3790), 1, sym_comment, - STATE(3481), 1, - sym__directive_body_with_parameter, - [111109] = 5, + [137577] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, - anon_sym_LPAREN, - STATE(80), 1, - sym__directive_parameter, - STATE(3143), 1, + ACTIONS(8546), 1, + anon_sym_ATendvolt, + STATE(3791), 1, sym_comment, - STATE(3519), 1, - sym__if_statement_directive_body, - [111125] = 5, + [137587] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(372), 1, - sym__directive_parameter, - STATE(3144), 1, + ACTIONS(8548), 1, + anon_sym_ATendPrependOnce, + STATE(3792), 1, sym_comment, - STATE(3518), 1, - sym__directive_body_with_parameter, - [111141] = 5, + [137597] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, - anon_sym_LPAREN, - STATE(345), 1, - sym__directive_parameter, - STATE(3145), 1, + ACTIONS(8550), 1, + anon_sym_ATendwhile, + STATE(3793), 1, sym_comment, - STATE(3517), 1, - sym__directive_body_with_parameter, - [111157] = 5, + [137607] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, - anon_sym_LPAREN, - STATE(418), 1, - sym__directive_parameter, - STATE(3146), 1, + ACTIONS(8552), 1, + anon_sym_ATendforelse, + STATE(3794), 1, sym_comment, - STATE(3516), 1, - sym__directive_body_with_parameter, - [111173] = 5, + [137617] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, - anon_sym_LPAREN, - STATE(348), 1, - sym__directive_parameter, - STATE(3147), 1, + ACTIONS(8554), 1, + anon_sym_ATendforeach, + STATE(3795), 1, sym_comment, - STATE(3515), 1, - sym__directive_body_with_parameter, - [111189] = 5, + [137627] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, - anon_sym_LPAREN, - STATE(195), 1, - sym__directive_parameter, - STATE(3148), 1, + ACTIONS(8556), 1, + anon_sym_ATendfor, + STATE(3796), 1, sym_comment, - STATE(3278), 1, - sym__directive_body_with_parameter, - [111205] = 5, + [137637] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, - anon_sym_LPAREN, - STATE(277), 1, - sym__directive_parameter, - STATE(3149), 1, + ACTIONS(8558), 1, + aux_sym__custom_token3, + STATE(3797), 1, sym_comment, - STATE(3514), 1, - sym__directive_body_with_parameter, - [111221] = 5, + [137647] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, - anon_sym_LPAREN, - STATE(195), 1, - sym__directive_parameter, - STATE(3150), 1, + ACTIONS(8560), 1, + anon_sym_ATendcanany, + STATE(3798), 1, sym_comment, - STATE(3513), 1, - sym__directive_body_with_parameter, - [111237] = 5, + [137657] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, - anon_sym_LPAREN, - STATE(309), 1, - sym__directive_parameter, - STATE(3151), 1, + ACTIONS(8562), 1, + anon_sym_ATendcannot, + STATE(3799), 1, sym_comment, - STATE(3512), 1, - sym__directive_body_with_parameter, - [111253] = 5, + [137667] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, - anon_sym_LPAREN, - STATE(271), 1, - sym__directive_parameter, - STATE(3152), 1, + ACTIONS(8564), 1, + anon_sym_ATendcan, + STATE(3800), 1, sym_comment, - STATE(3485), 1, - sym__directive_body_with_parameter, - [111269] = 5, + [137677] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, - anon_sym_LPAREN, - STATE(335), 1, - sym__directive_parameter, - STATE(3153), 1, + ACTIONS(8566), 1, + anon_sym_ATenderror, + STATE(3801), 1, sym_comment, - STATE(3484), 1, - sym__directive_body_with_parameter, - [111285] = 5, + [137687] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, - anon_sym_LPAREN, - STATE(342), 1, - sym__directive_parameter, - STATE(3154), 1, + ACTIONS(8568), 1, + anon_sym_ATendif, + STATE(3802), 1, sym_comment, - STATE(3483), 1, - sym__directive_body_with_parameter, - [111301] = 5, + [137697] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, - anon_sym_LPAREN, - STATE(355), 1, - sym__directive_parameter, - STATE(3155), 1, + ACTIONS(8570), 1, + anon_sym_ATendif, + STATE(3803), 1, sym_comment, - STATE(3482), 1, - sym__directive_body_with_parameter, - [111317] = 5, + [137707] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, - anon_sym_LPAREN, - STATE(277), 1, - sym__directive_parameter, - STATE(3156), 1, + ACTIONS(8572), 1, + anon_sym_ATendenv, + STATE(3804), 1, sym_comment, - STATE(3281), 1, - sym__directive_body_with_parameter, - [111333] = 5, + [137717] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, - anon_sym_LPAREN, - STATE(348), 1, - sym__directive_parameter, - STATE(3157), 1, + ACTIONS(8574), 1, + anon_sym_ATendguest, + STATE(3805), 1, sym_comment, - STATE(3282), 1, - sym__directive_body_with_parameter, - [111349] = 5, + [137727] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, - anon_sym_LPAREN, - STATE(418), 1, - sym__directive_parameter, - STATE(3158), 1, + ACTIONS(8576), 1, + anon_sym_ATendauth, + STATE(3806), 1, sym_comment, - STATE(3283), 1, - sym__directive_body_with_parameter, - [111365] = 5, + [137737] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, - anon_sym_LPAREN, - STATE(345), 1, - sym__directive_parameter, - STATE(3159), 1, + ACTIONS(8578), 1, + anon_sym_ATendempty, + STATE(3807), 1, sym_comment, - STATE(3284), 1, - sym__directive_body_with_parameter, - [111381] = 5, + [137747] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(372), 1, - sym__directive_parameter, - STATE(3160), 1, + ACTIONS(8580), 1, + anon_sym_ATendisset, + STATE(3808), 1, sym_comment, - STATE(3285), 1, - sym__directive_body_with_parameter, - [111397] = 5, + [137757] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, - anon_sym_LPAREN, - STATE(80), 1, - sym__directive_parameter, - STATE(3161), 1, + ACTIONS(8582), 1, + anon_sym_ATendunless, + STATE(3809), 1, sym_comment, - STATE(3286), 1, - sym__if_statement_directive_body, - [111413] = 4, + [137767] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2504), 1, - sym__directive_parameter, - STATE(3162), 1, + ACTIONS(8584), 1, + anon_sym_ATendif, + STATE(3810), 1, sym_comment, - [111426] = 4, + [137777] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, - anon_sym_LPAREN, - STATE(1797), 1, - sym__directive_parameter, - STATE(3163), 1, + ACTIONS(8586), 1, + anon_sym_ATendforelse, + STATE(3811), 1, sym_comment, - [111439] = 4, + [137787] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6550), 1, - anon_sym_LPAREN, - STATE(2144), 1, - sym__directive_parameter, - STATE(3164), 1, + ACTIONS(8588), 1, + anon_sym_ATendprepend, + STATE(3812), 1, sym_comment, - [111452] = 4, + [137797] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6522), 1, - anon_sym_LPAREN, - STATE(1855), 1, - sym__directive_parameter, - STATE(3165), 1, + ACTIONS(8590), 1, + anon_sym_ATendPushIf, + STATE(3813), 1, sym_comment, - [111465] = 4, + [137807] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6522), 1, - anon_sym_LPAREN, - STATE(1856), 1, - sym__directive_parameter, - STATE(3166), 1, + ACTIONS(8592), 1, + anon_sym_ATendPushOnce, + STATE(3814), 1, sym_comment, - [111478] = 4, + [137817] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2443), 1, - sym__directive_parameter, - STATE(3167), 1, + ACTIONS(8594), 1, + anon_sym_ATendpush, + STATE(3815), 1, sym_comment, - [111491] = 4, + [137827] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2396), 1, - sym__directive_parameter, - STATE(3168), 1, + ACTIONS(8596), 1, + anon_sym_ATendsection, + STATE(3816), 1, sym_comment, - [111504] = 4, + [137837] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6524), 1, - anon_sym_LPAREN, - STATE(1796), 1, - sym__directive_parameter, - STATE(3169), 1, + ACTIONS(8598), 1, + anon_sym_ATendfragment, + STATE(3817), 1, sym_comment, - [111517] = 3, - ACTIONS(6960), 1, + [137847] = 3, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3170), 1, + ACTIONS(8600), 1, + anon_sym_ATendvolt, + STATE(3818), 1, sym_comment, - ACTIONS(7307), 2, - anon_sym_RPAREN, - aux_sym_parameter_token1, - [111528] = 4, + [137857] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6262), 1, - anon_sym_LPAREN, - STATE(486), 1, - sym__directive_parameter, - STATE(3171), 1, + ACTIONS(8602), 1, + anon_sym_ATendteleport, + STATE(3819), 1, sym_comment, - [111541] = 4, + [137867] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2398), 1, - sym__directive_parameter, - STATE(3172), 1, + ACTIONS(8604), 1, + anon_sym_ATendpersist, + STATE(3820), 1, sym_comment, - [111554] = 3, - ACTIONS(6960), 1, + [137877] = 3, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3173), 1, + ACTIONS(8606), 1, + anon_sym_ATendwhile, + STATE(3821), 1, sym_comment, - ACTIONS(7309), 2, - anon_sym_RPAREN, - aux_sym_parameter_token1, - [111565] = 4, + [137887] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, - anon_sym_LPAREN, - STATE(1738), 1, - sym__directive_parameter, - STATE(3174), 1, + ACTIONS(8608), 1, + anon_sym_ATendforelse, + STATE(3822), 1, sym_comment, - [111578] = 3, - ACTIONS(6960), 1, + [137897] = 3, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3175), 1, + ACTIONS(8610), 1, + anon_sym_ATendforeach, + STATE(3823), 1, sym_comment, - ACTIONS(7295), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [111589] = 4, + [137907] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, - anon_sym_LPAREN, - STATE(1261), 1, - sym__directive_parameter, - STATE(3176), 1, + ACTIONS(8612), 1, + anon_sym_ATendfor, + STATE(3824), 1, sym_comment, - [111602] = 3, - ACTIONS(6960), 1, + [137917] = 3, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3177), 1, + ACTIONS(8614), 1, + aux_sym__custom_token3, + STATE(3825), 1, sym_comment, - ACTIONS(7309), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [111613] = 4, + [137927] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6526), 1, - anon_sym_LPAREN, - STATE(1737), 1, - sym__directive_parameter, - STATE(3178), 1, + ACTIONS(8616), 1, + anon_sym_ATendcanany, + STATE(3826), 1, sym_comment, - [111626] = 4, + [137937] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2487), 1, - sym__directive_parameter, - STATE(3179), 1, + ACTIONS(8618), 1, + anon_sym_ATendcannot, + STATE(3827), 1, sym_comment, - [111639] = 4, + [137947] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6550), 1, - anon_sym_LPAREN, - STATE(2145), 1, - sym__directive_parameter, - STATE(3180), 1, + ACTIONS(8620), 1, + anon_sym_ATendcan, + STATE(3828), 1, sym_comment, - [111652] = 4, + [137957] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, - anon_sym_LPAREN, - STATE(1204), 1, - sym__directive_parameter, - STATE(3181), 1, + ACTIONS(8622), 1, + anon_sym_ATenderror, + STATE(3829), 1, sym_comment, - [111665] = 4, + [137967] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6270), 1, - anon_sym_LPAREN, - STATE(849), 1, - sym__directive_parameter, - STATE(3182), 1, + ACTIONS(8624), 1, + anon_sym_ATendif, + STATE(3830), 1, sym_comment, - [111678] = 4, + [137977] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2502), 1, - sym__directive_parameter, - STATE(3183), 1, + ACTIONS(8626), 1, + anon_sym_ATendif, + STATE(3831), 1, sym_comment, - [111691] = 4, + [137987] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, - anon_sym_LPAREN, - STATE(1679), 1, - sym__directive_parameter, - STATE(3184), 1, + ACTIONS(8628), 1, + anon_sym_ATendenv, + STATE(3832), 1, sym_comment, - [111704] = 4, + [137997] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6528), 1, - anon_sym_LPAREN, - STATE(1678), 1, - sym__directive_parameter, - STATE(3185), 1, + ACTIONS(8630), 1, + anon_sym_ATendguest, + STATE(3833), 1, sym_comment, - [111717] = 4, + [138007] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2412), 1, - sym__directive_parameter, - STATE(3186), 1, + ACTIONS(8632), 1, + anon_sym_ATendauth, + STATE(3834), 1, sym_comment, - [111730] = 3, - ACTIONS(6960), 1, + [138017] = 3, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3187), 1, + ACTIONS(8634), 1, + anon_sym_ATendempty, + STATE(3835), 1, sym_comment, - ACTIONS(7295), 2, - anon_sym_RPAREN, - aux_sym_parameter_token1, - [111741] = 3, - ACTIONS(6960), 1, + [138027] = 3, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3188), 1, + ACTIONS(8636), 1, + anon_sym_ATendisset, + STATE(3836), 1, sym_comment, - ACTIONS(7311), 2, - anon_sym_RPAREN, - aux_sym_parameter_token1, - [111752] = 4, + [138037] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, - anon_sym_LPAREN, - STATE(1620), 1, - sym__directive_parameter, - STATE(3189), 1, + ACTIONS(8638), 1, + anon_sym_ATendunless, + STATE(3837), 1, sym_comment, - [111765] = 4, + [138047] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6530), 1, - anon_sym_LPAREN, - STATE(1619), 1, - sym__directive_parameter, - STATE(3190), 1, + ACTIONS(8640), 1, + anon_sym_ATendif, + STATE(3838), 1, sym_comment, - [111778] = 4, + [138057] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2390), 1, - sym__directive_parameter, - STATE(3191), 1, + ACTIONS(8642), 1, + anon_sym_ATendPrependOnce, + STATE(3839), 1, sym_comment, - [111791] = 4, + [138067] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6270), 1, - anon_sym_LPAREN, - STATE(875), 1, - sym__directive_parameter, - STATE(3192), 1, + ACTIONS(8644), 1, + anon_sym_ATendprepend, + STATE(3840), 1, sym_comment, - [111804] = 4, + [138077] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6268), 1, - anon_sym_LPAREN, - STATE(585), 1, - sym__directive_parameter, - STATE(3193), 1, + ACTIONS(8646), 1, + anon_sym_ATendPushIf, + STATE(3841), 1, sym_comment, - [111817] = 4, + [138087] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6542), 1, - anon_sym_LPAREN, - STATE(1262), 1, - sym__directive_parameter, - STATE(3194), 1, + ACTIONS(8648), 1, + anon_sym_ATendPushOnce, + STATE(3842), 1, sym_comment, - [111830] = 4, + [138097] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6268), 1, - anon_sym_LPAREN, - STATE(574), 1, - sym__directive_parameter, - STATE(3195), 1, + ACTIONS(8650), 1, + anon_sym_ATendpush, + STATE(3843), 1, sym_comment, - [111843] = 4, + [138107] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2423), 1, - sym__directive_parameter, - STATE(3196), 1, + ACTIONS(8652), 1, + anon_sym_ATendsection, + STATE(3844), 1, sym_comment, - [111856] = 4, + [138117] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2424), 1, - sym__directive_parameter, - STATE(3197), 1, + ACTIONS(8654), 1, + anon_sym_ATendfragment, + STATE(3845), 1, sym_comment, - [111869] = 4, + [138127] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, - anon_sym_LPAREN, - STATE(1561), 1, - sym__directive_parameter, - STATE(3198), 1, + ACTIONS(8656), 1, + anon_sym_ATendvolt, + STATE(3846), 1, sym_comment, - [111882] = 4, + [138137] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6532), 1, - anon_sym_LPAREN, - STATE(1560), 1, - sym__directive_parameter, - STATE(3199), 1, + ACTIONS(8658), 1, + anon_sym_ATendteleport, + STATE(3847), 1, sym_comment, - [111895] = 4, + [138147] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2458), 1, - sym__directive_parameter, - STATE(3200), 1, + ACTIONS(8660), 1, + anon_sym_ATendpersist, + STATE(3848), 1, sym_comment, - [111908] = 4, + [138157] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2411), 1, - sym__directive_parameter, - STATE(3201), 1, + ACTIONS(8662), 1, + anon_sym_ATendwhile, + STATE(3849), 1, sym_comment, - [111921] = 4, + [138167] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, - anon_sym_LPAREN, - STATE(1502), 1, - sym__directive_parameter, - STATE(3202), 1, + ACTIONS(8664), 1, + anon_sym_ATendforelse, + STATE(3850), 1, sym_comment, - [111934] = 3, - ACTIONS(6960), 1, + [138177] = 3, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3203), 1, + ACTIONS(8666), 1, + anon_sym_ATendforeach, + STATE(3851), 1, sym_comment, - ACTIONS(7307), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [111945] = 4, + [138187] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6534), 1, - anon_sym_LPAREN, - STATE(1501), 1, - sym__directive_parameter, - STATE(3204), 1, + ACTIONS(8668), 1, + anon_sym_ATendfor, + STATE(3852), 1, sym_comment, - [111958] = 4, + [138197] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6548), 1, - anon_sym_LPAREN, - STATE(2138), 1, - sym__directive_parameter, - STATE(3205), 1, + ACTIONS(8670), 1, + aux_sym__custom_token3, + STATE(3853), 1, sym_comment, - [111971] = 4, + [138207] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6500), 1, - anon_sym_LPAREN, - STATE(2001), 1, - sym__directive_parameter, - STATE(3206), 1, + ACTIONS(8672), 1, + anon_sym_ATendcanany, + STATE(3854), 1, sym_comment, - [111984] = 3, - ACTIONS(6960), 1, + [138217] = 3, + ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - STATE(3207), 1, + ACTIONS(8674), 1, + anon_sym_ATendcannot, + STATE(3855), 1, sym_comment, - ACTIONS(7311), 2, - aux_sym_parameter_token1, - anon_sym_RPAREN2, - [111995] = 4, + [138227] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6544), 1, - anon_sym_LPAREN, - STATE(1205), 1, - sym__directive_parameter, - STATE(3208), 1, + ACTIONS(8676), 1, + anon_sym_ATendcan, + STATE(3856), 1, sym_comment, - [112008] = 4, + [138237] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2454), 1, - sym__directive_parameter, - STATE(3209), 1, + ACTIONS(8678), 1, + anon_sym_ATenderror, + STATE(3857), 1, sym_comment, - [112021] = 4, + [138247] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2471), 1, - sym__directive_parameter, - STATE(3210), 1, + ACTIONS(8680), 1, + anon_sym_ATendif, + STATE(3858), 1, sym_comment, - [112034] = 4, + [138257] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6514), 1, - anon_sym_LPAREN, - STATE(1914), 1, - sym__directive_parameter, - STATE(3211), 1, + ACTIONS(8682), 1, + anon_sym_ATendif, + STATE(3859), 1, sym_comment, - [112047] = 4, + [138267] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6514), 1, - anon_sym_LPAREN, - STATE(1915), 1, - sym__directive_parameter, - STATE(3212), 1, + ACTIONS(8684), 1, + anon_sym_ATendenv, + STATE(3860), 1, sym_comment, - [112060] = 4, + [138277] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6262), 1, - anon_sym_LPAREN, - STATE(487), 1, - sym__directive_parameter, - STATE(3213), 1, + ACTIONS(8686), 1, + anon_sym_ATendguest, + STATE(3861), 1, sym_comment, - [112073] = 4, + [138287] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, - anon_sym_LPAREN, - STATE(1443), 1, - sym__directive_parameter, - STATE(3214), 1, + ACTIONS(8688), 1, + anon_sym_ATendauth, + STATE(3862), 1, + sym_comment, + [138297] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8690), 1, + anon_sym_ATendempty, + STATE(3863), 1, + sym_comment, + [138307] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8692), 1, + anon_sym_ATendisset, + STATE(3864), 1, + sym_comment, + [138317] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8694), 1, + anon_sym_ATendunless, + STATE(3865), 1, + sym_comment, + [138327] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8696), 1, + anon_sym_ATendif, + STATE(3866), 1, sym_comment, - [112086] = 4, + [138337] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6536), 1, - anon_sym_LPAREN, - STATE(1442), 1, - sym__directive_parameter, - STATE(3215), 1, + ACTIONS(8698), 1, + anon_sym_ATendPrependOnce, + STATE(3867), 1, sym_comment, - [112099] = 4, + [138347] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2506), 1, - sym__directive_parameter, - STATE(3216), 1, + ACTIONS(8700), 1, + anon_sym_ATendprepend, + STATE(3868), 1, sym_comment, - [112112] = 4, + [138357] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2500), 1, - sym__directive_parameter, - STATE(3217), 1, + ACTIONS(8702), 1, + anon_sym_ATendPushIf, + STATE(3869), 1, sym_comment, - [112125] = 4, + [138367] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, - anon_sym_LPAREN, - STATE(686), 1, - sym__directive_parameter, - STATE(3218), 1, + ACTIONS(8704), 1, + anon_sym_ATendPushOnce, + STATE(3870), 1, sym_comment, - [112138] = 4, + [138377] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6274), 1, - anon_sym_LPAREN, - STATE(687), 1, - sym__directive_parameter, - STATE(3219), 1, + ACTIONS(8706), 1, + anon_sym_ATendpush, + STATE(3871), 1, sym_comment, - [112151] = 4, + [138387] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(1148), 1, - sym__directive_parameter, - STATE(3220), 1, + ACTIONS(8708), 1, + anon_sym_ATendsection, + STATE(3872), 1, sym_comment, - [112164] = 4, + [138397] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6546), 1, - anon_sym_LPAREN, - STATE(1147), 1, - sym__directive_parameter, - STATE(3221), 1, + ACTIONS(8710), 1, + anon_sym_ATendfragment, + STATE(3873), 1, sym_comment, - [112177] = 4, + [138407] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6548), 1, - anon_sym_LPAREN, - STATE(2150), 1, - sym__directive_parameter, - STATE(3222), 1, + ACTIONS(8712), 1, + anon_sym_ATendvolt, + STATE(3874), 1, sym_comment, - [112190] = 4, + [138417] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2492), 1, - sym__directive_parameter, - STATE(3223), 1, + ACTIONS(8714), 1, + anon_sym_ATendteleport, + STATE(3875), 1, sym_comment, - [112203] = 4, + [138427] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, - anon_sym_LPAREN, - STATE(1319), 1, - sym__directive_parameter, - STATE(3224), 1, + ACTIONS(8716), 1, + anon_sym_ATendpersist, + STATE(3876), 1, sym_comment, - [112216] = 4, + [138437] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2392), 1, - sym__directive_parameter, - STATE(3225), 1, + ACTIONS(8718), 1, + anon_sym_ATendwhile, + STATE(3877), 1, sym_comment, - [112229] = 4, + [138447] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6540), 1, - anon_sym_LPAREN, - STATE(1320), 1, - sym__directive_parameter, - STATE(3226), 1, + ACTIONS(8720), 1, + anon_sym_ATendisset, + STATE(3878), 1, sym_comment, - [112242] = 4, + [138457] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, - anon_sym_LPAREN, - STATE(2034), 1, - sym__directive_parameter, - STATE(3227), 1, + ACTIONS(8722), 1, + anon_sym_ATendforeach, + STATE(3879), 1, sym_comment, - [112255] = 4, + [138467] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6470), 1, - anon_sym_LPAREN, - STATE(2033), 1, - sym__directive_parameter, - STATE(3228), 1, + ACTIONS(8724), 1, + anon_sym_ATendfor, + STATE(3880), 1, sym_comment, - [112268] = 4, + [138477] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, - anon_sym_LPAREN, - STATE(756), 1, - sym__directive_parameter, - STATE(3229), 1, + ACTIONS(8726), 1, + aux_sym__custom_token3, + STATE(3881), 1, sym_comment, - [112281] = 4, + [138487] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6272), 1, - anon_sym_LPAREN, - STATE(757), 1, - sym__directive_parameter, - STATE(3230), 1, + ACTIONS(8728), 1, + anon_sym_ATendcanany, + STATE(3882), 1, sym_comment, - [112294] = 4, + [138497] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2485), 1, - sym__directive_parameter, - STATE(3231), 1, + ACTIONS(8730), 1, + anon_sym_ATendcannot, + STATE(3883), 1, sym_comment, - [112307] = 4, + [138507] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2475), 1, - sym__directive_parameter, - STATE(3232), 1, + ACTIONS(8732), 1, + anon_sym_ATendcan, + STATE(3884), 1, sym_comment, - [112320] = 4, + [138517] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, - anon_sym_LPAREN, - STATE(823), 1, - sym__directive_parameter, - STATE(3233), 1, + ACTIONS(8734), 1, + anon_sym_ATenderror, + STATE(3885), 1, sym_comment, - [112333] = 4, + [138527] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6266), 1, - anon_sym_LPAREN, - STATE(824), 1, - sym__directive_parameter, - STATE(3234), 1, + ACTIONS(8736), 1, + anon_sym_ATendif, + STATE(3886), 1, sym_comment, - [112346] = 4, + [138537] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2420), 1, - sym__directive_parameter, - STATE(3235), 1, + ACTIONS(8738), 1, + anon_sym_ATendif, + STATE(3887), 1, sym_comment, - [112359] = 4, + [138547] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2469), 1, - sym__directive_parameter, - STATE(3236), 1, + ACTIONS(8740), 1, + anon_sym_ATendenv, + STATE(3888), 1, sym_comment, - [112372] = 4, + [138557] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, - anon_sym_LPAREN, - STATE(1605), 1, - sym__directive_parameter, - STATE(3237), 1, + ACTIONS(8742), 1, + anon_sym_ATendguest, + STATE(3889), 1, sym_comment, - [112385] = 4, + [138567] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6516), 1, - anon_sym_LPAREN, - STATE(1604), 1, - sym__directive_parameter, - STATE(3238), 1, + ACTIONS(8744), 1, + anon_sym_ATendauth, + STATE(3890), 1, sym_comment, - [112398] = 4, + [138577] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, - anon_sym_LPAREN, - STATE(890), 1, - sym__directive_parameter, - STATE(3239), 1, + ACTIONS(8746), 1, + anon_sym_ATendempty, + STATE(3891), 1, sym_comment, - [112411] = 4, + [138587] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6254), 1, - anon_sym_LPAREN, - STATE(891), 1, - sym__directive_parameter, - STATE(3240), 1, + ACTIONS(8748), 1, + anon_sym_ATendisset, + STATE(3892), 1, sym_comment, - [112424] = 4, + [138597] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2457), 1, - sym__directive_parameter, - STATE(3241), 1, + ACTIONS(8750), 1, + anon_sym_ATendunless, + STATE(3893), 1, sym_comment, - [112437] = 4, + [138607] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2452), 1, - sym__directive_parameter, - STATE(3242), 1, + ACTIONS(8752), 1, + anon_sym_ATendif, + STATE(3894), 1, sym_comment, - [112450] = 4, + [138617] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, - anon_sym_LPAREN, - STATE(957), 1, - sym__directive_parameter, - STATE(3243), 1, + ACTIONS(8754), 1, + anon_sym_ATendPrependOnce, + STATE(3895), 1, sym_comment, - [112463] = 4, + [138627] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6256), 1, - anon_sym_LPAREN, - STATE(958), 1, - sym__directive_parameter, - STATE(3244), 1, + ACTIONS(8756), 1, + anon_sym_ATendprepend, + STATE(3896), 1, sym_comment, - [112476] = 4, + [138637] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2447), 1, - sym__directive_parameter, - STATE(3245), 1, + ACTIONS(8758), 1, + anon_sym_ATendPushIf, + STATE(3897), 1, sym_comment, - [112489] = 4, + [138647] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, - anon_sym_LPAREN, - STATE(1377), 1, - sym__directive_parameter, - STATE(3246), 1, + ACTIONS(8760), 1, + anon_sym_ATendPushOnce, + STATE(3898), 1, sym_comment, - [112502] = 4, + [138657] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2402), 1, - sym__directive_parameter, - STATE(3247), 1, + ACTIONS(8762), 1, + anon_sym_ATendpush, + STATE(3899), 1, sym_comment, - [112515] = 4, + [138667] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6538), 1, - anon_sym_LPAREN, - STATE(1376), 1, - sym__directive_parameter, - STATE(3248), 1, + ACTIONS(8764), 1, + anon_sym_ATendsection, + STATE(3900), 1, sym_comment, - [112528] = 4, + [138677] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, - anon_sym_LPAREN, - STATE(1081), 1, - sym__directive_parameter, - STATE(3249), 1, + ACTIONS(8766), 1, + anon_sym_ATendfragment, + STATE(3901), 1, sym_comment, - [112541] = 4, + [138687] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6264), 1, - anon_sym_LPAREN, - STATE(1080), 1, - sym__directive_parameter, - STATE(3250), 1, + ACTIONS(8768), 1, + anon_sym_ATendvolt, + STATE(3902), 1, sym_comment, - [112554] = 4, + [138697] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2460), 1, - sym__directive_parameter, - STATE(3251), 1, + ACTIONS(8770), 1, + anon_sym_ATendteleport, + STATE(3903), 1, sym_comment, - [112567] = 4, + [138707] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2441), 1, - sym__directive_parameter, - STATE(3252), 1, + ACTIONS(8772), 1, + anon_sym_ATendpersist, + STATE(3904), 1, sym_comment, - [112580] = 4, + [138717] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6500), 1, - anon_sym_LPAREN, - STATE(2000), 1, - sym__directive_parameter, - STATE(3253), 1, + ACTIONS(8774), 1, + anon_sym_ATendwhile, + STATE(3905), 1, sym_comment, - [112593] = 4, + [138727] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7305), 1, - anon_sym_LPAREN, - STATE(2429), 1, - sym__directive_parameter, - STATE(3254), 1, + ACTIONS(8776), 1, + anon_sym_ATendforelse, + STATE(3906), 1, sym_comment, - [112606] = 4, + [138737] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, - anon_sym_LPAREN, - STATE(1018), 1, - sym__directive_parameter, - STATE(3255), 1, + ACTIONS(8778), 1, + anon_sym_ATendforeach, + STATE(3907), 1, sym_comment, - [112619] = 4, + [138747] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(6276), 1, - anon_sym_LPAREN, - STATE(1017), 1, - sym__directive_parameter, - STATE(3256), 1, + ACTIONS(8780), 1, + anon_sym_ATendfor, + STATE(3908), 1, sym_comment, - [112632] = 3, + [138757] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7313), 1, - anon_sym_ATendforelse, - STATE(3257), 1, + ACTIONS(8782), 1, + aux_sym__custom_token3, + STATE(3909), 1, sym_comment, - [112642] = 3, + [138767] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7315), 1, - anon_sym_ATendunless, - STATE(3258), 1, + ACTIONS(8784), 1, + anon_sym_ATendcanany, + STATE(3910), 1, sym_comment, - [112652] = 3, + [138777] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7317), 1, - anon_sym_ATendisset, - STATE(3259), 1, + ACTIONS(8786), 1, + anon_sym_ATendcannot, + STATE(3911), 1, sym_comment, - [112662] = 3, + [138787] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7319), 1, - anon_sym_ATendempty, - STATE(3260), 1, + ACTIONS(8788), 1, + anon_sym_ATendcan, + STATE(3912), 1, sym_comment, - [112672] = 3, + [138797] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7321), 1, - anon_sym_ATendauth, - STATE(3261), 1, + ACTIONS(8790), 1, + anon_sym_ATenderror, + STATE(3913), 1, sym_comment, - [112682] = 3, + [138807] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7323), 1, - anon_sym_ATendguest, - STATE(3262), 1, + ACTIONS(8792), 1, + anon_sym_ATendif, + STATE(3914), 1, sym_comment, - [112692] = 3, + [138817] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7325), 1, - anon_sym_ATendfragment, - STATE(3263), 1, + ACTIONS(8794), 1, + anon_sym_ATendif, + STATE(3915), 1, sym_comment, - [112702] = 3, + [138827] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7327), 1, + ACTIONS(8796), 1, anon_sym_ATendenv, - STATE(3264), 1, + STATE(3916), 1, sym_comment, - [112712] = 3, + [138837] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7329), 1, - anon_sym_ATendif, - STATE(3265), 1, + ACTIONS(8798), 1, + anon_sym_ATendguest, + STATE(3917), 1, sym_comment, - [112722] = 3, + [138847] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7331), 1, - anon_sym_ATendif, - STATE(3266), 1, + ACTIONS(8800), 1, + anon_sym_ATendauth, + STATE(3918), 1, sym_comment, - [112732] = 3, + [138857] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7333), 1, - anon_sym_ATenderror, - STATE(3267), 1, + ACTIONS(8802), 1, + anon_sym_ATendempty, + STATE(3919), 1, sym_comment, - [112742] = 3, + [138867] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7335), 1, - aux_sym__custom_token3, - STATE(3268), 1, + ACTIONS(8804), 1, + anon_sym_ATendfragment, + STATE(3920), 1, sym_comment, - [112752] = 3, + [138877] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7337), 1, - anon_sym_ATendPushOnce, - STATE(3269), 1, + ACTIONS(8806), 1, + anon_sym_ATendunless, + STATE(3921), 1, sym_comment, - [112762] = 3, + [138887] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7339), 1, - anon_sym_ATendfor, - STATE(3270), 1, + ACTIONS(8808), 1, + anon_sym_ATendif, + STATE(3922), 1, sym_comment, - [112772] = 3, + [138897] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7341), 1, - anon_sym_ATendforeach, - STATE(3271), 1, + ACTIONS(8810), 1, + anon_sym_ATendPrependOnce, + STATE(3923), 1, sym_comment, - [112782] = 3, + [138907] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7343), 1, - anon_sym_ATendforelse, - STATE(3272), 1, + ACTIONS(8812), 1, + anon_sym_ATendprepend, + STATE(3924), 1, sym_comment, - [112792] = 3, + [138917] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7345), 1, - anon_sym_ATendwhile, - STATE(3273), 1, + ACTIONS(8814), 1, + anon_sym_ATendPushIf, + STATE(3925), 1, sym_comment, - [112802] = 3, + [138927] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7347), 1, - anon_sym_ATendpersist, - STATE(3274), 1, + ACTIONS(8816), 1, + anon_sym_ATendPushOnce, + STATE(3926), 1, sym_comment, - [112812] = 3, + [138937] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7349), 1, - anon_sym_ATendteleport, - STATE(3275), 1, + ACTIONS(8818), 1, + anon_sym_ATendpush, + STATE(3927), 1, sym_comment, - [112822] = 3, + [138947] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7351), 1, - anon_sym_ATendvolt, - STATE(3276), 1, + ACTIONS(8820), 1, + anon_sym_ATendsection, + STATE(3928), 1, sym_comment, - [112832] = 3, + [138957] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7353), 1, + ACTIONS(8822), 1, anon_sym_ATendfragment, - STATE(3277), 1, + STATE(3929), 1, sym_comment, - [112842] = 3, + [138967] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7355), 1, - anon_sym_ATendsection, - STATE(3278), 1, + ACTIONS(8824), 1, + anon_sym_ATendvolt, + STATE(3930), 1, sym_comment, - [112852] = 3, + [138977] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7357), 1, - anon_sym_ATendpush, - STATE(3279), 1, + ACTIONS(8826), 1, + anon_sym_ATendteleport, + STATE(3931), 1, sym_comment, - [112862] = 3, + [138987] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7359), 1, - anon_sym_ATendsection, - STATE(3280), 1, + ACTIONS(8828), 1, + anon_sym_ATendpersist, + STATE(3932), 1, sym_comment, - [112872] = 3, + [138997] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7361), 1, - anon_sym_ATendpush, - STATE(3281), 1, + ACTIONS(8830), 1, + anon_sym_ATendwhile, + STATE(3933), 1, sym_comment, - [112882] = 3, + [139007] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7363), 1, - anon_sym_ATendPushOnce, - STATE(3282), 1, + ACTIONS(8832), 1, + anon_sym_ATendforelse, + STATE(3934), 1, sym_comment, - [112892] = 3, + [139017] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7365), 1, - anon_sym_ATendPushIf, - STATE(3283), 1, + ACTIONS(8834), 1, + anon_sym_ATendforeach, + STATE(3935), 1, sym_comment, - [112902] = 3, + [139027] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7367), 1, - anon_sym_ATendprepend, - STATE(3284), 1, + ACTIONS(8836), 1, + anon_sym_ATendfor, + STATE(3936), 1, sym_comment, - [112912] = 3, + [139037] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7369), 1, - anon_sym_ATendPrependOnce, - STATE(3285), 1, + ACTIONS(8838), 1, + aux_sym__custom_token3, + STATE(3937), 1, sym_comment, - [112922] = 3, + [139047] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7371), 1, - anon_sym_ATendif, - STATE(3286), 1, + ACTIONS(8840), 1, + anon_sym_ATendcanany, + STATE(3938), 1, sym_comment, - [112932] = 3, + [139057] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7373), 1, - anon_sym_ATendwhile, - STATE(3287), 1, + ACTIONS(8842), 1, + anon_sym_ATendcannot, + STATE(3939), 1, sym_comment, - [112942] = 3, + [139067] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7375), 1, - anon_sym_ATendPushIf, - STATE(3288), 1, + ACTIONS(8844), 1, + anon_sym_ATendcan, + STATE(3940), 1, sym_comment, - [112952] = 3, + [139077] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7377), 1, - anon_sym_ATendprepend, - STATE(3289), 1, + ACTIONS(8846), 1, + anon_sym_ATenderror, + STATE(3941), 1, sym_comment, - [112962] = 3, + [139087] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7379), 1, - anon_sym_ATendPrependOnce, - STATE(3290), 1, + ACTIONS(8848), 1, + anon_sym_ATendif, + STATE(3942), 1, sym_comment, - [112972] = 3, + [139097] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7381), 1, + ACTIONS(8850), 1, anon_sym_ATendif, - STATE(3291), 1, + STATE(3943), 1, sym_comment, - [112982] = 3, + [139107] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7383), 1, - anon_sym_ATendunless, - STATE(3292), 1, + ACTIONS(8852), 1, + anon_sym_ATendenv, + STATE(3944), 1, sym_comment, - [112992] = 3, + [139117] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7385), 1, - anon_sym_ATendisset, - STATE(3293), 1, + ACTIONS(8854), 1, + anon_sym_ATendguest, + STATE(3945), 1, + sym_comment, + [139127] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8856), 1, + anon_sym_ATendauth, + STATE(3946), 1, sym_comment, - [113002] = 3, + [139137] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7387), 1, + ACTIONS(8858), 1, anon_sym_ATendempty, - STATE(3294), 1, + STATE(3947), 1, sym_comment, - [113012] = 3, + [139147] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7389), 1, - anon_sym_ATendauth, - STATE(3295), 1, + ACTIONS(8860), 1, + anon_sym_ATendisset, + STATE(3948), 1, sym_comment, - [113022] = 3, + [139157] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7391), 1, - anon_sym_ATendguest, - STATE(3296), 1, + ACTIONS(8862), 1, + anon_sym_ATendunless, + STATE(3949), 1, sym_comment, - [113032] = 3, + [139167] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7393), 1, + ACTIONS(8864), 1, anon_sym_ATendif, - STATE(3297), 1, + STATE(3950), 1, sym_comment, - [113042] = 3, + [139177] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7395), 1, - anon_sym_ATendvolt, - STATE(3298), 1, + ACTIONS(8866), 1, + anon_sym_ATendPrependOnce, + STATE(3951), 1, sym_comment, - [113052] = 3, + [139187] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7397), 1, - anon_sym_ATendteleport, - STATE(3299), 1, + ACTIONS(8868), 1, + anon_sym_ATendprepend, + STATE(3952), 1, sym_comment, - [113062] = 3, + [139197] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7399), 1, - anon_sym_ATendpersist, - STATE(3300), 1, + ACTIONS(8870), 1, + anon_sym_ATendPushIf, + STATE(3953), 1, sym_comment, - [113072] = 3, + [139207] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7401), 1, - anon_sym_ATendwhile, - STATE(3301), 1, + ACTIONS(8872), 1, + anon_sym_ATendPushOnce, + STATE(3954), 1, sym_comment, - [113082] = 3, + [139217] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7403), 1, - anon_sym_ATendforelse, - STATE(3302), 1, + ACTIONS(8874), 1, + anon_sym_ATendpush, + STATE(3955), 1, sym_comment, - [113092] = 3, + [139227] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7405), 1, - anon_sym_ATendforeach, - STATE(3303), 1, + ACTIONS(8876), 1, + anon_sym_ATendsection, + STATE(3956), 1, sym_comment, - [113102] = 3, + [139237] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7407), 1, - anon_sym_ATendfor, - STATE(3304), 1, + ACTIONS(8878), 1, + anon_sym_ATendenv, + STATE(3957), 1, sym_comment, - [113112] = 3, + [139247] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7409), 1, - aux_sym__custom_token3, - STATE(3305), 1, + ACTIONS(8880), 1, + anon_sym_ATendvolt, + STATE(3958), 1, sym_comment, - [113122] = 3, + [139257] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7411), 1, - anon_sym_ATenderror, - STATE(3306), 1, + ACTIONS(8882), 1, + anon_sym_ATendteleport, + STATE(3959), 1, sym_comment, - [113132] = 3, + [139267] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7413), 1, - anon_sym_ATendif, - STATE(3307), 1, + ACTIONS(8884), 1, + anon_sym_ATendpersist, + STATE(3960), 1, sym_comment, - [113142] = 3, + [139277] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7415), 1, - anon_sym_ATendif, - STATE(3308), 1, + ACTIONS(8886), 1, + anon_sym_ATendwhile, + STATE(3961), 1, sym_comment, - [113152] = 3, + [139287] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7417), 1, - anon_sym_ATendenv, - STATE(3309), 1, + ACTIONS(8888), 1, + anon_sym_ATendforelse, + STATE(3962), 1, sym_comment, - [113162] = 3, + [139297] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7419), 1, - anon_sym_ATendif, - STATE(3310), 1, + ACTIONS(8890), 1, + anon_sym_ATendforeach, + STATE(3963), 1, sym_comment, - [113172] = 3, + [139307] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7421), 1, - anon_sym_ATendguest, - STATE(3311), 1, + ACTIONS(8892), 1, + anon_sym_ATendfor, + STATE(3964), 1, sym_comment, - [113182] = 3, + [139317] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7423), 1, - anon_sym_ATendauth, - STATE(3312), 1, + ACTIONS(8894), 1, + aux_sym__custom_token3, + STATE(3965), 1, sym_comment, - [113192] = 3, + [139327] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7425), 1, - anon_sym_ATendempty, - STATE(3313), 1, + ACTIONS(8896), 1, + anon_sym_ATendcanany, + STATE(3966), 1, sym_comment, - [113202] = 3, + [139337] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7427), 1, - anon_sym_ATendisset, - STATE(3314), 1, + ACTIONS(8898), 1, + anon_sym_ATendcannot, + STATE(3967), 1, sym_comment, - [113212] = 3, + [139347] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7429), 1, - anon_sym_ATendunless, - STATE(3315), 1, + ACTIONS(8900), 1, + anon_sym_ATendcan, + STATE(3968), 1, sym_comment, - [113222] = 3, + [139357] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7431), 1, - anon_sym_ATendif, - STATE(3316), 1, + ACTIONS(8902), 1, + anon_sym_ATenderror, + STATE(3969), 1, sym_comment, - [113232] = 3, + [139367] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7433), 1, - anon_sym_ATendPrependOnce, - STATE(3317), 1, + ACTIONS(8904), 1, + anon_sym_ATendif, + STATE(3970), 1, sym_comment, - [113242] = 3, + [139377] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7435), 1, - anon_sym_ATendprepend, - STATE(3318), 1, + ACTIONS(8906), 1, + anon_sym_ATendif, + STATE(3971), 1, sym_comment, - [113252] = 3, + [139387] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7437), 1, - anon_sym_ATendPushIf, - STATE(3319), 1, + ACTIONS(8908), 1, + anon_sym_ATendenv, + STATE(3972), 1, sym_comment, - [113262] = 3, + [139397] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7439), 1, - anon_sym_ATendPushOnce, - STATE(3320), 1, + ACTIONS(8910), 1, + anon_sym_ATendguest, + STATE(3973), 1, sym_comment, - [113272] = 3, + [139407] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7441), 1, - anon_sym_ATendpush, - STATE(3321), 1, + ACTIONS(8912), 1, + anon_sym_ATendauth, + STATE(3974), 1, sym_comment, - [113282] = 3, + [139417] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7443), 1, - anon_sym_ATenderror, - STATE(3322), 1, + ACTIONS(8914), 1, + anon_sym_ATendempty, + STATE(3975), 1, sym_comment, - [113292] = 3, + [139427] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7445), 1, - aux_sym__custom_token3, - STATE(3323), 1, + ACTIONS(8916), 1, + anon_sym_ATendisset, + STATE(3976), 1, sym_comment, - [113302] = 3, + [139437] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7447), 1, - anon_sym_ATendsection, - STATE(3324), 1, + ACTIONS(8918), 1, + anon_sym_ATendunless, + STATE(3977), 1, sym_comment, - [113312] = 3, + [139447] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7449), 1, - anon_sym_ATendfragment, - STATE(3325), 1, + ACTIONS(8920), 1, + anon_sym_ATendif, + STATE(3978), 1, sym_comment, - [113322] = 3, + [139457] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7451), 1, - anon_sym_ATendfor, - STATE(3326), 1, + ACTIONS(8922), 1, + anon_sym_ATendPrependOnce, + STATE(3979), 1, sym_comment, - [113332] = 3, + [139467] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7453), 1, - anon_sym_ATendforeach, - STATE(3327), 1, + ACTIONS(8924), 1, + anon_sym_ATendprepend, + STATE(3980), 1, sym_comment, - [113342] = 3, + [139477] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7455), 1, - anon_sym_ATendforelse, - STATE(3328), 1, + ACTIONS(8926), 1, + anon_sym_ATendPushIf, + STATE(3981), 1, sym_comment, - [113352] = 3, + [139487] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7457), 1, - anon_sym_ATendwhile, - STATE(3329), 1, + ACTIONS(8928), 1, + anon_sym_ATendPushOnce, + STATE(3982), 1, sym_comment, - [113362] = 3, + [139497] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7459), 1, - anon_sym_ATendpersist, - STATE(3330), 1, + ACTIONS(8930), 1, + anon_sym_ATendpush, + STATE(3983), 1, sym_comment, - [113372] = 3, + [139507] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7461), 1, - anon_sym_ATendteleport, - STATE(3331), 1, + ACTIONS(8932), 1, + anon_sym_ATendsection, + STATE(3984), 1, sym_comment, - [113382] = 3, + [139517] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7463), 1, - anon_sym_ATendvolt, - STATE(3332), 1, + ACTIONS(8934), 1, + anon_sym_ATendfragment, + STATE(3985), 1, sym_comment, - [113392] = 3, + [139527] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7465), 1, + ACTIONS(8936), 1, anon_sym_ATendvolt, - STATE(3333), 1, + STATE(3986), 1, sym_comment, - [113402] = 3, + [139537] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7467), 1, + ACTIONS(8938), 1, anon_sym_ATendteleport, - STATE(3334), 1, + STATE(3987), 1, sym_comment, - [113412] = 3, + [139547] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7469), 1, + ACTIONS(8940), 1, anon_sym_ATendpersist, - STATE(3335), 1, + STATE(3988), 1, sym_comment, - [113422] = 3, + [139557] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7471), 1, - anon_sym_ATendauth, - STATE(3336), 1, + ACTIONS(8942), 1, + anon_sym_ATendwhile, + STATE(3989), 1, sym_comment, - [113432] = 3, + [139567] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7473), 1, + ACTIONS(8944), 1, anon_sym_ATendforelse, - STATE(3337), 1, + STATE(3990), 1, sym_comment, - [113442] = 3, + [139577] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7475), 1, + ACTIONS(8946), 1, anon_sym_ATendforeach, - STATE(3338), 1, + STATE(3991), 1, sym_comment, - [113452] = 3, + [139587] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7477), 1, + ACTIONS(8948), 1, anon_sym_ATendfor, - STATE(3339), 1, + STATE(3992), 1, sym_comment, - [113462] = 3, + [139597] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7479), 1, + ACTIONS(8950), 1, aux_sym__custom_token3, - STATE(3340), 1, + STATE(3993), 1, + sym_comment, + [139607] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8952), 1, + anon_sym_ATendcanany, + STATE(3994), 1, sym_comment, - [113472] = 3, + [139617] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7481), 1, + ACTIONS(8954), 1, + anon_sym_ATendcannot, + STATE(3995), 1, + sym_comment, + [139627] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8956), 1, + anon_sym_ATendcan, + STATE(3996), 1, + sym_comment, + [139637] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(8958), 1, anon_sym_ATenderror, - STATE(3341), 1, + STATE(3997), 1, sym_comment, - [113482] = 3, + [139647] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7483), 1, + ACTIONS(8960), 1, anon_sym_ATendif, - STATE(3342), 1, + STATE(3998), 1, sym_comment, - [113492] = 3, + [139657] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7485), 1, + ACTIONS(8962), 1, anon_sym_ATendif, - STATE(3343), 1, + STATE(3999), 1, sym_comment, - [113502] = 3, + [139667] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7487), 1, + ACTIONS(8964), 1, anon_sym_ATendenv, - STATE(3344), 1, + STATE(4000), 1, sym_comment, - [113512] = 3, + [139677] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7489), 1, + ACTIONS(8966), 1, anon_sym_ATendguest, - STATE(3345), 1, + STATE(4001), 1, sym_comment, - [113522] = 3, + [139687] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7491), 1, - anon_sym_ATendPrependOnce, - STATE(3346), 1, + ACTIONS(8968), 1, + anon_sym_ATendauth, + STATE(4002), 1, sym_comment, - [113532] = 3, + [139697] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7493), 1, + ACTIONS(8970), 1, anon_sym_ATendempty, - STATE(3347), 1, + STATE(4003), 1, sym_comment, - [113542] = 3, + [139707] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7495), 1, + ACTIONS(8972), 1, anon_sym_ATendisset, - STATE(3348), 1, + STATE(4004), 1, sym_comment, - [113552] = 3, + [139717] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7497), 1, + ACTIONS(8974), 1, anon_sym_ATendunless, - STATE(3349), 1, + STATE(4005), 1, sym_comment, - [113562] = 3, + [139727] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7499), 1, + ACTIONS(8976), 1, anon_sym_ATendif, - STATE(3350), 1, + STATE(4006), 1, sym_comment, - [113572] = 3, + [139737] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7501), 1, + ACTIONS(8978), 1, anon_sym_ATendPrependOnce, - STATE(3351), 1, + STATE(4007), 1, sym_comment, - [113582] = 3, + [139747] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7503), 1, + ACTIONS(8980), 1, anon_sym_ATendprepend, - STATE(3352), 1, + STATE(4008), 1, sym_comment, - [113592] = 3, + [139757] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7505), 1, + ACTIONS(8982), 1, anon_sym_ATendPushIf, - STATE(3353), 1, + STATE(4009), 1, sym_comment, - [113602] = 3, + [139767] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7507), 1, + ACTIONS(8984), 1, anon_sym_ATendPushOnce, - STATE(3354), 1, + STATE(4010), 1, sym_comment, - [113612] = 3, + [139777] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7509), 1, + ACTIONS(8986), 1, anon_sym_ATendpush, - STATE(3355), 1, + STATE(4011), 1, sym_comment, - [113622] = 3, + [139787] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7511), 1, + ACTIONS(8988), 1, anon_sym_ATendsection, - STATE(3356), 1, + STATE(4012), 1, sym_comment, - [113632] = 3, + [139797] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7513), 1, + ACTIONS(8990), 1, anon_sym_ATendfragment, - STATE(3357), 1, + STATE(4013), 1, sym_comment, - [113642] = 3, + [139807] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7515), 1, - anon_sym_ATendfragment, - STATE(3358), 1, + ACTIONS(8992), 1, + anon_sym_ATendvolt, + STATE(4014), 1, sym_comment, - [113652] = 3, + [139817] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7517), 1, - anon_sym_ATendsection, - STATE(3359), 1, + ACTIONS(8994), 1, + anon_sym_ATendteleport, + STATE(4015), 1, sym_comment, - [113662] = 3, + [139827] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7519), 1, - anon_sym_ATendpush, - STATE(3360), 1, + ACTIONS(8996), 1, + anon_sym_ATendpersist, + STATE(4016), 1, sym_comment, - [113672] = 3, + [139837] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7521), 1, - anon_sym_ATendPushOnce, - STATE(3361), 1, + ACTIONS(8998), 1, + anon_sym_ATendwhile, + STATE(4017), 1, sym_comment, - [113682] = 3, + [139847] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7523), 1, - anon_sym_ATendPushIf, - STATE(3362), 1, + ACTIONS(9000), 1, + anon_sym_ATendforelse, + STATE(4018), 1, sym_comment, - [113692] = 3, + [139857] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7525), 1, - anon_sym_ATendprepend, - STATE(3363), 1, + ACTIONS(9002), 1, + anon_sym_ATendforeach, + STATE(4019), 1, sym_comment, - [113702] = 3, + [139867] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7527), 1, - anon_sym_ATendPrependOnce, - STATE(3364), 1, + ACTIONS(9004), 1, + anon_sym_ATendfor, + STATE(4020), 1, + sym_comment, + [139877] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9006), 1, + aux_sym__custom_token3, + STATE(4021), 1, + sym_comment, + [139887] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9008), 1, + anon_sym_ATendcanany, + STATE(4022), 1, + sym_comment, + [139897] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9010), 1, + anon_sym_ATendcannot, + STATE(4023), 1, sym_comment, - [113712] = 3, + [139907] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7529), 1, + ACTIONS(9012), 1, + anon_sym_ATendcan, + STATE(4024), 1, + sym_comment, + [139917] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9014), 1, + anon_sym_ATenderror, + STATE(4025), 1, + sym_comment, + [139927] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9016), 1, anon_sym_ATendif, - STATE(3365), 1, + STATE(4026), 1, sym_comment, - [113722] = 3, + [139937] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7531), 1, - anon_sym_ATendunless, - STATE(3366), 1, + ACTIONS(9018), 1, + anon_sym_ATendif, + STATE(4027), 1, sym_comment, - [113732] = 3, + [139947] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7533), 1, - anon_sym_ATendisset, - STATE(3367), 1, + ACTIONS(9020), 1, + anon_sym_ATendfor, + STATE(4028), 1, sym_comment, - [113742] = 3, + [139957] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7535), 1, - anon_sym_ATendempty, - STATE(3368), 1, + ACTIONS(9022), 1, + anon_sym_ATendguest, + STATE(4029), 1, sym_comment, - [113752] = 3, + [139967] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7537), 1, + ACTIONS(9024), 1, anon_sym_ATendauth, - STATE(3369), 1, + STATE(4030), 1, sym_comment, - [113762] = 3, + [139977] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7539), 1, - anon_sym_ATendvolt, - STATE(3370), 1, + ACTIONS(9026), 1, + anon_sym_ATendempty, + STATE(4031), 1, sym_comment, - [113772] = 3, + [139987] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7541), 1, - anon_sym_ATendteleport, - STATE(3371), 1, + ACTIONS(9028), 1, + anon_sym_ATendisset, + STATE(4032), 1, sym_comment, - [113782] = 3, + [139997] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7543), 1, - anon_sym_ATendpersist, - STATE(3372), 1, + ACTIONS(9030), 1, + anon_sym_ATendunless, + STATE(4033), 1, sym_comment, - [113792] = 3, + [140007] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7545), 1, - anon_sym_ATendwhile, - STATE(3373), 1, + ACTIONS(9032), 1, + anon_sym_ATendif, + STATE(4034), 1, sym_comment, - [113802] = 3, + [140017] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7547), 1, - anon_sym_ATendforelse, - STATE(3374), 1, + ACTIONS(9034), 1, + anon_sym_ATendPrependOnce, + STATE(4035), 1, sym_comment, - [113812] = 3, + [140027] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7549), 1, - anon_sym_ATendforeach, - STATE(3375), 1, + ACTIONS(9036), 1, + anon_sym_ATendprepend, + STATE(4036), 1, sym_comment, - [113822] = 3, + [140037] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7551), 1, - anon_sym_ATendfor, - STATE(3376), 1, + ACTIONS(9038), 1, + anon_sym_ATendPushIf, + STATE(4037), 1, sym_comment, - [113832] = 3, + [140047] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7553), 1, - aux_sym__custom_token3, - STATE(3377), 1, + ACTIONS(9040), 1, + anon_sym_ATendPushOnce, + STATE(4038), 1, sym_comment, - [113842] = 3, + [140057] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7555), 1, - anon_sym_ATenderror, - STATE(3378), 1, + ACTIONS(9042), 1, + anon_sym_ATendpush, + STATE(4039), 1, sym_comment, - [113852] = 3, + [140067] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7557), 1, - anon_sym_ATendif, - STATE(3379), 1, + ACTIONS(9044), 1, + anon_sym_ATendsection, + STATE(4040), 1, sym_comment, - [113862] = 3, + [140077] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7559), 1, - anon_sym_ATendif, - STATE(3380), 1, + ACTIONS(9046), 1, + anon_sym_ATendfragment, + STATE(4041), 1, sym_comment, - [113872] = 3, + [140087] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7561), 1, - anon_sym_ATendenv, - STATE(3381), 1, + ACTIONS(9048), 1, + anon_sym_ATendvolt, + STATE(4042), 1, sym_comment, - [113882] = 3, + [140097] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7563), 1, - anon_sym_ATendguest, - STATE(3382), 1, + ACTIONS(9050), 1, + anon_sym_ATendteleport, + STATE(4043), 1, sym_comment, - [113892] = 3, + [140107] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7565), 1, - anon_sym_ATendguest, - STATE(3383), 1, + ACTIONS(9052), 1, + anon_sym_ATendpersist, + STATE(4044), 1, sym_comment, - [113902] = 3, + [140117] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7567), 1, - anon_sym_ATendauth, - STATE(3384), 1, + ACTIONS(9054), 1, + anon_sym_ATendwhile, + STATE(4045), 1, sym_comment, - [113912] = 3, + [140127] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7569), 1, - anon_sym_ATendempty, - STATE(3385), 1, + ACTIONS(9056), 1, + anon_sym_ATendforelse, + STATE(4046), 1, sym_comment, - [113922] = 3, + [140137] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7571), 1, - anon_sym_ATendisset, - STATE(3386), 1, + ACTIONS(9058), 1, + anon_sym_ATendforeach, + STATE(4047), 1, sym_comment, - [113932] = 3, + [140147] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7573), 1, - anon_sym_ATendunless, - STATE(3387), 1, + ACTIONS(9060), 1, + anon_sym_ATendfragment, + STATE(4048), 1, sym_comment, - [113942] = 3, + [140157] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_ATendif, - STATE(3388), 1, + ACTIONS(9062), 1, + aux_sym__custom_token3, + STATE(4049), 1, sym_comment, - [113952] = 3, + [140167] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7577), 1, - anon_sym_ATendPrependOnce, - STATE(3389), 1, + ACTIONS(9064), 1, + anon_sym_ATendcanany, + STATE(4050), 1, sym_comment, - [113962] = 3, + [140177] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7579), 1, - anon_sym_ATendprepend, - STATE(3390), 1, + ACTIONS(9066), 1, + anon_sym_ATendcannot, + STATE(4051), 1, sym_comment, - [113972] = 3, + [140187] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7581), 1, - anon_sym_ATendPushIf, - STATE(3391), 1, + ACTIONS(9068), 1, + anon_sym_ATendcan, + STATE(4052), 1, sym_comment, - [113982] = 3, + [140197] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7583), 1, - anon_sym_ATendPushOnce, - STATE(3392), 1, + ACTIONS(9070), 1, + anon_sym_ATenderror, + STATE(4053), 1, sym_comment, - [113992] = 3, + [140207] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7585), 1, - anon_sym_ATendpush, - STATE(3393), 1, + ACTIONS(9072), 1, + anon_sym_ATendif, + STATE(4054), 1, sym_comment, - [114002] = 3, + [140217] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7587), 1, + ACTIONS(9074), 1, + anon_sym_ATendif, + STATE(4055), 1, + sym_comment, + [140227] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9076), 1, anon_sym_ATendenv, - STATE(3394), 1, + STATE(4056), 1, sym_comment, - [114012] = 3, + [140237] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7589), 1, - anon_sym_ATendif, - STATE(3395), 1, + ACTIONS(9078), 1, + anon_sym_ATendguest, + STATE(4057), 1, sym_comment, - [114022] = 3, + [140247] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7591), 1, - anon_sym_ATendsection, - STATE(3396), 1, + ACTIONS(9080), 1, + anon_sym_ATendauth, + STATE(4058), 1, sym_comment, - [114032] = 3, + [140257] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7593), 1, - anon_sym_ATendfragment, - STATE(3397), 1, + ACTIONS(9082), 1, + anon_sym_ATendempty, + STATE(4059), 1, sym_comment, - [114042] = 3, + [140267] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7595), 1, - anon_sym_ATendif, - STATE(3398), 1, + ACTIONS(9084), 1, + anon_sym_ATendisset, + STATE(4060), 1, sym_comment, - [114052] = 3, + [140277] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7597), 1, - anon_sym_ATenderror, - STATE(3399), 1, + ACTIONS(9086), 1, + anon_sym_ATendunless, + STATE(4061), 1, sym_comment, - [114062] = 3, + [140287] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7599), 1, - anon_sym_ATendenv, - STATE(3400), 1, + ACTIONS(9088), 1, + anon_sym_ATendif, + STATE(4062), 1, sym_comment, - [114072] = 3, + [140297] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7601), 1, - anon_sym_ATendfor, - STATE(3401), 1, + ACTIONS(9090), 1, + anon_sym_ATendPrependOnce, + STATE(4063), 1, sym_comment, - [114082] = 3, + [140307] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7603), 1, - anon_sym_ATendforeach, - STATE(3402), 1, + ACTIONS(9092), 1, + anon_sym_ATendprepend, + STATE(4064), 1, sym_comment, - [114092] = 3, + [140317] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7605), 1, - anon_sym_ATendforelse, - STATE(3403), 1, + ACTIONS(9094), 1, + anon_sym_ATendPushIf, + STATE(4065), 1, sym_comment, - [114102] = 3, + [140327] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7607), 1, - anon_sym_ATendwhile, - STATE(3404), 1, + ACTIONS(9096), 1, + anon_sym_ATendPushOnce, + STATE(4066), 1, sym_comment, - [114112] = 3, + [140337] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7609), 1, - anon_sym_ATendpersist, - STATE(3405), 1, + ACTIONS(9098), 1, + anon_sym_ATendpush, + STATE(4067), 1, sym_comment, - [114122] = 3, + [140347] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7611), 1, - anon_sym_ATendteleport, - STATE(3406), 1, + ACTIONS(9100), 1, + anon_sym_ATendsection, + STATE(4068), 1, sym_comment, - [114132] = 3, + [140357] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7613), 1, - anon_sym_ATendvolt, - STATE(3407), 1, + ACTIONS(9102), 1, + anon_sym_ATendfragment, + STATE(4069), 1, sym_comment, - [114142] = 3, + [140367] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7615), 1, + ACTIONS(9104), 1, anon_sym_ATendvolt, - STATE(3408), 1, + STATE(4070), 1, sym_comment, - [114152] = 3, + [140377] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7617), 1, + ACTIONS(9106), 1, anon_sym_ATendteleport, - STATE(3409), 1, + STATE(4071), 1, sym_comment, - [114162] = 3, + [140387] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7619), 1, + ACTIONS(9108), 1, anon_sym_ATendpersist, - STATE(3410), 1, + STATE(4072), 1, sym_comment, - [114172] = 3, + [140397] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7621), 1, + ACTIONS(9110), 1, anon_sym_ATendwhile, - STATE(3411), 1, + STATE(4073), 1, sym_comment, - [114182] = 3, + [140407] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7623), 1, + ACTIONS(9112), 1, anon_sym_ATendforelse, - STATE(3412), 1, + STATE(4074), 1, sym_comment, - [114192] = 3, + [140417] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7625), 1, + ACTIONS(9114), 1, anon_sym_ATendforeach, - STATE(3413), 1, + STATE(4075), 1, sym_comment, - [114202] = 3, + [140427] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7627), 1, + ACTIONS(9116), 1, anon_sym_ATendfor, - STATE(3414), 1, + STATE(4076), 1, sym_comment, - [114212] = 3, + [140437] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7629), 1, + ACTIONS(9118), 1, aux_sym__custom_token3, - STATE(3415), 1, + STATE(4077), 1, + sym_comment, + [140447] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9120), 1, + anon_sym_ATendcanany, + STATE(4078), 1, + sym_comment, + [140457] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9122), 1, + anon_sym_ATendcannot, + STATE(4079), 1, + sym_comment, + [140467] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9124), 1, + anon_sym_ATendcan, + STATE(4080), 1, sym_comment, - [114222] = 3, + [140477] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7631), 1, + ACTIONS(9126), 1, anon_sym_ATenderror, - STATE(3416), 1, + STATE(4081), 1, sym_comment, - [114232] = 3, + [140487] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7633), 1, + ACTIONS(9128), 1, anon_sym_ATendif, - STATE(3417), 1, + STATE(4082), 1, sym_comment, - [114242] = 3, + [140497] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7635), 1, + ACTIONS(9130), 1, anon_sym_ATendif, - STATE(3418), 1, + STATE(4083), 1, sym_comment, - [114252] = 3, + [140507] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7637), 1, + ACTIONS(9132), 1, anon_sym_ATendenv, - STATE(3419), 1, + STATE(4084), 1, sym_comment, - [114262] = 3, + [140517] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7639), 1, + ACTIONS(9134), 1, anon_sym_ATendguest, - STATE(3420), 1, + STATE(4085), 1, sym_comment, - [114272] = 3, + [140527] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7641), 1, + ACTIONS(9136), 1, anon_sym_ATendauth, - STATE(3421), 1, + STATE(4086), 1, sym_comment, - [114282] = 3, + [140537] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7643), 1, + ACTIONS(9138), 1, anon_sym_ATendempty, - STATE(3422), 1, + STATE(4087), 1, sym_comment, - [114292] = 3, + [140547] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7645), 1, + ACTIONS(9140), 1, anon_sym_ATendisset, - STATE(3423), 1, - sym_comment, - [114302] = 3, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7647), 1, - anon_sym_ATbreak, - STATE(3424), 1, + STATE(4088), 1, sym_comment, - [114312] = 3, + [140557] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7649), 1, + ACTIONS(9142), 1, anon_sym_ATendunless, - STATE(3425), 1, + STATE(4089), 1, sym_comment, - [114322] = 3, + [140567] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7651), 1, + ACTIONS(9144), 1, anon_sym_ATendif, - STATE(3426), 1, + STATE(4090), 1, sym_comment, - [114332] = 3, + [140577] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7653), 1, + ACTIONS(9146), 1, anon_sym_ATendPrependOnce, - STATE(3427), 1, + STATE(4091), 1, sym_comment, - [114342] = 3, + [140587] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7655), 1, + ACTIONS(9148), 1, anon_sym_ATendprepend, - STATE(3428), 1, + STATE(4092), 1, sym_comment, - [114352] = 3, + [140597] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7657), 1, + ACTIONS(9150), 1, anon_sym_ATendPushIf, - STATE(3429), 1, + STATE(4093), 1, sym_comment, - [114362] = 3, + [140607] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7659), 1, + ACTIONS(9152), 1, anon_sym_ATendPushOnce, - STATE(3430), 1, + STATE(4094), 1, sym_comment, - [114372] = 3, + [140617] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7661), 1, + ACTIONS(9154), 1, anon_sym_ATendpush, - STATE(3431), 1, + STATE(4095), 1, sym_comment, - [114382] = 3, + [140627] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7663), 1, - aux_sym__custom_token3, - STATE(3432), 1, + ACTIONS(9156), 1, + anon_sym_ATendsection, + STATE(4096), 1, sym_comment, - [114392] = 3, + [140637] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7665), 1, - anon_sym_ATendsection, - STATE(3433), 1, + ACTIONS(9158), 1, + anon_sym_ATendprepend, + STATE(4097), 1, sym_comment, - [114402] = 3, + [140647] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7667), 1, - anon_sym_ATendfragment, - STATE(3434), 1, + ACTIONS(9160), 1, + anon_sym_ATendvolt, + STATE(4098), 1, sym_comment, - [114412] = 3, + [140657] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7669), 1, - anon_sym_ATendfragment, - STATE(3435), 1, + ACTIONS(9162), 1, + anon_sym_ATendteleport, + STATE(4099), 1, sym_comment, - [114422] = 3, + [140667] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7671), 1, - anon_sym_ATendsection, - STATE(3436), 1, + ACTIONS(9164), 1, + anon_sym_ATendpersist, + STATE(4100), 1, sym_comment, - [114432] = 3, + [140677] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7673), 1, - anon_sym_ATendpush, - STATE(3437), 1, + ACTIONS(9166), 1, + anon_sym_ATendwhile, + STATE(4101), 1, sym_comment, - [114442] = 3, + [140687] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7675), 1, - anon_sym_ATendPushOnce, - STATE(3438), 1, + ACTIONS(9168), 1, + anon_sym_ATendforelse, + STATE(4102), 1, sym_comment, - [114452] = 3, + [140697] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7677), 1, - anon_sym_ATendPushIf, - STATE(3439), 1, + ACTIONS(9170), 1, + anon_sym_ATendforeach, + STATE(4103), 1, sym_comment, - [114462] = 3, + [140707] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7679), 1, - anon_sym_ATendprepend, - STATE(3440), 1, + ACTIONS(9172), 1, + anon_sym_ATendfor, + STATE(4104), 1, sym_comment, - [114472] = 3, + [140717] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7681), 1, - anon_sym_ATendif, - STATE(3441), 1, + ACTIONS(9174), 1, + aux_sym__custom_token3, + STATE(4105), 1, sym_comment, - [114482] = 3, + [140727] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7683), 1, - anon_sym_ATendif, - STATE(3442), 1, + ACTIONS(9176), 1, + anon_sym_ATendcanany, + STATE(4106), 1, sym_comment, - [114492] = 3, + [140737] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7685), 1, - anon_sym_ATendunless, - STATE(3443), 1, + ACTIONS(9178), 1, + anon_sym_ATendcannot, + STATE(4107), 1, sym_comment, - [114502] = 3, + [140747] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7687), 1, - anon_sym_ATendisset, - STATE(3444), 1, + ACTIONS(9180), 1, + anon_sym_ATendcan, + STATE(4108), 1, sym_comment, - [114512] = 3, + [140757] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7689), 1, - anon_sym_ATendempty, - STATE(3445), 1, + ACTIONS(9182), 1, + anon_sym_ATenderror, + STATE(4109), 1, sym_comment, - [114522] = 3, + [140767] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7691), 1, - anon_sym_ATendvolt, - STATE(3446), 1, + ACTIONS(9184), 1, + anon_sym_ATendif, + STATE(4110), 1, sym_comment, - [114532] = 3, + [140777] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7693), 1, - anon_sym_ATendteleport, - STATE(3447), 1, + ACTIONS(9186), 1, + anon_sym_ATendif, + STATE(4111), 1, sym_comment, - [114542] = 3, + [140787] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7695), 1, - anon_sym_ATendpersist, - STATE(3448), 1, + ACTIONS(9188), 1, + anon_sym_ATendenv, + STATE(4112), 1, sym_comment, - [114552] = 3, + [140797] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7697), 1, - anon_sym_ATendwhile, - STATE(3449), 1, + ACTIONS(9190), 1, + anon_sym_ATendguest, + STATE(4113), 1, sym_comment, - [114562] = 3, + [140807] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7699), 1, - anon_sym_ATendforelse, - STATE(3450), 1, + ACTIONS(9192), 1, + anon_sym_ATendauth, + STATE(4114), 1, sym_comment, - [114572] = 3, + [140817] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7701), 1, - anon_sym_ATendforeach, - STATE(3451), 1, + ACTIONS(9194), 1, + anon_sym_ATendempty, + STATE(4115), 1, sym_comment, - [114582] = 3, + [140827] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7703), 1, - anon_sym_ATendfor, - STATE(3452), 1, + ACTIONS(9196), 1, + anon_sym_ATendisset, + STATE(4116), 1, sym_comment, - [114592] = 3, + [140837] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7705), 1, - aux_sym__custom_token3, - STATE(3453), 1, + ACTIONS(9198), 1, + anon_sym_ATendunless, + STATE(4117), 1, sym_comment, - [114602] = 3, + [140847] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7707), 1, - anon_sym_ATenderror, - STATE(3454), 1, + ACTIONS(9200), 1, + anon_sym_ATendif, + STATE(4118), 1, sym_comment, - [114612] = 3, + [140857] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7709), 1, - anon_sym_ATendif, - STATE(3455), 1, + ACTIONS(9202), 1, + anon_sym_ATendPrependOnce, + STATE(4119), 1, sym_comment, - [114622] = 3, + [140867] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7711), 1, - anon_sym_ATendif, - STATE(3456), 1, + ACTIONS(9204), 1, + anon_sym_ATendprepend, + STATE(4120), 1, sym_comment, - [114632] = 3, + [140877] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7713), 1, - anon_sym_ATendenv, - STATE(3457), 1, + ACTIONS(9206), 1, + anon_sym_ATendPushIf, + STATE(4121), 1, sym_comment, - [114642] = 3, + [140887] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7715), 1, - anon_sym_ATendauth, - STATE(3458), 1, + ACTIONS(9208), 1, + anon_sym_ATendPushOnce, + STATE(4122), 1, sym_comment, - [114652] = 3, + [140897] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7717), 1, - anon_sym_ATendguest, - STATE(3459), 1, + ACTIONS(9210), 1, + anon_sym_ATendpush, + STATE(4123), 1, sym_comment, - [114662] = 3, + [140907] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7719), 1, - anon_sym_ATendauth, - STATE(3460), 1, + ACTIONS(9212), 1, + anon_sym_ATendsection, + STATE(4124), 1, sym_comment, - [114672] = 3, + [140917] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7721), 1, - anon_sym_ATendempty, - STATE(3461), 1, + ACTIONS(9214), 1, + anon_sym_ATendfragment, + STATE(4125), 1, sym_comment, - [114682] = 3, + [140927] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7723), 1, - anon_sym_ATendisset, - STATE(3462), 1, + ACTIONS(9216), 1, + anon_sym_ATendvolt, + STATE(4126), 1, sym_comment, - [114692] = 3, + [140937] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7725), 1, - anon_sym_ATendunless, - STATE(3463), 1, + ACTIONS(9218), 1, + anon_sym_ATendteleport, + STATE(4127), 1, sym_comment, - [114702] = 3, + [140947] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7727), 1, - anon_sym_ATendif, - STATE(3464), 1, + ACTIONS(9220), 1, + anon_sym_ATendpersist, + STATE(4128), 1, sym_comment, - [114712] = 3, + [140957] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7729), 1, - anon_sym_ATendPrependOnce, - STATE(3465), 1, + ACTIONS(9222), 1, + anon_sym_ATendwhile, + STATE(4129), 1, sym_comment, - [114722] = 3, + [140967] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7731), 1, - anon_sym_ATendprepend, - STATE(3466), 1, + ACTIONS(9224), 1, + anon_sym_ATendforelse, + STATE(4130), 1, sym_comment, - [114732] = 3, + [140977] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7733), 1, - anon_sym_ATendPushIf, - STATE(3467), 1, + ACTIONS(9226), 1, + anon_sym_ATendforeach, + STATE(4131), 1, sym_comment, - [114742] = 3, + [140987] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7735), 1, - anon_sym_ATendPushOnce, - STATE(3468), 1, + ACTIONS(9228), 1, + anon_sym_ATendfor, + STATE(4132), 1, sym_comment, - [114752] = 3, + [140997] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7737), 1, - anon_sym_ATendpush, - STATE(3469), 1, + ACTIONS(9230), 1, + aux_sym__custom_token3, + STATE(4133), 1, sym_comment, - [114762] = 3, + [141007] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7739), 1, - anon_sym_ATendguest, - STATE(3470), 1, + ACTIONS(9232), 1, + anon_sym_ATendcanany, + STATE(4134), 1, sym_comment, - [114772] = 3, + [141017] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7741), 1, - anon_sym_ATendenv, - STATE(3471), 1, + ACTIONS(9234), 1, + anon_sym_ATendcannot, + STATE(4135), 1, sym_comment, - [114782] = 3, + [141027] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7743), 1, - anon_sym_ATendsection, - STATE(3472), 1, + ACTIONS(9236), 1, + anon_sym_ATendcan, + STATE(4136), 1, sym_comment, - [114792] = 3, + [141037] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7745), 1, - anon_sym_ATendfragment, - STATE(3473), 1, + ACTIONS(9238), 1, + anon_sym_ATenderror, + STATE(4137), 1, sym_comment, - [114802] = 3, + [141047] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7747), 1, + ACTIONS(9240), 1, anon_sym_ATendif, - STATE(3474), 1, + STATE(4138), 1, sym_comment, - [114812] = 3, + [141057] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7749), 1, + ACTIONS(9242), 1, anon_sym_ATendif, - STATE(3475), 1, + STATE(4139), 1, sym_comment, - [114822] = 3, + [141067] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7751), 1, - anon_sym_ATendif, - STATE(3476), 1, + ACTIONS(9244), 1, + anon_sym_ATendenv, + STATE(4140), 1, sym_comment, - [114832] = 3, + [141077] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7753), 1, - anon_sym_ATenderror, - STATE(3477), 1, + ACTIONS(9246), 1, + anon_sym_ATendguest, + STATE(4141), 1, sym_comment, - [114842] = 3, + [141087] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7755), 1, - aux_sym__custom_token3, - STATE(3478), 1, + ACTIONS(9248), 1, + anon_sym_ATendauth, + STATE(4142), 1, sym_comment, - [114852] = 3, + [141097] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7757), 1, - anon_sym_ATendfor, - STATE(3479), 1, + ACTIONS(9250), 1, + anon_sym_ATendempty, + STATE(4143), 1, sym_comment, - [114862] = 3, + [141107] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7759), 1, - anon_sym_ATendforeach, - STATE(3480), 1, + ACTIONS(9252), 1, + anon_sym_ATendisset, + STATE(4144), 1, sym_comment, - [114872] = 3, + [141117] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7761), 1, - anon_sym_ATendforelse, - STATE(3481), 1, + ACTIONS(9254), 1, + anon_sym_ATendunless, + STATE(4145), 1, sym_comment, - [114882] = 3, + [141127] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7763), 1, - anon_sym_ATendwhile, - STATE(3482), 1, + ACTIONS(9256), 1, + anon_sym_ATendif, + STATE(4146), 1, sym_comment, - [114892] = 3, + [141137] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7765), 1, - anon_sym_ATendpersist, - STATE(3483), 1, + ACTIONS(9258), 1, + anon_sym_ATendPrependOnce, + STATE(4147), 1, sym_comment, - [114902] = 3, + [141147] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7767), 1, - anon_sym_ATendteleport, - STATE(3484), 1, + ACTIONS(9260), 1, + anon_sym_ATendprepend, + STATE(4148), 1, sym_comment, - [114912] = 3, + [141157] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7769), 1, - anon_sym_ATendvolt, - STATE(3485), 1, + ACTIONS(9262), 1, + anon_sym_ATendPushIf, + STATE(4149), 1, sym_comment, - [114922] = 3, + [141167] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7771), 1, + ACTIONS(9264), 1, + anon_sym_ATendPushOnce, + STATE(4150), 1, + sym_comment, + [141177] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9266), 1, + anon_sym_ATendpush, + STATE(4151), 1, + sym_comment, + [141187] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9268), 1, + anon_sym_ATendsection, + STATE(4152), 1, + sym_comment, + [141197] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9270), 1, + anon_sym_ATendfragment, + STATE(4153), 1, + sym_comment, + [141207] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9272), 1, anon_sym_ATendvolt, - STATE(3486), 1, + STATE(4154), 1, sym_comment, - [114932] = 3, + [141217] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7773), 1, + ACTIONS(9274), 1, anon_sym_ATendteleport, - STATE(3487), 1, + STATE(4155), 1, sym_comment, - [114942] = 3, + [141227] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7775), 1, + ACTIONS(9276), 1, anon_sym_ATendpersist, - STATE(3488), 1, + STATE(4156), 1, sym_comment, - [114952] = 3, + [141237] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7777), 1, + ACTIONS(9278), 1, anon_sym_ATendwhile, - STATE(3489), 1, + STATE(4157), 1, sym_comment, - [114962] = 3, + [141247] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7779), 1, + ACTIONS(9280), 1, anon_sym_ATendforelse, - STATE(3490), 1, + STATE(4158), 1, sym_comment, - [114972] = 3, + [141257] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7781), 1, + ACTIONS(9282), 1, anon_sym_ATendforeach, - STATE(3491), 1, + STATE(4159), 1, + sym_comment, + [141267] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9284), 1, + anon_sym_ATendfor, + STATE(4160), 1, + sym_comment, + [141277] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9286), 1, + aux_sym__custom_token3, + STATE(4161), 1, + sym_comment, + [141287] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9288), 1, + anon_sym_ATendcanany, + STATE(4162), 1, sym_comment, - [114982] = 3, + [141297] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7783), 1, - anon_sym_ATendfor, - STATE(3492), 1, + ACTIONS(9290), 1, + anon_sym_ATendcannot, + STATE(4163), 1, sym_comment, - [114992] = 3, + [141307] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7785), 1, - aux_sym__custom_token3, - STATE(3493), 1, + ACTIONS(9292), 1, + anon_sym_ATendcan, + STATE(4164), 1, sym_comment, - [115002] = 3, + [141317] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7787), 1, + ACTIONS(9294), 1, anon_sym_ATenderror, - STATE(3494), 1, + STATE(4165), 1, sym_comment, - [115012] = 3, + [141327] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7789), 1, + ACTIONS(9296), 1, anon_sym_ATendif, - STATE(3495), 1, + STATE(4166), 1, sym_comment, - [115022] = 3, + [141337] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7791), 1, + ACTIONS(9298), 1, anon_sym_ATendif, - STATE(3496), 1, + STATE(4167), 1, sym_comment, - [115032] = 3, + [141347] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7793), 1, + ACTIONS(9300), 1, anon_sym_ATendenv, - STATE(3497), 1, + STATE(4168), 1, sym_comment, - [115042] = 3, + [141357] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7795), 1, + ACTIONS(9302), 1, anon_sym_ATendguest, - STATE(3498), 1, + STATE(4169), 1, sym_comment, - [115052] = 3, + [141367] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7797), 1, + ACTIONS(9304), 1, anon_sym_ATendauth, - STATE(3499), 1, + STATE(4170), 1, sym_comment, - [115062] = 3, + [141377] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7799), 1, + ACTIONS(9306), 1, anon_sym_ATendempty, - STATE(3500), 1, + STATE(4171), 1, sym_comment, - [115072] = 3, + [141387] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7801), 1, + ACTIONS(9308), 1, anon_sym_ATendisset, - STATE(3501), 1, + STATE(4172), 1, sym_comment, - [115082] = 3, + [141397] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7803), 1, + ACTIONS(9310), 1, anon_sym_ATendunless, - STATE(3502), 1, - sym_comment, - [115092] = 3, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7805), 1, - anon_sym_ATendvolt, - STATE(3503), 1, + STATE(4173), 1, sym_comment, - [115102] = 3, + [141407] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7807), 1, + ACTIONS(9312), 1, anon_sym_ATendif, - STATE(3504), 1, + STATE(4174), 1, sym_comment, - [115112] = 3, + [141417] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7809), 1, + ACTIONS(9314), 1, anon_sym_ATendPrependOnce, - STATE(3505), 1, + STATE(4175), 1, sym_comment, - [115122] = 3, + [141427] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7811), 1, - anon_sym_ATendprepend, - STATE(3506), 1, + ACTIONS(9316), 1, + anon_sym_ATendPushOnce, + STATE(4176), 1, sym_comment, - [115132] = 3, + [141437] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7813), 1, + ACTIONS(9318), 1, anon_sym_ATendPushIf, - STATE(3507), 1, + STATE(4177), 1, sym_comment, - [115142] = 3, + [141447] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7815), 1, - anon_sym_ATendPushOnce, - STATE(3508), 1, + ACTIONS(9320), 1, + anon_sym_ATendfor, + STATE(4178), 1, sym_comment, - [115152] = 3, + [141457] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7817), 1, + ACTIONS(9322), 1, anon_sym_ATendpush, - STATE(3509), 1, + STATE(4179), 1, sym_comment, - [115162] = 3, + [141467] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7819), 1, + ACTIONS(9324), 1, anon_sym_ATendsection, - STATE(3510), 1, + STATE(4180), 1, sym_comment, - [115172] = 3, + [141477] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7821), 1, + ACTIONS(9326), 1, anon_sym_ATendfragment, - STATE(3511), 1, + STATE(4181), 1, sym_comment, - [115182] = 3, + [141487] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7823), 1, - anon_sym_ATendfragment, - STATE(3512), 1, + ACTIONS(9328), 1, + anon_sym_ATendvolt, + STATE(4182), 1, sym_comment, - [115192] = 3, + [141497] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7825), 1, - anon_sym_ATendsection, - STATE(3513), 1, + ACTIONS(9330), 1, + anon_sym_ATendteleport, + STATE(4183), 1, sym_comment, - [115202] = 3, + [141507] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7827), 1, - anon_sym_ATendpush, - STATE(3514), 1, + ACTIONS(9332), 1, + anon_sym_ATendpersist, + STATE(4184), 1, sym_comment, - [115212] = 3, + [141517] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7829), 1, - anon_sym_ATendPushOnce, - STATE(3515), 1, + ACTIONS(9334), 1, + anon_sym_ATendwhile, + STATE(4185), 1, sym_comment, - [115222] = 3, + [141527] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7831), 1, - anon_sym_ATendPushIf, - STATE(3516), 1, + ACTIONS(9336), 1, + anon_sym_ATendforelse, + STATE(4186), 1, sym_comment, - [115232] = 3, + [141537] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7833), 1, - anon_sym_ATendprepend, - STATE(3517), 1, + ACTIONS(9338), 1, + anon_sym_ATendforeach, + STATE(4187), 1, sym_comment, - [115242] = 3, + [141547] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7835), 1, - anon_sym_ATendPrependOnce, - STATE(3518), 1, + ACTIONS(9340), 1, + anon_sym_ATendfor, + STATE(4188), 1, sym_comment, - [115252] = 3, + [141557] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7837), 1, - anon_sym_ATendif, - STATE(3519), 1, + ACTIONS(9342), 1, + aux_sym__custom_token3, + STATE(4189), 1, sym_comment, - [115262] = 3, + [141567] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7839), 1, - anon_sym_ATendunless, - STATE(3520), 1, + ACTIONS(9344), 1, + anon_sym_ATendcanany, + STATE(4190), 1, sym_comment, - [115272] = 3, + [141577] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7841), 1, - anon_sym_ATendisset, - STATE(3521), 1, + ACTIONS(9346), 1, + anon_sym_ATendcannot, + STATE(4191), 1, sym_comment, - [115282] = 3, + [141587] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7843), 1, - anon_sym_ATendempty, - STATE(3522), 1, + ACTIONS(9348), 1, + anon_sym_ATendcan, + STATE(4192), 1, sym_comment, - [115292] = 3, + [141597] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7845), 1, - anon_sym_ATendvolt, - STATE(3523), 1, + ACTIONS(9350), 1, + anon_sym_ATenderror, + STATE(4193), 1, sym_comment, - [115302] = 3, + [141607] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7847), 1, - anon_sym_ATendteleport, - STATE(3524), 1, + ACTIONS(9352), 1, + anon_sym_ATendif, + STATE(4194), 1, sym_comment, - [115312] = 3, + [141617] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7849), 1, - anon_sym_ATendpersist, - STATE(3525), 1, + ACTIONS(9354), 1, + anon_sym_ATendif, + STATE(4195), 1, sym_comment, - [115322] = 3, + [141627] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7851), 1, - anon_sym_ATendwhile, - STATE(3526), 1, + ACTIONS(9356), 1, + anon_sym_ATendenv, + STATE(4196), 1, sym_comment, - [115332] = 3, + [141637] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7853), 1, - anon_sym_ATendteleport, - STATE(3527), 1, + ACTIONS(9358), 1, + anon_sym_ATendguest, + STATE(4197), 1, sym_comment, - [115342] = 3, + [141647] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7855), 1, - anon_sym_ATendpersist, - STATE(3528), 1, + ACTIONS(9360), 1, + anon_sym_ATendauth, + STATE(4198), 1, sym_comment, - [115352] = 3, + [141657] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7857), 1, - anon_sym_ATendwhile, - STATE(3529), 1, + ACTIONS(9362), 1, + anon_sym_ATendempty, + STATE(4199), 1, sym_comment, - [115362] = 3, + [141667] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7859), 1, - anon_sym_ATendforelse, - STATE(3530), 1, + ACTIONS(9364), 1, + anon_sym_ATendisset, + STATE(4200), 1, sym_comment, - [115372] = 3, + [141677] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7861), 1, - anon_sym_ATendforeach, - STATE(3531), 1, + ACTIONS(9366), 1, + anon_sym_ATendunless, + STATE(4201), 1, sym_comment, - [115382] = 3, + [141687] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7863), 1, - anon_sym_ATendfor, - STATE(3532), 1, + ACTIONS(9368), 1, + anon_sym_ATendif, + STATE(4202), 1, sym_comment, - [115392] = 3, + [141697] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7865), 1, - aux_sym__custom_token3, - STATE(3533), 1, + ACTIONS(9370), 1, + anon_sym_ATendPrependOnce, + STATE(4203), 1, sym_comment, - [115402] = 3, + [141707] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7867), 1, - anon_sym_ATenderror, - STATE(3534), 1, + ACTIONS(9372), 1, + anon_sym_ATendprepend, + STATE(4204), 1, sym_comment, - [115412] = 3, + [141717] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7869), 1, - anon_sym_ATendif, - STATE(3535), 1, + ACTIONS(9374), 1, + anon_sym_ATendPushIf, + STATE(4205), 1, sym_comment, - [115422] = 3, + [141727] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7871), 1, - anon_sym_ATendif, - STATE(3536), 1, + ACTIONS(9376), 1, + anon_sym_ATendPushOnce, + STATE(4206), 1, sym_comment, - [115432] = 3, + [141737] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7873), 1, - anon_sym_ATendenv, - STATE(3537), 1, + ACTIONS(9378), 1, + anon_sym_ATendpush, + STATE(4207), 1, sym_comment, - [115442] = 3, + [141747] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7875), 1, - anon_sym_ATendauth, - STATE(3538), 1, + ACTIONS(9380), 1, + anon_sym_ATendsection, + STATE(4208), 1, sym_comment, - [115452] = 3, + [141757] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7877), 1, - anon_sym_ATendguest, - STATE(3539), 1, + ACTIONS(9382), 1, + anon_sym_ATendfragment, + STATE(4209), 1, sym_comment, - [115462] = 3, + [141767] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7879), 1, - anon_sym_ATendauth, - STATE(3540), 1, + ACTIONS(9384), 1, + anon_sym_ATendvolt, + STATE(4210), 1, sym_comment, - [115472] = 3, + [141777] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7881), 1, - anon_sym_ATendempty, - STATE(3541), 1, + ACTIONS(9386), 1, + anon_sym_ATendteleport, + STATE(4211), 1, sym_comment, - [115482] = 3, + [141787] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7883), 1, - anon_sym_ATendisset, - STATE(3542), 1, + ACTIONS(9388), 1, + anon_sym_ATendpersist, + STATE(4212), 1, sym_comment, - [115492] = 3, + [141797] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7885), 1, - anon_sym_ATendunless, - STATE(3543), 1, + ACTIONS(9390), 1, + anon_sym_ATendwhile, + STATE(4213), 1, sym_comment, - [115502] = 3, + [141807] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7887), 1, - anon_sym_ATendif, - STATE(3544), 1, + ACTIONS(9392), 1, + anon_sym_ATendforelse, + STATE(4214), 1, sym_comment, - [115512] = 3, + [141817] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7889), 1, - anon_sym_ATendPrependOnce, - STATE(3545), 1, + ACTIONS(9394), 1, + anon_sym_ATendforeach, + STATE(4215), 1, sym_comment, - [115522] = 3, + [141827] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7891), 1, - anon_sym_ATendprepend, - STATE(3546), 1, + ACTIONS(9396), 1, + anon_sym_ATendfor, + STATE(4216), 1, sym_comment, - [115532] = 3, + [141837] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7893), 1, - anon_sym_ATendPushIf, - STATE(3547), 1, + ACTIONS(9398), 1, + aux_sym__custom_token3, + STATE(4217), 1, sym_comment, - [115542] = 3, + [141847] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7895), 1, - anon_sym_ATendPushOnce, - STATE(3548), 1, + ACTIONS(9400), 1, + anon_sym_ATendcanany, + STATE(4218), 1, sym_comment, - [115552] = 3, + [141857] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7897), 1, - anon_sym_ATendpush, - STATE(3549), 1, + ACTIONS(9402), 1, + anon_sym_ATendcannot, + STATE(4219), 1, sym_comment, - [115562] = 3, + [141867] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7899), 1, - anon_sym_ATendguest, - STATE(3550), 1, + ACTIONS(9404), 1, + anon_sym_ATendcan, + STATE(4220), 1, sym_comment, - [115572] = 3, + [141877] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7901), 1, - anon_sym_ATendenv, - STATE(3551), 1, + ACTIONS(9406), 1, + anon_sym_ATenderror, + STATE(4221), 1, sym_comment, - [115582] = 3, + [141887] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7903), 1, - anon_sym_ATendsection, - STATE(3552), 1, + ACTIONS(9408), 1, + anon_sym_ATendif, + STATE(4222), 1, sym_comment, - [115592] = 3, + [141897] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7905), 1, - anon_sym_ATendforelse, - STATE(3553), 1, + ACTIONS(9410), 1, + anon_sym_ATendif, + STATE(4223), 1, sym_comment, - [115602] = 3, + [141907] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7907), 1, - anon_sym_ATendforeach, - STATE(3554), 1, + ACTIONS(9412), 1, + anon_sym_ATendenv, + STATE(4224), 1, sym_comment, - [115612] = 3, + [141917] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7909), 1, - anon_sym_ATendfor, - STATE(3555), 1, + ACTIONS(9414), 1, + anon_sym_ATendguest, + STATE(4225), 1, sym_comment, - [115622] = 3, + [141927] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7911), 1, - anon_sym_ATendfragment, - STATE(3556), 1, + ACTIONS(9416), 1, + anon_sym_ATendauth, + STATE(4226), 1, sym_comment, - [115632] = 3, + [141937] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7913), 1, - anon_sym_ATendPrependOnce, - STATE(3557), 1, + ACTIONS(9418), 1, + anon_sym_ATendempty, + STATE(4227), 1, sym_comment, - [115642] = 3, + [141947] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7915), 1, - anon_sym_ATendif, - STATE(3558), 1, + ACTIONS(9420), 1, + anon_sym_ATendisset, + STATE(4228), 1, sym_comment, - [115652] = 3, + [141957] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7917), 1, - anon_sym_ATenderror, - STATE(3559), 1, + ACTIONS(9422), 1, + anon_sym_ATendunless, + STATE(4229), 1, sym_comment, - [115662] = 3, + [141967] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7919), 1, - aux_sym__custom_token3, - STATE(3560), 1, + ACTIONS(9424), 1, + anon_sym_ATendif, + STATE(4230), 1, sym_comment, - [115672] = 3, + [141977] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7921), 1, - anon_sym_ATendfor, - STATE(3561), 1, + ACTIONS(9426), 1, + anon_sym_ATendPrependOnce, + STATE(4231), 1, sym_comment, - [115682] = 3, + [141987] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7923), 1, - anon_sym_ATendforeach, - STATE(3562), 1, + ACTIONS(9428), 1, + anon_sym_ATendprepend, + STATE(4232), 1, sym_comment, - [115692] = 3, + [141997] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7925), 1, - anon_sym_ATendforelse, - STATE(3563), 1, + ACTIONS(9430), 1, + anon_sym_ATendPushIf, + STATE(4233), 1, sym_comment, - [115702] = 3, + [142007] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7927), 1, - anon_sym_ATendwhile, - STATE(3564), 1, + ACTIONS(9432), 1, + anon_sym_ATendPushOnce, + STATE(4234), 1, sym_comment, - [115712] = 3, + [142017] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7929), 1, - anon_sym_ATendpersist, - STATE(3565), 1, + ACTIONS(9434), 1, + anon_sym_ATendpush, + STATE(4235), 1, sym_comment, - [115722] = 3, + [142027] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7931), 1, - anon_sym_ATendteleport, - STATE(3566), 1, + ACTIONS(9436), 1, + anon_sym_ATendsection, + STATE(4236), 1, sym_comment, - [115732] = 3, + [142037] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7933), 1, - anon_sym_ATendvolt, - STATE(3567), 1, + ACTIONS(9438), 1, + anon_sym_ATendfragment, + STATE(4237), 1, sym_comment, - [115742] = 3, + [142047] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7935), 1, + ACTIONS(9440), 1, anon_sym_ATendvolt, - STATE(3568), 1, + STATE(4238), 1, sym_comment, - [115752] = 3, + [142057] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7937), 1, + ACTIONS(9442), 1, anon_sym_ATendteleport, - STATE(3569), 1, + STATE(4239), 1, sym_comment, - [115762] = 3, + [142067] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7939), 1, + ACTIONS(9444), 1, anon_sym_ATendpersist, - STATE(3570), 1, + STATE(4240), 1, sym_comment, - [115772] = 3, + [142077] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7941), 1, + ACTIONS(9446), 1, anon_sym_ATendwhile, - STATE(3571), 1, + STATE(4241), 1, sym_comment, - [115782] = 3, + [142087] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7943), 1, + ACTIONS(9448), 1, anon_sym_ATendforelse, - STATE(3572), 1, + STATE(4242), 1, sym_comment, - [115792] = 3, + [142097] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7945), 1, + ACTIONS(9450), 1, anon_sym_ATendforeach, - STATE(3573), 1, + STATE(4243), 1, sym_comment, - [115802] = 3, + [142107] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7947), 1, - anon_sym_ATendfor, - STATE(3574), 1, + ACTIONS(9452), 1, + anon_sym_ATendcan, + STATE(4244), 1, sym_comment, - [115812] = 3, + [142117] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7949), 1, + ACTIONS(9454), 1, aux_sym__custom_token3, - STATE(3575), 1, + STATE(4245), 1, sym_comment, - [115822] = 3, + [142127] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7951), 1, - anon_sym_ATenderror, - STATE(3576), 1, + ACTIONS(9456), 1, + anon_sym_ATendcanany, + STATE(4246), 1, sym_comment, - [115832] = 3, + [142137] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7953), 1, - anon_sym_ATendif, - STATE(3577), 1, + ACTIONS(9458), 1, + anon_sym_ATendcannot, + STATE(4247), 1, sym_comment, - [115842] = 3, + [142147] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7955), 1, - anon_sym_ATendif, - STATE(3578), 1, + ACTIONS(9460), 1, + anon_sym_ATendcan, + STATE(4248), 1, sym_comment, - [115852] = 3, + [142157] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7957), 1, - anon_sym_ATendenv, - STATE(3579), 1, + ACTIONS(9462), 1, + anon_sym_ATenderror, + STATE(4249), 1, sym_comment, - [115862] = 3, + [142167] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7959), 1, - aux_sym__custom_token3, - STATE(3580), 1, + ACTIONS(9464), 1, + anon_sym_ATendif, + STATE(4250), 1, sym_comment, - [115872] = 3, + [142177] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7961), 1, - anon_sym_ATenderror, - STATE(3581), 1, + ACTIONS(9466), 1, + anon_sym_ATendif, + STATE(4251), 1, + sym_comment, + [142187] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9468), 1, + anon_sym_ATendenv, + STATE(4252), 1, sym_comment, - [115882] = 3, + [142197] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7963), 1, + ACTIONS(9470), 1, anon_sym_ATendguest, - STATE(3582), 1, + STATE(4253), 1, sym_comment, - [115892] = 3, + [142207] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7965), 1, + ACTIONS(9472), 1, anon_sym_ATendauth, - STATE(3583), 1, + STATE(4254), 1, sym_comment, - [115902] = 3, + [142217] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7967), 1, + ACTIONS(9474), 1, anon_sym_ATendempty, - STATE(3584), 1, + STATE(4255), 1, sym_comment, - [115912] = 3, + [142227] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7969), 1, + ACTIONS(9476), 1, anon_sym_ATendisset, - STATE(3585), 1, + STATE(4256), 1, sym_comment, - [115922] = 3, + [142237] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7971), 1, + ACTIONS(9478), 1, anon_sym_ATendunless, - STATE(3586), 1, + STATE(4257), 1, sym_comment, - [115932] = 3, + [142247] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7973), 1, + ACTIONS(9480), 1, anon_sym_ATendif, - STATE(3587), 1, + STATE(4258), 1, sym_comment, - [115942] = 3, + [142257] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7975), 1, + ACTIONS(9482), 1, anon_sym_ATendPrependOnce, - STATE(3588), 1, + STATE(4259), 1, sym_comment, - [115952] = 3, + [142267] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7977), 1, + ACTIONS(9484), 1, anon_sym_ATendprepend, - STATE(3589), 1, + STATE(4260), 1, sym_comment, - [115962] = 3, + [142277] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7979), 1, + ACTIONS(9486), 1, anon_sym_ATendPushIf, - STATE(3590), 1, + STATE(4261), 1, sym_comment, - [115972] = 3, + [142287] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7981), 1, + ACTIONS(9488), 1, anon_sym_ATendPushOnce, - STATE(3591), 1, + STATE(4262), 1, sym_comment, - [115982] = 3, + [142297] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7983), 1, + ACTIONS(9490), 1, anon_sym_ATendpush, - STATE(3592), 1, + STATE(4263), 1, sym_comment, - [115992] = 3, + [142307] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7985), 1, + ACTIONS(9492), 1, anon_sym_ATendsection, - STATE(3593), 1, + STATE(4264), 1, sym_comment, - [116002] = 3, + [142317] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7987), 1, + ACTIONS(9494), 1, anon_sym_ATendfragment, - STATE(3594), 1, + STATE(4265), 1, sym_comment, - [116012] = 3, + [142327] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7989), 1, - anon_sym_ATendfragment, - STATE(3595), 1, + ACTIONS(9496), 1, + anon_sym_ATendvolt, + STATE(4266), 1, sym_comment, - [116022] = 3, + [142337] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7991), 1, - anon_sym_ATendsection, - STATE(3596), 1, + ACTIONS(9498), 1, + anon_sym_ATendteleport, + STATE(4267), 1, sym_comment, - [116032] = 3, + [142347] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7993), 1, - anon_sym_ATendpush, - STATE(3597), 1, + ACTIONS(9500), 1, + anon_sym_ATendpersist, + STATE(4268), 1, sym_comment, - [116042] = 3, + [142357] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7995), 1, - anon_sym_ATendPushOnce, - STATE(3598), 1, + ACTIONS(9502), 1, + anon_sym_ATendwhile, + STATE(4269), 1, sym_comment, - [116052] = 3, + [142367] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7997), 1, - anon_sym_ATendPushIf, - STATE(3599), 1, + ACTIONS(9504), 1, + anon_sym_ATendforelse, + STATE(4270), 1, sym_comment, - [116062] = 3, + [142377] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(7999), 1, - anon_sym_ATendprepend, - STATE(3600), 1, + ACTIONS(9506), 1, + anon_sym_ATendforeach, + STATE(4271), 1, sym_comment, - [116072] = 3, + [142387] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8001), 1, - anon_sym_ATendif, - STATE(3601), 1, + ACTIONS(9508), 1, + anon_sym_ATendfor, + STATE(4272), 1, sym_comment, - [116082] = 3, + [142397] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8003), 1, - anon_sym_ATendif, - STATE(3602), 1, + ACTIONS(9510), 1, + aux_sym__custom_token3, + STATE(4273), 1, sym_comment, - [116092] = 3, + [142407] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8005), 1, - anon_sym_ATendunless, - STATE(3603), 1, + ACTIONS(9512), 1, + anon_sym_ATendcanany, + STATE(4274), 1, sym_comment, - [116102] = 3, + [142417] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8007), 1, - anon_sym_ATendvolt, - STATE(3604), 1, + ACTIONS(9514), 1, + anon_sym_ATendcannot, + STATE(4275), 1, sym_comment, - [116112] = 3, + [142427] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8009), 1, - anon_sym_ATendfragment, - STATE(3605), 1, + ACTIONS(9516), 1, + anon_sym_ATendcan, + STATE(4276), 1, sym_comment, - [116122] = 3, + [142437] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8011), 1, + ACTIONS(9518), 1, + anon_sym_ATenderror, + STATE(4277), 1, + sym_comment, + [142447] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9520), 1, anon_sym_ATendif, - STATE(3606), 1, + STATE(4278), 1, sym_comment, - [116132] = 3, + [142457] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8013), 1, + ACTIONS(9522), 1, + anon_sym_ATendif, + STATE(4279), 1, + sym_comment, + [142467] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9524), 1, anon_sym_ATendenv, - STATE(3607), 1, + STATE(4280), 1, sym_comment, - [116142] = 3, + [142477] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8015), 1, - anon_sym_ATendteleport, - STATE(3608), 1, + ACTIONS(9526), 1, + anon_sym_ATendguest, + STATE(4281), 1, sym_comment, - [116152] = 3, + [142487] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8017), 1, - anon_sym_ATendpersist, - STATE(3609), 1, + ACTIONS(9528), 1, + anon_sym_ATendauth, + STATE(4282), 1, sym_comment, - [116162] = 3, + [142497] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8019), 1, - anon_sym_ATendwhile, - STATE(3610), 1, + ACTIONS(9530), 1, + anon_sym_ATendempty, + STATE(4283), 1, sym_comment, - [116172] = 3, + [142507] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8021), 1, - anon_sym_ATendforelse, - STATE(3611), 1, + ACTIONS(9532), 1, + anon_sym_ATendisset, + STATE(4284), 1, sym_comment, - [116182] = 3, + [142517] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8023), 1, - anon_sym_ATendforeach, - STATE(3612), 1, + ACTIONS(9534), 1, + anon_sym_ATendunless, + STATE(4285), 1, sym_comment, - [116192] = 3, + [142527] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8025), 1, - anon_sym_ATendfor, - STATE(3613), 1, + ACTIONS(9536), 1, + anon_sym_ATendif, + STATE(4286), 1, sym_comment, - [116202] = 3, + [142537] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8027), 1, - aux_sym__custom_token3, - STATE(3614), 1, + ACTIONS(9538), 1, + anon_sym_ATendPrependOnce, + STATE(4287), 1, sym_comment, - [116212] = 3, + [142547] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8029), 1, - anon_sym_ATenderror, - STATE(3615), 1, + ACTIONS(9540), 1, + anon_sym_ATendprepend, + STATE(4288), 1, sym_comment, - [116222] = 3, + [142557] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8031), 1, - anon_sym_ATendif, - STATE(3616), 1, + ACTIONS(9542), 1, + anon_sym_ATendPushIf, + STATE(4289), 1, sym_comment, - [116232] = 3, + [142567] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8033), 1, - anon_sym_ATendif, - STATE(3617), 1, + ACTIONS(9544), 1, + anon_sym_ATendPushOnce, + STATE(4290), 1, sym_comment, - [116242] = 3, + [142577] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8035), 1, - anon_sym_ATendenv, - STATE(3618), 1, + ACTIONS(9546), 1, + anon_sym_ATendpush, + STATE(4291), 1, sym_comment, - [116252] = 3, + [142587] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8037), 1, - anon_sym_ATendempty, - STATE(3619), 1, + ACTIONS(9548), 1, + anon_sym_ATendsection, + STATE(4292), 1, sym_comment, - [116262] = 3, + [142597] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8039), 1, - anon_sym_ATendguest, - STATE(3620), 1, + ACTIONS(9550), 1, + anon_sym_ATendfragment, + STATE(4293), 1, sym_comment, - [116272] = 3, + [142607] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8041), 1, - anon_sym_ATendauth, - STATE(3621), 1, + ACTIONS(9552), 1, + anon_sym_ATendvolt, + STATE(4294), 1, sym_comment, - [116282] = 3, + [142617] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8043), 1, - anon_sym_ATendempty, - STATE(3622), 1, + ACTIONS(9554), 1, + anon_sym_ATendteleport, + STATE(4295), 1, sym_comment, - [116292] = 3, + [142627] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8045), 1, - anon_sym_ATendisset, - STATE(3623), 1, + ACTIONS(9556), 1, + anon_sym_ATendpersist, + STATE(4296), 1, sym_comment, - [116302] = 3, + [142637] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8047), 1, - anon_sym_ATendunless, - STATE(3624), 1, + ACTIONS(9558), 1, + anon_sym_ATendwhile, + STATE(4297), 1, sym_comment, - [116312] = 3, + [142647] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8049), 1, - anon_sym_ATendif, - STATE(3625), 1, + ACTIONS(9560), 1, + anon_sym_ATendforelse, + STATE(4298), 1, sym_comment, - [116322] = 3, + [142657] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8051), 1, - anon_sym_ATendPrependOnce, - STATE(3626), 1, + ACTIONS(9562), 1, + anon_sym_ATendforeach, + STATE(4299), 1, sym_comment, - [116332] = 3, + [142667] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8053), 1, - anon_sym_ATendprepend, - STATE(3627), 1, + ACTIONS(9564), 1, + anon_sym_ATendfor, + STATE(4300), 1, sym_comment, - [116342] = 3, + [142677] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8055), 1, - anon_sym_ATendPushIf, - STATE(3628), 1, + ACTIONS(9566), 1, + aux_sym__custom_token3, + STATE(4301), 1, sym_comment, - [116352] = 3, + [142687] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8057), 1, - anon_sym_ATendPushOnce, - STATE(3629), 1, + ACTIONS(9568), 1, + anon_sym_ATendcanany, + STATE(4302), 1, sym_comment, - [116362] = 3, + [142697] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8059), 1, - anon_sym_ATendpush, - STATE(3630), 1, + ACTIONS(9570), 1, + anon_sym_ATendcannot, + STATE(4303), 1, sym_comment, - [116372] = 3, + [142707] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8061), 1, - anon_sym_ATendguest, - STATE(3631), 1, + ACTIONS(9572), 1, + anon_sym_ATendfragment, + STATE(4304), 1, sym_comment, - [116382] = 3, + [142717] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8063), 1, - anon_sym_ATendauth, - STATE(3632), 1, + ACTIONS(9574), 1, + anon_sym_ATenderror, + STATE(4305), 1, sym_comment, - [116392] = 3, + [142727] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8065), 1, - anon_sym_ATendempty, - STATE(3633), 1, + ACTIONS(9576), 1, + anon_sym_ATendif, + STATE(4306), 1, sym_comment, - [116402] = 3, + [142737] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8067), 1, - anon_sym_ATendauth, - STATE(3634), 1, + ACTIONS(9578), 1, + anon_sym_ATendif, + STATE(4307), 1, sym_comment, - [116412] = 3, + [142747] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8069), 1, - anon_sym_ATendguest, - STATE(3635), 1, + ACTIONS(9580), 1, + anon_sym_ATendenv, + STATE(4308), 1, sym_comment, - [116422] = 3, + [142757] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8071), 1, - anon_sym_ATendsection, - STATE(3636), 1, + ACTIONS(9582), 1, + anon_sym_ATendguest, + STATE(4309), 1, sym_comment, - [116432] = 3, + [142767] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8073), 1, - anon_sym_ATendfragment, - STATE(3637), 1, + ACTIONS(9584), 1, + anon_sym_ATendauth, + STATE(4310), 1, sym_comment, - [116442] = 3, + [142777] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8075), 1, - anon_sym_ATendenv, - STATE(3638), 1, + ACTIONS(9586), 1, + anon_sym_ATendempty, + STATE(4311), 1, sym_comment, - [116452] = 3, + [142787] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8077), 1, - anon_sym_ATendif, - STATE(3639), 1, + ACTIONS(9588), 1, + anon_sym_ATendisset, + STATE(4312), 1, sym_comment, - [116462] = 3, + [142797] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8079), 1, - anon_sym_ATendif, - STATE(3640), 1, + ACTIONS(9590), 1, + anon_sym_ATendunless, + STATE(4313), 1, sym_comment, - [116472] = 3, + [142807] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8081), 1, - anon_sym_ATenderror, - STATE(3641), 1, + ACTIONS(9592), 1, + anon_sym_ATendif, + STATE(4314), 1, sym_comment, - [116482] = 3, + [142817] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8083), 1, - aux_sym__custom_token3, - STATE(3642), 1, + ACTIONS(9594), 1, + anon_sym_ATendPrependOnce, + STATE(4315), 1, sym_comment, - [116492] = 3, + [142827] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8085), 1, - anon_sym_ATendisset, - STATE(3643), 1, + ACTIONS(9596), 1, + anon_sym_ATendprepend, + STATE(4316), 1, sym_comment, - [116502] = 3, + [142837] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8087), 1, - anon_sym_ATendforeach, - STATE(3644), 1, + ACTIONS(9598), 1, + anon_sym_ATendPushIf, + STATE(4317), 1, sym_comment, - [116512] = 3, + [142847] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8089), 1, - anon_sym_ATendforelse, - STATE(3645), 1, + ACTIONS(9600), 1, + anon_sym_ATendPushOnce, + STATE(4318), 1, sym_comment, - [116522] = 3, + [142857] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8091), 1, - anon_sym_ATendwhile, - STATE(3646), 1, + ACTIONS(9602), 1, + anon_sym_ATendpush, + STATE(4319), 1, sym_comment, - [116532] = 3, + [142867] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8093), 1, - anon_sym_ATendpersist, - STATE(3647), 1, + ACTIONS(9604), 1, + anon_sym_ATendsection, + STATE(4320), 1, sym_comment, - [116542] = 3, + [142877] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8095), 1, - anon_sym_ATendteleport, - STATE(3648), 1, + ACTIONS(9606), 1, + anon_sym_ATendauth, + STATE(4321), 1, sym_comment, - [116552] = 3, + [142887] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8097), 1, + ACTIONS(9608), 1, anon_sym_ATendvolt, - STATE(3649), 1, + STATE(4322), 1, sym_comment, - [116562] = 3, + [142897] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8099), 1, + ACTIONS(9610), 1, anon_sym_ATendteleport, - STATE(3650), 1, + STATE(4323), 1, sym_comment, - [116572] = 3, + [142907] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8101), 1, + ACTIONS(9612), 1, anon_sym_ATendpersist, - STATE(3651), 1, + STATE(4324), 1, sym_comment, - [116582] = 3, + [142917] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8103), 1, + ACTIONS(9614), 1, anon_sym_ATendwhile, - STATE(3652), 1, + STATE(4325), 1, sym_comment, - [116592] = 3, + [142927] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8105), 1, - anon_sym_ATendunless, - STATE(3653), 1, + ACTIONS(9616), 1, + anon_sym_ATendforelse, + STATE(4326), 1, sym_comment, - [116602] = 3, + [142937] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8107), 1, + ACTIONS(9618), 1, anon_sym_ATendforeach, - STATE(3654), 1, + STATE(4327), 1, sym_comment, - [116612] = 3, + [142947] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8109), 1, + ACTIONS(9620), 1, anon_sym_ATendfor, - STATE(3655), 1, + STATE(4328), 1, sym_comment, - [116622] = 3, + [142957] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8111), 1, + ACTIONS(9622), 1, aux_sym__custom_token3, - STATE(3656), 1, + STATE(4329), 1, sym_comment, - [116632] = 3, + [142967] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8113), 1, - anon_sym_ATendisset, - STATE(3657), 1, + ACTIONS(9624), 1, + anon_sym_ATendcanany, + STATE(4330), 1, sym_comment, - [116642] = 3, + [142977] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8115), 1, - anon_sym_ATendunless, - STATE(3658), 1, + ACTIONS(9626), 1, + anon_sym_ATendcannot, + STATE(4331), 1, sym_comment, - [116652] = 3, + [142987] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8117), 1, - anon_sym_ATendif, - STATE(3659), 1, + ACTIONS(9628), 1, + anon_sym_ATendcan, + STATE(4332), 1, sym_comment, - [116662] = 3, + [142997] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8119), 1, + ACTIONS(9630), 1, anon_sym_ATenderror, - STATE(3660), 1, + STATE(4333), 1, sym_comment, - [116672] = 3, + [143007] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8121), 1, + ACTIONS(9632), 1, anon_sym_ATendif, - STATE(3661), 1, + STATE(4334), 1, sym_comment, - [116682] = 3, + [143017] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8123), 1, + ACTIONS(9634), 1, anon_sym_ATendif, - STATE(3662), 1, + STATE(4335), 1, sym_comment, - [116692] = 3, + [143027] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8125), 1, + ACTIONS(9636), 1, anon_sym_ATendenv, - STATE(3663), 1, - sym_comment, - [116702] = 3, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8127), 1, - anon_sym_ATendvolt, - STATE(3664), 1, + STATE(4336), 1, sym_comment, - [116712] = 3, + [143037] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8129), 1, + ACTIONS(9638), 1, anon_sym_ATendguest, - STATE(3665), 1, + STATE(4337), 1, sym_comment, - [116722] = 3, + [143047] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8131), 1, + ACTIONS(9640), 1, anon_sym_ATendauth, - STATE(3666), 1, + STATE(4338), 1, sym_comment, - [116732] = 3, + [143057] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8133), 1, + ACTIONS(9642), 1, anon_sym_ATendempty, - STATE(3667), 1, + STATE(4339), 1, sym_comment, - [116742] = 3, + [143067] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8135), 1, + ACTIONS(9644), 1, anon_sym_ATendisset, - STATE(3668), 1, + STATE(4340), 1, sym_comment, - [116752] = 3, + [143077] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8137), 1, + ACTIONS(9646), 1, anon_sym_ATendunless, - STATE(3669), 1, + STATE(4341), 1, sym_comment, - [116762] = 3, + [143087] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8139), 1, - anon_sym_ATendforelse, - STATE(3670), 1, + ACTIONS(9648), 1, + anon_sym_ATendif, + STATE(4342), 1, sym_comment, - [116772] = 3, + [143097] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8141), 1, + ACTIONS(9650), 1, anon_sym_ATendPrependOnce, - STATE(3671), 1, + STATE(4343), 1, sym_comment, - [116782] = 3, + [143107] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8143), 1, + ACTIONS(9652), 1, anon_sym_ATendprepend, - STATE(3672), 1, + STATE(4344), 1, sym_comment, - [116792] = 3, + [143117] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8145), 1, + ACTIONS(9654), 1, anon_sym_ATendPushIf, - STATE(3673), 1, + STATE(4345), 1, sym_comment, - [116802] = 3, + [143127] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8147), 1, + ACTIONS(9656), 1, anon_sym_ATendPushOnce, - STATE(3674), 1, + STATE(4346), 1, sym_comment, - [116812] = 3, + [143137] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8149), 1, + ACTIONS(9658), 1, anon_sym_ATendpush, - STATE(3675), 1, + STATE(4347), 1, sym_comment, - [116822] = 3, + [143147] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8151), 1, + ACTIONS(9660), 1, anon_sym_ATendsection, - STATE(3676), 1, + STATE(4348), 1, sym_comment, - [116832] = 3, + [143157] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8153), 1, + ACTIONS(9662), 1, anon_sym_ATendfragment, - STATE(3677), 1, + STATE(4349), 1, sym_comment, - [116842] = 3, + [143167] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8155), 1, - anon_sym_ATendfragment, - STATE(3678), 1, + ACTIONS(9664), 1, + anon_sym_ATendvolt, + STATE(4350), 1, sym_comment, - [116852] = 3, + [143177] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8157), 1, - anon_sym_ATendsection, - STATE(3679), 1, + ACTIONS(9666), 1, + anon_sym_ATendteleport, + STATE(4351), 1, sym_comment, - [116862] = 3, + [143187] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8159), 1, - anon_sym_ATendpush, - STATE(3680), 1, + ACTIONS(9668), 1, + anon_sym_ATendpersist, + STATE(4352), 1, sym_comment, - [116872] = 3, + [143197] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8161), 1, - anon_sym_ATendPushOnce, - STATE(3681), 1, + ACTIONS(9670), 1, + anon_sym_ATendwhile, + STATE(4353), 1, sym_comment, - [116882] = 3, + [143207] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8163), 1, - anon_sym_ATendPushIf, - STATE(3682), 1, + ACTIONS(9672), 1, + anon_sym_ATendforelse, + STATE(4354), 1, sym_comment, - [116892] = 3, + [143217] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8165), 1, - anon_sym_ATendPrependOnce, - STATE(3683), 1, + ACTIONS(9674), 1, + anon_sym_ATendforeach, + STATE(4355), 1, sym_comment, - [116902] = 3, + [143227] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8167), 1, - anon_sym_ATendprepend, - STATE(3684), 1, + ACTIONS(9676), 1, + anon_sym_ATendfor, + STATE(4356), 1, sym_comment, - [116912] = 3, + [143237] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8169), 1, - anon_sym_ATendPushIf, - STATE(3685), 1, + ACTIONS(9678), 1, + aux_sym__custom_token3, + STATE(4357), 1, sym_comment, - [116922] = 3, + [143247] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8171), 1, - anon_sym_ATendprepend, - STATE(3686), 1, + ACTIONS(9680), 1, + anon_sym_ATendcanany, + STATE(4358), 1, sym_comment, - [116932] = 3, + [143257] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8173), 1, - anon_sym_ATendPrependOnce, - STATE(3687), 1, + ACTIONS(9682), 1, + anon_sym_ATendcannot, + STATE(4359), 1, sym_comment, - [116942] = 3, + [143267] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8175), 1, - anon_sym_ATendif, - STATE(3688), 1, + ACTIONS(9684), 1, + anon_sym_ATendcan, + STATE(4360), 1, sym_comment, - [116952] = 3, + [143277] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8177), 1, - anon_sym_ATendunless, - STATE(3689), 1, + ACTIONS(9686), 1, + anon_sym_ATenderror, + STATE(4361), 1, sym_comment, - [116962] = 3, + [143287] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8179), 1, - anon_sym_ATendvolt, - STATE(3690), 1, + ACTIONS(9688), 1, + anon_sym_ATendif, + STATE(4362), 1, sym_comment, - [116972] = 3, + [143297] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8181), 1, - anon_sym_ATendteleport, - STATE(3691), 1, + ACTIONS(9690), 1, + anon_sym_ATendif, + STATE(4363), 1, sym_comment, - [116982] = 3, + [143307] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8183), 1, - anon_sym_ATendpersist, - STATE(3692), 1, + ACTIONS(9692), 1, + anon_sym_ATendenv, + STATE(4364), 1, sym_comment, - [116992] = 3, + [143317] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8185), 1, - anon_sym_ATendwhile, - STATE(3693), 1, + ACTIONS(9694), 1, + anon_sym_ATendguest, + STATE(4365), 1, sym_comment, - [117002] = 3, + [143327] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8187), 1, - anon_sym_ATendforelse, - STATE(3694), 1, + ACTIONS(9696), 1, + anon_sym_ATendauth, + STATE(4366), 1, sym_comment, - [117012] = 3, + [143337] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8189), 1, - anon_sym_ATendforeach, - STATE(3695), 1, + ACTIONS(9698), 1, + anon_sym_ATendempty, + STATE(4367), 1, sym_comment, - [117022] = 3, + [143347] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8191), 1, - anon_sym_ATendfor, - STATE(3696), 1, + ACTIONS(9700), 1, + anon_sym_ATendisset, + STATE(4368), 1, sym_comment, - [117032] = 3, + [143357] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8193), 1, - aux_sym__custom_token3, - STATE(3697), 1, + ACTIONS(9702), 1, + anon_sym_ATendunless, + STATE(4369), 1, sym_comment, - [117042] = 3, + [143367] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8195), 1, - anon_sym_ATenderror, - STATE(3698), 1, + ACTIONS(9704), 1, + anon_sym_ATendif, + STATE(4370), 1, sym_comment, - [117052] = 3, + [143377] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8197), 1, - anon_sym_ATendif, - STATE(3699), 1, + ACTIONS(9706), 1, + anon_sym_ATendPrependOnce, + STATE(4371), 1, sym_comment, - [117062] = 3, + [143387] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8199), 1, - anon_sym_ATendif, - STATE(3700), 1, + ACTIONS(9708), 1, + anon_sym_ATendprepend, + STATE(4372), 1, sym_comment, - [117072] = 3, + [143397] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8201), 1, - anon_sym_ATendenv, - STATE(3701), 1, + ACTIONS(9710), 1, + anon_sym_ATendPushIf, + STATE(4373), 1, sym_comment, - [117082] = 3, + [143407] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8203), 1, - anon_sym_ATendisset, - STATE(3702), 1, + ACTIONS(9712), 1, + anon_sym_ATendPushOnce, + STATE(4374), 1, sym_comment, - [117092] = 3, + [143417] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8205), 1, - anon_sym_ATendguest, - STATE(3703), 1, + ACTIONS(9714), 1, + anon_sym_ATendpush, + STATE(4375), 1, sym_comment, - [117102] = 3, + [143427] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8207), 1, - anon_sym_ATendauth, - STATE(3704), 1, + ACTIONS(9716), 1, + anon_sym_ATendsection, + STATE(4376), 1, sym_comment, - [117112] = 3, + [143437] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8209), 1, - anon_sym_ATendempty, - STATE(3705), 1, + ACTIONS(9718), 1, + anon_sym_ATendfragment, + STATE(4377), 1, sym_comment, - [117122] = 3, + [143447] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8211), 1, - anon_sym_ATendisset, - STATE(3706), 1, + ACTIONS(9720), 1, + anon_sym_ATendvolt, + STATE(4378), 1, sym_comment, - [117132] = 3, + [143457] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8213), 1, - anon_sym_ATendunless, - STATE(3707), 1, + ACTIONS(9722), 1, + anon_sym_ATendteleport, + STATE(4379), 1, sym_comment, - [117142] = 3, + [143467] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8215), 1, - anon_sym_ATendif, - STATE(3708), 1, + ACTIONS(9724), 1, + anon_sym_ATendpersist, + STATE(4380), 1, sym_comment, - [117152] = 3, + [143477] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8217), 1, - anon_sym_ATendPushOnce, - STATE(3709), 1, + ACTIONS(9726), 1, + anon_sym_ATendwhile, + STATE(4381), 1, sym_comment, - [117162] = 3, + [143487] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8219), 1, - anon_sym_ATendpush, - STATE(3710), 1, + ACTIONS(9728), 1, + anon_sym_ATendforelse, + STATE(4382), 1, sym_comment, - [117172] = 3, + [143497] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8221), 1, - anon_sym_ATendsection, - STATE(3711), 1, + ACTIONS(9730), 1, + anon_sym_ATendforeach, + STATE(4383), 1, sym_comment, - [117182] = 3, + [143507] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8223), 1, - anon_sym_ATendPrependOnce, - STATE(3712), 1, + ACTIONS(9732), 1, + anon_sym_ATendfor, + STATE(4384), 1, sym_comment, - [117192] = 3, + [143517] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8225), 1, - anon_sym_ATendprepend, - STATE(3713), 1, + ACTIONS(9734), 1, + aux_sym__custom_token3, + STATE(4385), 1, sym_comment, - [117202] = 3, + [143527] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8227), 1, - anon_sym_ATendPushIf, - STATE(3714), 1, + ACTIONS(9736), 1, + anon_sym_ATendcanany, + STATE(4386), 1, sym_comment, - [117212] = 3, + [143537] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8229), 1, - anon_sym_ATendPushOnce, - STATE(3715), 1, + ACTIONS(9738), 1, + anon_sym_ATendcannot, + STATE(4387), 1, sym_comment, - [117222] = 3, + [143547] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8231), 1, - anon_sym_ATendpush, - STATE(3716), 1, + ACTIONS(9740), 1, + anon_sym_ATendcan, + STATE(4388), 1, sym_comment, - [117232] = 3, + [143557] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8233), 1, - anon_sym_ATendempty, - STATE(3717), 1, + ACTIONS(9742), 1, + anon_sym_ATenderror, + STATE(4389), 1, sym_comment, - [117242] = 3, + [143567] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8235), 1, - anon_sym_ATendauth, - STATE(3718), 1, + ACTIONS(9744), 1, + anon_sym_ATendif, + STATE(4390), 1, sym_comment, - [117252] = 3, + [143577] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8237), 1, - anon_sym_ATendsection, - STATE(3719), 1, + ACTIONS(9746), 1, + anon_sym_ATendif, + STATE(4391), 1, sym_comment, - [117262] = 3, + [143587] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8239), 1, - anon_sym_ATendfragment, - STATE(3720), 1, + ACTIONS(9748), 1, + anon_sym_ATendenv, + STATE(4392), 1, sym_comment, - [117272] = 3, + [143597] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8241), 1, + ACTIONS(9750), 1, anon_sym_ATendguest, - STATE(3721), 1, + STATE(4393), 1, sym_comment, - [117282] = 3, + [143607] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8243), 1, - anon_sym_ATendenv, - STATE(3722), 1, + ACTIONS(9752), 1, + anon_sym_ATendsection, + STATE(4394), 1, sym_comment, - [117292] = 3, + [143617] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8245), 1, - anon_sym_ATendif, - STATE(3723), 1, + ACTIONS(9754), 1, + anon_sym_ATendempty, + STATE(4395), 1, sym_comment, - [117302] = 3, + [143627] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8247), 1, + ACTIONS(9756), 1, + anon_sym_ATendisset, + STATE(4396), 1, + sym_comment, + [143637] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9758), 1, + anon_sym_ATendunless, + STATE(4397), 1, + sym_comment, + [143647] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9760), 1, anon_sym_ATendif, - STATE(3724), 1, + STATE(4398), 1, sym_comment, - [117312] = 3, + [143657] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8249), 1, - anon_sym_ATenderror, - STATE(3725), 1, + ACTIONS(9762), 1, + anon_sym_ATendPrependOnce, + STATE(4399), 1, sym_comment, - [117322] = 3, + [143667] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8251), 1, - aux_sym__custom_token3, - STATE(3726), 1, + ACTIONS(9764), 1, + anon_sym_ATendprepend, + STATE(4400), 1, sym_comment, - [117332] = 3, + [143677] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8253), 1, - anon_sym_ATendfor, - STATE(3727), 1, + ACTIONS(9766), 1, + anon_sym_ATendPushIf, + STATE(4401), 1, sym_comment, - [117342] = 3, + [143687] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8255), 1, - anon_sym_ATendforeach, - STATE(3728), 1, + ACTIONS(9768), 1, + anon_sym_ATendPushOnce, + STATE(4402), 1, sym_comment, - [117352] = 3, + [143697] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8257), 1, - anon_sym_ATenderror, - STATE(3729), 1, + ACTIONS(9770), 1, + anon_sym_ATendpush, + STATE(4403), 1, sym_comment, - [117362] = 3, + [143707] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8259), 1, - anon_sym_ATendwhile, - STATE(3730), 1, + ACTIONS(9772), 1, + anon_sym_ATendsection, + STATE(4404), 1, sym_comment, - [117372] = 3, + [143717] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8261), 1, - anon_sym_ATendfor, - STATE(3731), 1, + ACTIONS(9774), 1, + anon_sym_ATendfragment, + STATE(4405), 1, sym_comment, - [117382] = 3, + [143727] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8263), 1, + ACTIONS(9776), 1, anon_sym_ATendvolt, - STATE(3732), 1, + STATE(4406), 1, sym_comment, - [117392] = 3, + [143737] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8265), 1, + ACTIONS(9778), 1, anon_sym_ATendteleport, - STATE(3733), 1, + STATE(4407), 1, sym_comment, - [117402] = 3, + [143747] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8267), 1, + ACTIONS(9780), 1, anon_sym_ATendpersist, - STATE(3734), 1, + STATE(4408), 1, sym_comment, - [117412] = 3, + [143757] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8269), 1, + ACTIONS(9782), 1, anon_sym_ATendwhile, - STATE(3735), 1, + STATE(4409), 1, sym_comment, - [117422] = 3, + [143767] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8271), 1, + ACTIONS(9784), 1, anon_sym_ATendforelse, - STATE(3736), 1, + STATE(4410), 1, sym_comment, - [117432] = 3, + [143777] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8273), 1, + ACTIONS(9786), 1, anon_sym_ATendforeach, - STATE(3737), 1, + STATE(4411), 1, sym_comment, - [117442] = 3, + [143787] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8275), 1, + ACTIONS(9788), 1, anon_sym_ATendfor, - STATE(3738), 1, + STATE(4412), 1, sym_comment, - [117452] = 3, + [143797] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8277), 1, + ACTIONS(9790), 1, aux_sym__custom_token3, - STATE(3739), 1, + STATE(4413), 1, sym_comment, - [117462] = 3, + [143807] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8279), 1, - anon_sym_ATenderror, - STATE(3740), 1, + ACTIONS(9792), 1, + anon_sym_ATendcanany, + STATE(4414), 1, sym_comment, - [117472] = 3, + [143817] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8281), 1, - anon_sym_ATendif, - STATE(3741), 1, + ACTIONS(9794), 1, + anon_sym_ATendcannot, + STATE(4415), 1, sym_comment, - [117482] = 3, + [143827] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8283), 1, + ACTIONS(9796), 1, + anon_sym_ATendcan, + STATE(4416), 1, + sym_comment, + [143837] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9798), 1, + anon_sym_ATenderror, + STATE(4417), 1, + sym_comment, + [143847] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9800), 1, anon_sym_ATendif, - STATE(3742), 1, + STATE(4418), 1, sym_comment, - [117492] = 3, + [143857] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8285), 1, - anon_sym_ATendenv, - STATE(3743), 1, + ACTIONS(9802), 1, + anon_sym_ATendif, + STATE(4419), 1, sym_comment, - [117502] = 3, + [143867] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8287), 1, - anon_sym_ATendteleport, - STATE(3744), 1, + ACTIONS(9804), 1, + anon_sym_ATendenv, + STATE(4420), 1, sym_comment, - [117512] = 3, + [143877] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8289), 1, + ACTIONS(9806), 1, anon_sym_ATendguest, - STATE(3745), 1, + STATE(4421), 1, sym_comment, - [117522] = 3, + [143887] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8291), 1, + ACTIONS(9808), 1, anon_sym_ATendauth, - STATE(3746), 1, + STATE(4422), 1, sym_comment, - [117532] = 3, + [143897] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8293), 1, + ACTIONS(9810), 1, anon_sym_ATendempty, - STATE(3747), 1, + STATE(4423), 1, sym_comment, - [117542] = 3, + [143907] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8295), 1, + ACTIONS(9812), 1, anon_sym_ATendisset, - STATE(3748), 1, + STATE(4424), 1, sym_comment, - [117552] = 3, + [143917] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8297), 1, + ACTIONS(9814), 1, anon_sym_ATendunless, - STATE(3749), 1, + STATE(4425), 1, sym_comment, - [117562] = 3, + [143927] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8299), 1, + ACTIONS(9816), 1, anon_sym_ATendif, - STATE(3750), 1, + STATE(4426), 1, sym_comment, - [117572] = 3, + [143937] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8301), 1, + ACTIONS(9818), 1, anon_sym_ATendPrependOnce, - STATE(3751), 1, + STATE(4427), 1, sym_comment, - [117582] = 3, + [143947] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8303), 1, + ACTIONS(9820), 1, anon_sym_ATendprepend, - STATE(3752), 1, + STATE(4428), 1, sym_comment, - [117592] = 3, + [143957] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8305), 1, + ACTIONS(9822), 1, anon_sym_ATendPushIf, - STATE(3753), 1, + STATE(4429), 1, sym_comment, - [117602] = 3, + [143967] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8307), 1, + ACTIONS(9824), 1, anon_sym_ATendPushOnce, - STATE(3754), 1, + STATE(4430), 1, sym_comment, - [117612] = 3, + [143977] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8309), 1, + ACTIONS(9826), 1, anon_sym_ATendpush, - STATE(3755), 1, + STATE(4431), 1, sym_comment, - [117622] = 3, + [143987] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8311), 1, + ACTIONS(9828), 1, + anon_sym_ATendfragment, + STATE(4432), 1, + sym_comment, + [143997] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9830), 1, + anon_sym_ATendfragment, + STATE(4433), 1, + sym_comment, + [144007] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9832), 1, anon_sym_ATendvolt, - STATE(3756), 1, + STATE(4434), 1, sym_comment, - [117632] = 3, + [144017] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8313), 1, - anon_sym_ATendsection, - STATE(3757), 1, + ACTIONS(9834), 1, + anon_sym_ATendteleport, + STATE(4435), 1, sym_comment, - [117642] = 3, + [144027] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8315), 1, - anon_sym_ATendfragment, - STATE(3758), 1, + ACTIONS(9836), 1, + anon_sym_ATendpersist, + STATE(4436), 1, sym_comment, - [117652] = 3, + [144037] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8317), 1, - anon_sym_ATendfragment, - STATE(3759), 1, + ACTIONS(9838), 1, + anon_sym_ATendwhile, + STATE(4437), 1, sym_comment, - [117662] = 3, + [144047] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8319), 1, - anon_sym_ATendsection, - STATE(3760), 1, + ACTIONS(9840), 1, + anon_sym_ATendforelse, + STATE(4438), 1, sym_comment, - [117672] = 3, + [144057] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8321), 1, - anon_sym_ATendpush, - STATE(3761), 1, + ACTIONS(9842), 1, + anon_sym_ATendforeach, + STATE(4439), 1, sym_comment, - [117682] = 3, + [144067] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8323), 1, - ts_builtin_sym_end, - STATE(3762), 1, + ACTIONS(9844), 1, + anon_sym_ATendfor, + STATE(4440), 1, sym_comment, - [117692] = 3, + [144077] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8325), 1, - anon_sym_ATendPushOnce, - STATE(3763), 1, + ACTIONS(9846), 1, + aux_sym__custom_token3, + STATE(4441), 1, sym_comment, - [117702] = 3, + [144087] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8327), 1, - anon_sym_ATendPushIf, - STATE(3764), 1, + ACTIONS(9848), 1, + anon_sym_ATendcanany, + STATE(4442), 1, sym_comment, - [117712] = 3, + [144097] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8329), 1, - anon_sym_ATendprepend, - STATE(3765), 1, + ACTIONS(9850), 1, + anon_sym_ATendcannot, + STATE(4443), 1, sym_comment, - [117722] = 3, + [144107] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8331), 1, - anon_sym_ATendPrependOnce, - STATE(3766), 1, + ACTIONS(9852), 1, + anon_sym_ATendcan, + STATE(4444), 1, sym_comment, - [117732] = 3, + [144117] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8333), 1, + ACTIONS(9854), 1, + anon_sym_ATenderror, + STATE(4445), 1, + sym_comment, + [144127] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9856), 1, anon_sym_ATendif, - STATE(3767), 1, + STATE(4446), 1, sym_comment, - [117742] = 3, + [144137] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8335), 1, - anon_sym_ATendvolt, - STATE(3768), 1, + ACTIONS(9858), 1, + anon_sym_ATendif, + STATE(4447), 1, sym_comment, - [117752] = 3, + [144147] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8337), 1, - anon_sym_ATendteleport, - STATE(3769), 1, + ACTIONS(9860), 1, + anon_sym_ATendenv, + STATE(4448), 1, sym_comment, - [117762] = 3, + [144157] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8339), 1, - anon_sym_ATendpersist, - STATE(3770), 1, + ACTIONS(9862), 1, + anon_sym_ATendguest, + STATE(4449), 1, sym_comment, - [117772] = 3, + [144167] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8341), 1, - anon_sym_ATendwhile, - STATE(3771), 1, + ACTIONS(9864), 1, + anon_sym_ATendauth, + STATE(4450), 1, sym_comment, - [117782] = 3, + [144177] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8343), 1, - anon_sym_ATendforelse, - STATE(3772), 1, + ACTIONS(9866), 1, + anon_sym_ATendempty, + STATE(4451), 1, sym_comment, - [117792] = 3, + [144187] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8345), 1, - anon_sym_ATendforeach, - STATE(3773), 1, + ACTIONS(9868), 1, + anon_sym_ATendisset, + STATE(4452), 1, sym_comment, - [117802] = 3, + [144197] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8347), 1, - anon_sym_ATendfor, - STATE(3774), 1, + ACTIONS(9870), 1, + anon_sym_ATendunless, + STATE(4453), 1, sym_comment, - [117812] = 3, + [144207] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8349), 1, - aux_sym__custom_token3, - STATE(3775), 1, + ACTIONS(9872), 1, + anon_sym_ATendif, + STATE(4454), 1, sym_comment, - [117822] = 3, + [144217] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8351), 1, - anon_sym_ATendauth, - STATE(3776), 1, + ACTIONS(9874), 1, + anon_sym_ATendPrependOnce, + STATE(4455), 1, sym_comment, - [117832] = 3, + [144227] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8353), 1, - anon_sym_ATendif, - STATE(3777), 1, + ACTIONS(9876), 1, + anon_sym_ATendprepend, + STATE(4456), 1, sym_comment, - [117842] = 3, + [144237] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8355), 1, - anon_sym_ATendif, - STATE(3778), 1, + ACTIONS(9878), 1, + anon_sym_ATendPushIf, + STATE(4457), 1, sym_comment, - [117852] = 3, + [144247] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8357), 1, - anon_sym_ATendenv, - STATE(3779), 1, + ACTIONS(9880), 1, + anon_sym_ATendPushOnce, + STATE(4458), 1, sym_comment, - [117862] = 3, + [144257] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8359), 1, - anon_sym_ATendunless, - STATE(3780), 1, + ACTIONS(9882), 1, + anon_sym_ATendpush, + STATE(4459), 1, sym_comment, - [117872] = 3, + [144267] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8361), 1, - anon_sym_ATendguest, - STATE(3781), 1, + ACTIONS(9884), 1, + anon_sym_ATendsection, + STATE(4460), 1, sym_comment, - [117882] = 3, + [144277] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8363), 1, - anon_sym_ATendauth, - STATE(3782), 1, + ACTIONS(9886), 1, + anon_sym_ATendpush, + STATE(4461), 1, sym_comment, - [117892] = 3, + [144287] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8365), 1, - anon_sym_ATendempty, - STATE(3783), 1, + ACTIONS(9888), 1, + anon_sym_ATendvolt, + STATE(4462), 1, sym_comment, - [117902] = 3, + [144297] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8367), 1, - anon_sym_ATendisset, - STATE(3784), 1, + ACTIONS(9890), 1, + anon_sym_ATendteleport, + STATE(4463), 1, sym_comment, - [117912] = 3, + [144307] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8369), 1, - anon_sym_ATendunless, - STATE(3785), 1, + ACTIONS(9892), 1, + anon_sym_ATendpersist, + STATE(4464), 1, sym_comment, - [117922] = 3, + [144317] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8371), 1, - anon_sym_ATendif, - STATE(3786), 1, + ACTIONS(9894), 1, + anon_sym_ATendwhile, + STATE(4465), 1, sym_comment, - [117932] = 3, + [144327] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8373), 1, - anon_sym_ATendPrependOnce, - STATE(3787), 1, + ACTIONS(9896), 1, + anon_sym_ATendforelse, + STATE(4466), 1, sym_comment, - [117942] = 3, + [144337] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8375), 1, - anon_sym_ATendprepend, - STATE(3788), 1, + ACTIONS(9898), 1, + anon_sym_ATendforeach, + STATE(4467), 1, sym_comment, - [117952] = 3, + [144347] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8377), 1, - anon_sym_ATendPushIf, - STATE(3789), 1, + ACTIONS(9900), 1, + anon_sym_ATendfor, + STATE(4468), 1, + sym_comment, + [144357] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9902), 1, + aux_sym__custom_token3, + STATE(4469), 1, + sym_comment, + [144367] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9904), 1, + anon_sym_ATendcanany, + STATE(4470), 1, + sym_comment, + [144377] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9906), 1, + anon_sym_ATendcannot, + STATE(4471), 1, sym_comment, - [117962] = 3, + [144387] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8379), 1, - anon_sym_ATendPushOnce, - STATE(3790), 1, + ACTIONS(9908), 1, + anon_sym_ATendcan, + STATE(4472), 1, sym_comment, - [117972] = 3, + [144397] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8381), 1, - anon_sym_ATendpush, - STATE(3791), 1, + ACTIONS(9910), 1, + anon_sym_ATenderror, + STATE(4473), 1, sym_comment, - [117982] = 3, + [144407] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8383), 1, - anon_sym_ATendisset, - STATE(3792), 1, + ACTIONS(9912), 1, + anon_sym_ATendif, + STATE(4474), 1, sym_comment, - [117992] = 3, + [144417] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8385), 1, - anon_sym_ATendempty, - STATE(3793), 1, + ACTIONS(9914), 1, + anon_sym_ATendif, + STATE(4475), 1, sym_comment, - [118002] = 3, + [144427] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8387), 1, - anon_sym_ATendsection, - STATE(3794), 1, + ACTIONS(9916), 1, + anon_sym_ATendenv, + STATE(4476), 1, sym_comment, - [118012] = 3, + [144437] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8389), 1, - anon_sym_ATendfragment, - STATE(3795), 1, + ACTIONS(9918), 1, + anon_sym_ATendguest, + STATE(4477), 1, sym_comment, - [118022] = 3, + [144447] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8391), 1, + ACTIONS(9920), 1, anon_sym_ATendauth, - STATE(3796), 1, + STATE(4478), 1, sym_comment, - [118032] = 3, + [144457] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8393), 1, - anon_sym_ATendguest, - STATE(3797), 1, + ACTIONS(9922), 1, + anon_sym_ATendempty, + STATE(4479), 1, sym_comment, - [118042] = 3, + [144467] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8395), 1, - anon_sym_ATendenv, - STATE(3798), 1, + ACTIONS(9924), 1, + anon_sym_ATendisset, + STATE(4480), 1, sym_comment, - [118052] = 3, + [144477] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8397), 1, - anon_sym_ATendif, - STATE(3799), 1, + ACTIONS(9926), 1, + anon_sym_ATendunless, + STATE(4481), 1, sym_comment, - [118062] = 3, + [144487] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8399), 1, + ACTIONS(9928), 1, anon_sym_ATendif, - STATE(3800), 1, + STATE(4482), 1, sym_comment, - [118072] = 3, + [144497] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8401), 1, - anon_sym_ATenderror, - STATE(3801), 1, + ACTIONS(9930), 1, + anon_sym_ATendPrependOnce, + STATE(4483), 1, sym_comment, - [118082] = 3, + [144507] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8403), 1, - aux_sym__custom_token3, - STATE(3802), 1, + ACTIONS(9932), 1, + anon_sym_ATendprepend, + STATE(4484), 1, sym_comment, - [118092] = 3, + [144517] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8405), 1, - anon_sym_ATendfor, - STATE(3803), 1, + ACTIONS(9934), 1, + anon_sym_ATendPushIf, + STATE(4485), 1, sym_comment, - [118102] = 3, + [144527] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8407), 1, - anon_sym_ATendforeach, - STATE(3804), 1, + ACTIONS(9936), 1, + anon_sym_ATendPushOnce, + STATE(4486), 1, sym_comment, - [118112] = 3, + [144537] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8409), 1, - anon_sym_ATendforelse, - STATE(3805), 1, + ACTIONS(9938), 1, + anon_sym_ATendpush, + STATE(4487), 1, sym_comment, - [118122] = 3, + [144547] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8411), 1, - anon_sym_ATendwhile, - STATE(3806), 1, + ACTIONS(9940), 1, + anon_sym_ATendsection, + STATE(4488), 1, sym_comment, - [118132] = 3, + [144557] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8413), 1, + ACTIONS(9942), 1, + anon_sym_ATendfragment, + STATE(4489), 1, + sym_comment, + [144567] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9944), 1, anon_sym_ATendvolt, - STATE(3807), 1, + STATE(4490), 1, sym_comment, - [118142] = 3, + [144577] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8415), 1, + ACTIONS(9946), 1, anon_sym_ATendteleport, - STATE(3808), 1, + STATE(4491), 1, sym_comment, - [118152] = 3, + [144587] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8417), 1, + ACTIONS(9948), 1, anon_sym_ATendpersist, - STATE(3809), 1, + STATE(4492), 1, sym_comment, - [118162] = 3, + [144597] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8419), 1, + ACTIONS(9950), 1, anon_sym_ATendwhile, - STATE(3810), 1, + STATE(4493), 1, sym_comment, - [118172] = 3, + [144607] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8421), 1, + ACTIONS(9952), 1, anon_sym_ATendforelse, - STATE(3811), 1, + STATE(4494), 1, sym_comment, - [118182] = 3, + [144617] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8423), 1, + ACTIONS(9954), 1, anon_sym_ATendforeach, - STATE(3812), 1, + STATE(4495), 1, sym_comment, - [118192] = 3, + [144627] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8425), 1, + ACTIONS(9956), 1, anon_sym_ATendfor, - STATE(3813), 1, + STATE(4496), 1, sym_comment, - [118202] = 3, + [144637] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8427), 1, + ACTIONS(9958), 1, aux_sym__custom_token3, - STATE(3814), 1, + STATE(4497), 1, sym_comment, - [118212] = 3, + [144647] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8429), 1, - anon_sym_ATenderror, - STATE(3815), 1, + ACTIONS(9960), 1, + anon_sym_ATendcanany, + STATE(4498), 1, sym_comment, - [118222] = 3, + [144657] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8431), 1, - anon_sym_ATendif, - STATE(3816), 1, + ACTIONS(9962), 1, + anon_sym_ATendcannot, + STATE(4499), 1, sym_comment, - [118232] = 3, + [144667] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8433), 1, + ACTIONS(9964), 1, + anon_sym_ATendcan, + STATE(4500), 1, + sym_comment, + [144677] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9966), 1, + anon_sym_ATenderror, + STATE(4501), 1, + sym_comment, + [144687] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(9968), 1, anon_sym_ATendif, - STATE(3817), 1, + STATE(4502), 1, sym_comment, - [118242] = 3, + [144697] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8435), 1, - anon_sym_ATendenv, - STATE(3818), 1, + ACTIONS(9970), 1, + anon_sym_ATendif, + STATE(4503), 1, sym_comment, - [118252] = 3, + [144707] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8437), 1, - anon_sym_ATendpersist, - STATE(3819), 1, + ACTIONS(9972), 1, + anon_sym_ATendenv, + STATE(4504), 1, sym_comment, - [118262] = 3, + [144717] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8439), 1, + ACTIONS(9974), 1, anon_sym_ATendguest, - STATE(3820), 1, + STATE(4505), 1, sym_comment, - [118272] = 3, + [144727] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8441), 1, + ACTIONS(9976), 1, anon_sym_ATendauth, - STATE(3821), 1, + STATE(4506), 1, sym_comment, - [118282] = 3, + [144737] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8443), 1, + ACTIONS(9978), 1, anon_sym_ATendempty, - STATE(3822), 1, + STATE(4507), 1, sym_comment, - [118292] = 3, + [144747] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8445), 1, + ACTIONS(9980), 1, anon_sym_ATendisset, - STATE(3823), 1, + STATE(4508), 1, sym_comment, - [118302] = 3, + [144757] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8447), 1, + ACTIONS(9982), 1, anon_sym_ATendunless, - STATE(3824), 1, + STATE(4509), 1, sym_comment, - [118312] = 3, + [144767] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8449), 1, + ACTIONS(9984), 1, anon_sym_ATendif, - STATE(3825), 1, + STATE(4510), 1, sym_comment, - [118322] = 3, + [144777] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8451), 1, + ACTIONS(9986), 1, anon_sym_ATendPrependOnce, - STATE(3826), 1, + STATE(4511), 1, sym_comment, - [118332] = 3, + [144787] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8453), 1, + ACTIONS(9988), 1, anon_sym_ATendprepend, - STATE(3827), 1, + STATE(4512), 1, sym_comment, - [118342] = 3, + [144797] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8455), 1, + ACTIONS(9990), 1, anon_sym_ATendPushIf, - STATE(3828), 1, + STATE(4513), 1, sym_comment, - [118352] = 3, + [144807] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8457), 1, + ACTIONS(9992), 1, anon_sym_ATendPushOnce, - STATE(3829), 1, + STATE(4514), 1, sym_comment, - [118362] = 3, + [144817] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8459), 1, + ACTIONS(9994), 1, anon_sym_ATendpush, - STATE(3830), 1, - sym_comment, - [118372] = 3, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8461), 1, - anon_sym_ATendteleport, - STATE(3831), 1, + STATE(4515), 1, sym_comment, - [118382] = 3, + [144827] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8463), 1, - anon_sym_ATendvolt, - STATE(3832), 1, + ACTIONS(9996), 1, + anon_sym_ATendsection, + STATE(4516), 1, sym_comment, - [118392] = 3, + [144837] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8465), 1, - anon_sym_ATendsection, - STATE(3833), 1, + ACTIONS(9998), 1, + anon_sym_ATendfragment, + STATE(4517), 1, sym_comment, - [118402] = 3, + [144847] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8467), 1, - anon_sym_ATendfragment, - STATE(3834), 1, + ACTIONS(10000), 1, + anon_sym_ATendvolt, + STATE(4518), 1, sym_comment, - [118412] = 3, + [144857] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8469), 1, - anon_sym_ATendfragment, - STATE(3835), 1, + ACTIONS(10002), 1, + anon_sym_ATendteleport, + STATE(4519), 1, sym_comment, - [118422] = 3, + [144867] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8471), 1, + ACTIONS(10004), 1, anon_sym_ATendpersist, - STATE(3836), 1, + STATE(4520), 1, sym_comment, - [118432] = 3, + [144877] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8473), 1, - anon_sym_ATendpush, - STATE(3837), 1, + ACTIONS(10006), 1, + anon_sym_ATendwhile, + STATE(4521), 1, sym_comment, - [118442] = 3, + [144887] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8475), 1, - anon_sym_ATendPushOnce, - STATE(3838), 1, + ACTIONS(10008), 1, + anon_sym_ATendforelse, + STATE(4522), 1, sym_comment, - [118452] = 3, + [144897] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8477), 1, - anon_sym_ATendPushIf, - STATE(3839), 1, + ACTIONS(10010), 1, + anon_sym_ATendforeach, + STATE(4523), 1, sym_comment, - [118462] = 3, + [144907] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8479), 1, - anon_sym_ATendprepend, - STATE(3840), 1, + ACTIONS(10012), 1, + anon_sym_ATendfor, + STATE(4524), 1, sym_comment, - [118472] = 3, + [144917] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8481), 1, - anon_sym_ATendPrependOnce, - STATE(3841), 1, + ACTIONS(10014), 1, + aux_sym__custom_token3, + STATE(4525), 1, sym_comment, - [118482] = 3, + [144927] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8483), 1, - anon_sym_ATendvolt, - STATE(3842), 1, + ACTIONS(10016), 1, + anon_sym_ATendcanany, + STATE(4526), 1, sym_comment, - [118492] = 3, + [144937] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8485), 1, - anon_sym_ATendteleport, - STATE(3843), 1, + ACTIONS(10018), 1, + anon_sym_ATendcannot, + STATE(4527), 1, sym_comment, - [118502] = 3, + [144947] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8487), 1, - anon_sym_ATendpersist, - STATE(3844), 1, + ACTIONS(10020), 1, + anon_sym_ATendcan, + STATE(4528), 1, sym_comment, - [118512] = 3, + [144957] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8489), 1, - anon_sym_ATendwhile, - STATE(3845), 1, + ACTIONS(10022), 1, + anon_sym_ATenderror, + STATE(4529), 1, sym_comment, - [118522] = 3, + [144967] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8491), 1, - anon_sym_ATendforelse, - STATE(3846), 1, + ACTIONS(10024), 1, + anon_sym_ATendif, + STATE(4530), 1, sym_comment, - [118532] = 3, + [144977] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8493), 1, - anon_sym_ATendforeach, - STATE(3847), 1, + ACTIONS(10026), 1, + anon_sym_ATendif, + STATE(4531), 1, sym_comment, - [118542] = 3, + [144987] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8495), 1, - anon_sym_ATendfor, - STATE(3848), 1, + ACTIONS(10028), 1, + anon_sym_ATendenv, + STATE(4532), 1, sym_comment, - [118552] = 3, + [144997] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8497), 1, - aux_sym__custom_token3, - STATE(3849), 1, + ACTIONS(10030), 1, + anon_sym_ATendguest, + STATE(4533), 1, sym_comment, - [118562] = 3, + [145007] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8499), 1, - anon_sym_ATenderror, - STATE(3850), 1, + ACTIONS(10032), 1, + anon_sym_ATendauth, + STATE(4534), 1, sym_comment, - [118572] = 3, + [145017] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8501), 1, - anon_sym_ATendif, - STATE(3851), 1, + ACTIONS(10034), 1, + anon_sym_ATendempty, + STATE(4535), 1, sym_comment, - [118582] = 3, + [145027] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8503), 1, - anon_sym_ATendif, - STATE(3852), 1, + ACTIONS(10036), 1, + anon_sym_ATendisset, + STATE(4536), 1, sym_comment, - [118592] = 3, + [145037] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8505), 1, - anon_sym_ATendenv, - STATE(3853), 1, + ACTIONS(10038), 1, + anon_sym_ATendunless, + STATE(4537), 1, sym_comment, - [118602] = 3, + [145047] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8507), 1, + ACTIONS(10040), 1, anon_sym_ATendif, - STATE(3854), 1, + STATE(4538), 1, sym_comment, - [118612] = 3, + [145057] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8509), 1, - anon_sym_ATendguest, - STATE(3855), 1, + ACTIONS(10042), 1, + anon_sym_ATendPrependOnce, + STATE(4539), 1, sym_comment, - [118622] = 3, + [145067] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8511), 1, - anon_sym_ATendforelse, - STATE(3856), 1, + ACTIONS(10044), 1, + anon_sym_ATendprepend, + STATE(4540), 1, sym_comment, - [118632] = 3, + [145077] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8513), 1, - anon_sym_ATendempty, - STATE(3857), 1, + ACTIONS(10046), 1, + anon_sym_ATendPushIf, + STATE(4541), 1, sym_comment, - [118642] = 3, + [145087] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8515), 1, - anon_sym_ATendisset, - STATE(3858), 1, + ACTIONS(10048), 1, + anon_sym_ATendPushOnce, + STATE(4542), 1, sym_comment, - [118652] = 3, + [145097] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8517), 1, - anon_sym_ATendunless, - STATE(3859), 1, + ACTIONS(10050), 1, + anon_sym_ATendenv, + STATE(4543), 1, sym_comment, - [118662] = 3, + [145107] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8519), 1, - anon_sym_ATendif, - STATE(3860), 1, + ACTIONS(10052), 1, + anon_sym_ATendsection, + STATE(4544), 1, sym_comment, - [118672] = 3, + [145117] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8521), 1, - anon_sym_ATendPrependOnce, - STATE(3861), 1, + ACTIONS(10054), 1, + anon_sym_ATendfragment, + STATE(4545), 1, sym_comment, - [118682] = 3, + [145127] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8523), 1, - anon_sym_ATendprepend, - STATE(3862), 1, + ACTIONS(10056), 1, + anon_sym_ATendvolt, + STATE(4546), 1, sym_comment, - [118692] = 3, + [145137] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8525), 1, - anon_sym_ATendPushIf, - STATE(3863), 1, + ACTIONS(10058), 1, + anon_sym_ATendteleport, + STATE(4547), 1, sym_comment, - [118702] = 3, + [145147] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8527), 1, - anon_sym_ATendPushOnce, - STATE(3864), 1, + ACTIONS(10060), 1, + anon_sym_ATendpersist, + STATE(4548), 1, sym_comment, - [118712] = 3, + [145157] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8529), 1, - anon_sym_ATendpush, - STATE(3865), 1, + ACTIONS(10062), 1, + anon_sym_ATendwhile, + STATE(4549), 1, sym_comment, - [118722] = 3, + [145167] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8531), 1, - anon_sym_ATendunless, - STATE(3866), 1, + ACTIONS(10064), 1, + anon_sym_ATendforelse, + STATE(4550), 1, sym_comment, - [118732] = 3, + [145177] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8533), 1, - anon_sym_ATendisset, - STATE(3867), 1, + ACTIONS(10066), 1, + anon_sym_ATendforeach, + STATE(4551), 1, sym_comment, - [118742] = 3, + [145187] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8535), 1, - anon_sym_ATendsection, - STATE(3868), 1, + ACTIONS(10068), 1, + anon_sym_ATendfor, + STATE(4552), 1, sym_comment, - [118752] = 3, + [145197] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8537), 1, - anon_sym_ATendfragment, - STATE(3869), 1, + ACTIONS(10070), 1, + aux_sym__custom_token3, + STATE(4553), 1, sym_comment, - [118762] = 3, + [145207] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8539), 1, - anon_sym_ATendsection, - STATE(3870), 1, + ACTIONS(10072), 1, + anon_sym_ATendcanany, + STATE(4554), 1, sym_comment, - [118772] = 3, + [145217] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8541), 1, - anon_sym_ATendauth, - STATE(3871), 1, + ACTIONS(10074), 1, + anon_sym_ATendcannot, + STATE(4555), 1, sym_comment, - [118782] = 3, + [145227] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8543), 1, - anon_sym_ATendguest, - STATE(3872), 1, + ACTIONS(10076), 1, + anon_sym_ATendcan, + STATE(4556), 1, sym_comment, - [118792] = 3, + [145237] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8545), 1, - anon_sym_ATendenv, - STATE(3873), 1, + ACTIONS(10078), 1, + anon_sym_ATenderror, + STATE(4557), 1, sym_comment, - [118802] = 3, + [145247] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8547), 1, + ACTIONS(10080), 1, anon_sym_ATendif, - STATE(3874), 1, + STATE(4558), 1, sym_comment, - [118812] = 3, + [145257] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8549), 1, + ACTIONS(10082), 1, anon_sym_ATendif, - STATE(3875), 1, + STATE(4559), 1, sym_comment, - [118822] = 3, + [145267] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8551), 1, - anon_sym_ATenderror, - STATE(3876), 1, + ACTIONS(10084), 1, + anon_sym_ATendcannot, + STATE(4560), 1, sym_comment, - [118832] = 3, + [145277] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8553), 1, - aux_sym__custom_token3, - STATE(3877), 1, + ACTIONS(10086), 1, + anon_sym_ATendguest, + STATE(4561), 1, sym_comment, - [118842] = 3, + [145287] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8555), 1, - anon_sym_ATendfor, - STATE(3878), 1, + ACTIONS(10088), 1, + anon_sym_ATendauth, + STATE(4562), 1, sym_comment, - [118852] = 3, + [145297] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8557), 1, - anon_sym_ATendforeach, - STATE(3879), 1, + ACTIONS(10090), 1, + anon_sym_ATendempty, + STATE(4563), 1, sym_comment, - [118862] = 3, + [145307] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8559), 1, + ACTIONS(10092), 1, anon_sym_ATendisset, - STATE(3880), 1, + STATE(4564), 1, sym_comment, - [118872] = 3, + [145317] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8561), 1, - anon_sym_ATendvolt, - STATE(3881), 1, + ACTIONS(10094), 1, + anon_sym_ATendunless, + STATE(4565), 1, sym_comment, - [118882] = 3, + [145327] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8563), 1, - anon_sym_ATendteleport, - STATE(3882), 1, + ACTIONS(10096), 1, + anon_sym_ATendif, + STATE(4566), 1, sym_comment, - [118892] = 3, + [145337] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8565), 1, - anon_sym_ATendpersist, - STATE(3883), 1, + ACTIONS(10098), 1, + anon_sym_ATendPrependOnce, + STATE(4567), 1, sym_comment, - [118902] = 3, + [145347] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8567), 1, - anon_sym_ATendwhile, - STATE(3884), 1, + ACTIONS(10100), 1, + anon_sym_ATendprepend, + STATE(4568), 1, sym_comment, - [118912] = 3, + [145357] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8569), 1, - anon_sym_ATendforelse, - STATE(3885), 1, + ACTIONS(10102), 1, + anon_sym_ATendPushIf, + STATE(4569), 1, sym_comment, - [118922] = 3, + [145367] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8571), 1, - anon_sym_ATendforeach, - STATE(3886), 1, + ACTIONS(10104), 1, + anon_sym_ATendPushOnce, + STATE(4570), 1, sym_comment, - [118932] = 3, + [145377] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8573), 1, - anon_sym_ATendfor, - STATE(3887), 1, + ACTIONS(10106), 1, + anon_sym_ATendpush, + STATE(4571), 1, sym_comment, - [118942] = 3, + [145387] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8575), 1, - aux_sym__custom_token3, - STATE(3888), 1, + ACTIONS(10108), 1, + anon_sym_ATendsection, + STATE(4572), 1, sym_comment, - [118952] = 3, + [145397] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8577), 1, - anon_sym_ATenderror, - STATE(3889), 1, + ACTIONS(10110), 1, + anon_sym_ATendfragment, + STATE(4573), 1, sym_comment, - [118962] = 3, + [145407] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8579), 1, - anon_sym_ATendif, - STATE(3890), 1, + ACTIONS(10112), 1, + anon_sym_ATendvolt, + STATE(4574), 1, sym_comment, - [118972] = 3, + [145417] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8581), 1, - anon_sym_ATendif, - STATE(3891), 1, + ACTIONS(10114), 1, + anon_sym_ATendteleport, + STATE(4575), 1, sym_comment, - [118982] = 3, + [145427] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8583), 1, - anon_sym_ATendenv, - STATE(3892), 1, + ACTIONS(10116), 1, + anon_sym_ATendpersist, + STATE(4576), 1, sym_comment, - [118992] = 3, + [145437] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8585), 1, + ACTIONS(10118), 1, anon_sym_ATendwhile, - STATE(3893), 1, + STATE(4577), 1, sym_comment, - [119002] = 3, + [145447] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8587), 1, - anon_sym_ATendguest, - STATE(3894), 1, + ACTIONS(10120), 1, + anon_sym_ATendforelse, + STATE(4578), 1, sym_comment, - [119012] = 3, + [145457] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8589), 1, - anon_sym_ATendauth, - STATE(3895), 1, + ACTIONS(10122), 1, + anon_sym_ATendforeach, + STATE(4579), 1, sym_comment, - [119022] = 3, + [145467] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8591), 1, - anon_sym_ATendempty, - STATE(3896), 1, + ACTIONS(10124), 1, + anon_sym_ATendfor, + STATE(4580), 1, sym_comment, - [119032] = 3, + [145477] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8593), 1, - anon_sym_ATendisset, - STATE(3897), 1, + ACTIONS(10126), 1, + aux_sym__custom_token3, + STATE(4581), 1, sym_comment, - [119042] = 3, + [145487] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8595), 1, - anon_sym_ATendunless, - STATE(3898), 1, + ACTIONS(10128), 1, + anon_sym_ATendcanany, + STATE(4582), 1, sym_comment, - [119052] = 3, + [145497] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8597), 1, - anon_sym_ATendif, - STATE(3899), 1, + ACTIONS(10130), 1, + anon_sym_ATendcannot, + STATE(4583), 1, sym_comment, - [119062] = 3, + [145507] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8599), 1, - anon_sym_ATendPrependOnce, - STATE(3900), 1, + ACTIONS(10132), 1, + anon_sym_ATendcan, + STATE(4584), 1, sym_comment, - [119072] = 3, + [145517] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8601), 1, - anon_sym_ATendprepend, - STATE(3901), 1, + ACTIONS(10134), 1, + anon_sym_ATenderror, + STATE(4585), 1, sym_comment, - [119082] = 3, + [145527] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8603), 1, - anon_sym_ATendPushIf, - STATE(3902), 1, + ACTIONS(10136), 1, + anon_sym_ATendif, + STATE(4586), 1, sym_comment, - [119092] = 3, + [145537] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8605), 1, - anon_sym_ATendPushOnce, - STATE(3903), 1, + ACTIONS(10138), 1, + anon_sym_ATendif, + STATE(4587), 1, sym_comment, - [119102] = 3, + [145547] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8607), 1, - anon_sym_ATendpush, - STATE(3904), 1, + ACTIONS(10140), 1, + anon_sym_ATendenv, + STATE(4588), 1, sym_comment, - [119112] = 3, + [145557] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8609), 1, - anon_sym_ATendpersist, - STATE(3905), 1, + ACTIONS(10142), 1, + anon_sym_ATendguest, + STATE(4589), 1, sym_comment, - [119122] = 3, + [145567] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8611), 1, - anon_sym_ATendteleport, - STATE(3906), 1, + ACTIONS(10144), 1, + anon_sym_ATendauth, + STATE(4590), 1, sym_comment, - [119132] = 3, + [145577] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8613), 1, - anon_sym_ATendsection, - STATE(3907), 1, + ACTIONS(10146), 1, + anon_sym_ATendempty, + STATE(4591), 1, sym_comment, - [119142] = 3, + [145587] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8615), 1, - anon_sym_ATendfragment, - STATE(3908), 1, + ACTIONS(10148), 1, + anon_sym_ATendisset, + STATE(4592), 1, sym_comment, - [119152] = 3, + [145597] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8617), 1, - anon_sym_ATendvolt, - STATE(3909), 1, + ACTIONS(10150), 1, + anon_sym_ATendunless, + STATE(4593), 1, sym_comment, - [119162] = 3, + [145607] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8619), 1, - anon_sym_ATendfragment, - STATE(3910), 1, + ACTIONS(10152), 1, + anon_sym_ATendif, + STATE(4594), 1, sym_comment, - [119172] = 3, + [145617] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8621), 1, - anon_sym_ATendsection, - STATE(3911), 1, + ACTIONS(10154), 1, + anon_sym_ATendPrependOnce, + STATE(4595), 1, sym_comment, - [119182] = 3, + [145627] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8623), 1, - anon_sym_ATendpush, - STATE(3912), 1, + ACTIONS(10156), 1, + anon_sym_ATendprepend, + STATE(4596), 1, + sym_comment, + [145637] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10158), 1, + anon_sym_ATendPushIf, + STATE(4597), 1, sym_comment, - [119192] = 3, + [145647] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8625), 1, + ACTIONS(10160), 1, anon_sym_ATendPushOnce, - STATE(3913), 1, + STATE(4598), 1, sym_comment, - [119202] = 3, + [145657] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8627), 1, - anon_sym_ATendPushIf, - STATE(3914), 1, + ACTIONS(10162), 1, + anon_sym_ATendpush, + STATE(4599), 1, sym_comment, - [119212] = 3, + [145667] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8629), 1, - anon_sym_ATendprepend, - STATE(3915), 1, + ACTIONS(10164), 1, + anon_sym_ATendsection, + STATE(4600), 1, + sym_comment, + [145677] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10166), 1, + anon_sym_ATendfragment, + STATE(4601), 1, sym_comment, - [119222] = 3, + [145687] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8631), 1, + ACTIONS(10168), 1, anon_sym_ATendvolt, - STATE(3916), 1, + STATE(4602), 1, sym_comment, - [119232] = 3, + [145697] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8633), 1, + ACTIONS(10170), 1, anon_sym_ATendteleport, - STATE(3917), 1, + STATE(4603), 1, sym_comment, - [119242] = 3, + [145707] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8635), 1, + ACTIONS(10172), 1, anon_sym_ATendpersist, - STATE(3918), 1, + STATE(4604), 1, sym_comment, - [119252] = 3, + [145717] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8637), 1, + ACTIONS(10174), 1, anon_sym_ATendwhile, - STATE(3919), 1, + STATE(4605), 1, sym_comment, - [119262] = 3, + [145727] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8639), 1, + ACTIONS(10176), 1, anon_sym_ATendforelse, - STATE(3920), 1, + STATE(4606), 1, sym_comment, - [119272] = 3, + [145737] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8641), 1, + ACTIONS(10178), 1, anon_sym_ATendforeach, - STATE(3921), 1, + STATE(4607), 1, sym_comment, - [119282] = 3, + [145747] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8643), 1, + ACTIONS(10180), 1, anon_sym_ATendfor, - STATE(3922), 1, + STATE(4608), 1, sym_comment, - [119292] = 3, + [145757] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8645), 1, + ACTIONS(10182), 1, aux_sym__custom_token3, - STATE(3923), 1, + STATE(4609), 1, sym_comment, - [119302] = 3, + [145767] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8647), 1, - anon_sym_ATenderror, - STATE(3924), 1, + ACTIONS(10184), 1, + anon_sym_ATendcanany, + STATE(4610), 1, sym_comment, - [119312] = 3, + [145777] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8649), 1, - anon_sym_ATendif, - STATE(3925), 1, + ACTIONS(10186), 1, + anon_sym_ATendfragment, + STATE(4611), 1, sym_comment, - [119322] = 3, + [145787] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8651), 1, - anon_sym_ATendif, - STATE(3926), 1, + ACTIONS(10188), 1, + anon_sym_ATendcan, + STATE(4612), 1, sym_comment, - [119332] = 3, + [145797] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8653), 1, - anon_sym_ATendenv, - STATE(3927), 1, + ACTIONS(10190), 1, + anon_sym_ATenderror, + STATE(4613), 1, sym_comment, - [119342] = 3, + [145807] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8655), 1, - anon_sym_ATendPrependOnce, - STATE(3928), 1, + ACTIONS(10192), 1, + anon_sym_ATendif, + STATE(4614), 1, + sym_comment, + [145817] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10194), 1, + anon_sym_ATendenv, + STATE(4615), 1, sym_comment, - [119352] = 3, + [145827] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8657), 1, + ACTIONS(10196), 1, anon_sym_ATendguest, - STATE(3929), 1, + STATE(4616), 1, sym_comment, - [119362] = 3, + [145837] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8659), 1, + ACTIONS(10198), 1, anon_sym_ATendauth, - STATE(3930), 1, + STATE(4617), 1, sym_comment, - [119372] = 3, + [145847] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8661), 1, + ACTIONS(10200), 1, anon_sym_ATendempty, - STATE(3931), 1, + STATE(4618), 1, sym_comment, - [119382] = 3, + [145857] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8663), 1, + ACTIONS(10202), 1, anon_sym_ATendisset, - STATE(3932), 1, + STATE(4619), 1, sym_comment, - [119392] = 3, + [145867] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8665), 1, + ACTIONS(10204), 1, anon_sym_ATendunless, - STATE(3933), 1, + STATE(4620), 1, sym_comment, - [119402] = 3, + [145877] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8667), 1, + ACTIONS(10206), 1, anon_sym_ATendif, - STATE(3934), 1, + STATE(4621), 1, sym_comment, - [119412] = 3, + [145887] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8669), 1, + ACTIONS(10208), 1, anon_sym_ATendPrependOnce, - STATE(3935), 1, + STATE(4622), 1, sym_comment, - [119422] = 3, + [145897] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8671), 1, + ACTIONS(10210), 1, anon_sym_ATendprepend, - STATE(3936), 1, + STATE(4623), 1, sym_comment, - [119432] = 3, + [145907] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8673), 1, + ACTIONS(10212), 1, anon_sym_ATendPushIf, - STATE(3937), 1, + STATE(4624), 1, sym_comment, - [119442] = 3, + [145917] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8675), 1, + ACTIONS(10214), 1, anon_sym_ATendPushOnce, - STATE(3938), 1, + STATE(4625), 1, sym_comment, - [119452] = 3, + [145927] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8677), 1, + ACTIONS(10216), 1, anon_sym_ATendpush, - STATE(3939), 1, - sym_comment, - [119462] = 3, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8679), 1, - anon_sym_ATendif, - STATE(3940), 1, - sym_comment, - [119472] = 3, - ACTIONS(3), 1, - anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8681), 1, - anon_sym_ATendempty, - STATE(3941), 1, + STATE(4626), 1, sym_comment, - [119482] = 3, + [145937] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8683), 1, + ACTIONS(10218), 1, anon_sym_ATendsection, - STATE(3942), 1, + STATE(4627), 1, sym_comment, - [119492] = 3, + [145947] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8685), 1, + ACTIONS(10220), 1, anon_sym_ATendfragment, - STATE(3943), 1, + STATE(4628), 1, sym_comment, - [119502] = 3, + [145957] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8687), 1, + ACTIONS(10222), 1, anon_sym_ATendvolt, - STATE(3944), 1, + STATE(4629), 1, sym_comment, - [119512] = 3, + [145967] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8689), 1, + ACTIONS(10224), 1, anon_sym_ATendteleport, - STATE(3945), 1, + STATE(4630), 1, sym_comment, - [119522] = 3, + [145977] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8691), 1, + ACTIONS(10226), 1, anon_sym_ATendpersist, - STATE(3946), 1, + STATE(4631), 1, sym_comment, - [119532] = 3, + [145987] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8693), 1, + ACTIONS(10228), 1, anon_sym_ATendwhile, - STATE(3947), 1, + STATE(4632), 1, sym_comment, - [119542] = 3, + [145997] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8695), 1, + ACTIONS(10230), 1, anon_sym_ATendforelse, - STATE(3948), 1, + STATE(4633), 1, sym_comment, - [119552] = 3, + [146007] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8697), 1, + ACTIONS(10232), 1, anon_sym_ATendforeach, - STATE(3949), 1, + STATE(4634), 1, sym_comment, - [119562] = 3, + [146017] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8699), 1, + ACTIONS(10234), 1, anon_sym_ATendfor, - STATE(3950), 1, + STATE(4635), 1, sym_comment, - [119572] = 3, + [146027] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8701), 1, + ACTIONS(10236), 1, aux_sym__custom_token3, - STATE(3951), 1, + STATE(4636), 1, sym_comment, - [119582] = 3, + [146037] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8703), 1, + ACTIONS(10238), 1, + anon_sym_ATendcanany, + STATE(4637), 1, + sym_comment, + [146047] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10240), 1, + anon_sym_ATendcannot, + STATE(4638), 1, + sym_comment, + [146057] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10242), 1, + anon_sym_ATendcan, + STATE(4639), 1, + sym_comment, + [146067] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10244), 1, anon_sym_ATenderror, - STATE(3952), 1, + STATE(4640), 1, sym_comment, - [119592] = 3, + [146077] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8705), 1, + ACTIONS(10246), 1, anon_sym_ATendif, - STATE(3953), 1, + STATE(4641), 1, sym_comment, - [119602] = 3, + [146087] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8707), 1, + ACTIONS(10248), 1, anon_sym_ATendif, - STATE(3954), 1, + STATE(4642), 1, sym_comment, - [119612] = 3, + [146097] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8709), 1, + ACTIONS(10250), 1, anon_sym_ATendenv, - STATE(3955), 1, + STATE(4643), 1, sym_comment, - [119622] = 3, + [146107] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8711), 1, + ACTIONS(10252), 1, anon_sym_ATendguest, - STATE(3956), 1, + STATE(4644), 1, sym_comment, - [119632] = 3, + [146117] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8713), 1, + ACTIONS(10254), 1, anon_sym_ATendauth, - STATE(3957), 1, + STATE(4645), 1, sym_comment, - [119642] = 3, + [146127] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8715), 1, + ACTIONS(10256), 1, anon_sym_ATendempty, - STATE(3958), 1, + STATE(4646), 1, sym_comment, - [119652] = 3, + [146137] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8717), 1, + ACTIONS(10258), 1, anon_sym_ATendisset, - STATE(3959), 1, + STATE(4647), 1, sym_comment, - [119662] = 3, + [146147] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8719), 1, + ACTIONS(10260), 1, anon_sym_ATendunless, - STATE(3960), 1, + STATE(4648), 1, sym_comment, - [119672] = 3, + [146157] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8721), 1, + ACTIONS(10262), 1, anon_sym_ATendif, - STATE(3961), 1, + STATE(4649), 1, sym_comment, - [119682] = 3, + [146167] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8723), 1, + ACTIONS(10264), 1, anon_sym_ATendPrependOnce, - STATE(3962), 1, + STATE(4650), 1, sym_comment, - [119692] = 3, + [146177] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8725), 1, + ACTIONS(10266), 1, anon_sym_ATendprepend, - STATE(3963), 1, + STATE(4651), 1, sym_comment, - [119702] = 3, + [146187] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8727), 1, + ACTIONS(10268), 1, anon_sym_ATendPushIf, - STATE(3964), 1, + STATE(4652), 1, sym_comment, - [119712] = 3, + [146197] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8729), 1, + ACTIONS(10270), 1, anon_sym_ATendPushOnce, - STATE(3965), 1, + STATE(4653), 1, sym_comment, - [119722] = 3, + [146207] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8731), 1, + ACTIONS(10272), 1, anon_sym_ATendpush, - STATE(3966), 1, + STATE(4654), 1, sym_comment, - [119732] = 3, + [146217] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8733), 1, + ACTIONS(10274), 1, anon_sym_ATendsection, - STATE(3967), 1, + STATE(4655), 1, sym_comment, - [119742] = 3, + [146227] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8735), 1, - anon_sym_ATendfragment, - STATE(3968), 1, + ACTIONS(10276), 1, + anon_sym_ATbreak, + STATE(4656), 1, + sym_comment, + [146237] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10278), 1, + ts_builtin_sym_end, + STATE(4657), 1, sym_comment, - [119752] = 3, + [146247] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8737), 1, + ACTIONS(10280), 1, anon_sym_ATendvolt, - STATE(3969), 1, + STATE(4658), 1, sym_comment, - [119762] = 3, + [146257] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8739), 1, + ACTIONS(10282), 1, anon_sym_ATendteleport, - STATE(3970), 1, + STATE(4659), 1, sym_comment, - [119772] = 3, + [146267] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8741), 1, + ACTIONS(10284), 1, anon_sym_ATendpersist, - STATE(3971), 1, + STATE(4660), 1, sym_comment, - [119782] = 3, + [146277] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8743), 1, + ACTIONS(10286), 1, anon_sym_ATendwhile, - STATE(3972), 1, + STATE(4661), 1, sym_comment, - [119792] = 3, + [146287] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8745), 1, + ACTIONS(10288), 1, anon_sym_ATendforelse, - STATE(3973), 1, + STATE(4662), 1, sym_comment, - [119802] = 3, + [146297] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8747), 1, + ACTIONS(10290), 1, anon_sym_ATendforeach, - STATE(3974), 1, + STATE(4663), 1, sym_comment, - [119812] = 3, + [146307] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8749), 1, + ACTIONS(10292), 1, anon_sym_ATendfor, - STATE(3975), 1, + STATE(4664), 1, sym_comment, - [119822] = 3, + [146317] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8751), 1, + ACTIONS(10294), 1, aux_sym__custom_token3, - STATE(3976), 1, + STATE(4665), 1, + sym_comment, + [146327] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10296), 1, + anon_sym_ATendcanany, + STATE(4666), 1, + sym_comment, + [146337] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10298), 1, + anon_sym_ATendcannot, + STATE(4667), 1, + sym_comment, + [146347] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10300), 1, + anon_sym_ATendcan, + STATE(4668), 1, sym_comment, - [119832] = 3, + [146357] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8753), 1, + ACTIONS(10302), 1, anon_sym_ATenderror, - STATE(3977), 1, + STATE(4669), 1, sym_comment, - [119842] = 3, + [146367] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8755), 1, + ACTIONS(10304), 1, anon_sym_ATendif, - STATE(3978), 1, + STATE(4670), 1, sym_comment, - [119852] = 3, + [146377] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8757), 1, + ACTIONS(10306), 1, anon_sym_ATendif, - STATE(3979), 1, + STATE(4671), 1, sym_comment, - [119862] = 3, + [146387] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8759), 1, + ACTIONS(10308), 1, anon_sym_ATendenv, - STATE(3980), 1, + STATE(4672), 1, sym_comment, - [119872] = 3, + [146397] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8761), 1, + ACTIONS(10310), 1, anon_sym_ATendguest, - STATE(3981), 1, + STATE(4673), 1, sym_comment, - [119882] = 3, + [146407] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8763), 1, + ACTIONS(10312), 1, anon_sym_ATendauth, - STATE(3982), 1, + STATE(4674), 1, sym_comment, - [119892] = 3, + [146417] = 3, ACTIONS(3), 1, anon_sym_LBRACE_LBRACE_DASH_DASH, - ACTIONS(8765), 1, + ACTIONS(10314), 1, anon_sym_ATendempty, - STATE(3983), 1, + STATE(4675), 1, + sym_comment, + [146427] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10316), 1, + anon_sym_ATendisset, + STATE(4676), 1, + sym_comment, + [146437] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10318), 1, + anon_sym_ATendunless, + STATE(4677), 1, + sym_comment, + [146447] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10320), 1, + anon_sym_ATendif, + STATE(4678), 1, + sym_comment, + [146457] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10322), 1, + anon_sym_ATendPrependOnce, + STATE(4679), 1, + sym_comment, + [146467] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10324), 1, + anon_sym_ATendprepend, + STATE(4680), 1, + sym_comment, + [146477] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10326), 1, + anon_sym_ATendPushIf, + STATE(4681), 1, + sym_comment, + [146487] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10328), 1, + anon_sym_ATendPushOnce, + STATE(4682), 1, + sym_comment, + [146497] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10330), 1, + anon_sym_ATendpush, + STATE(4683), 1, + sym_comment, + [146507] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10332), 1, + anon_sym_ATendsection, + STATE(4684), 1, + sym_comment, + [146517] = 3, + ACTIONS(3), 1, + anon_sym_LBRACE_LBRACE_DASH_DASH, + ACTIONS(10334), 1, + anon_sym_ATendfragment, + STATE(4685), 1, sym_comment, - [119902] = 1, - ACTIONS(8767), 1, + [146527] = 1, + ACTIONS(10336), 1, ts_builtin_sym_end, - [119906] = 1, - ACTIONS(8769), 1, + [146531] = 1, + ACTIONS(10338), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(430)] = 0, - [SMALL_STATE(431)] = 63, - [SMALL_STATE(432)] = 126, - [SMALL_STATE(433)] = 189, - [SMALL_STATE(434)] = 252, - [SMALL_STATE(435)] = 315, - [SMALL_STATE(436)] = 378, - [SMALL_STATE(437)] = 441, - [SMALL_STATE(438)] = 504, - [SMALL_STATE(439)] = 567, - [SMALL_STATE(440)] = 630, - [SMALL_STATE(441)] = 690, - [SMALL_STATE(442)] = 750, - [SMALL_STATE(443)] = 810, - [SMALL_STATE(444)] = 870, - [SMALL_STATE(445)] = 930, - [SMALL_STATE(446)] = 990, - [SMALL_STATE(447)] = 1050, - [SMALL_STATE(448)] = 1110, - [SMALL_STATE(449)] = 1170, - [SMALL_STATE(450)] = 1230, - [SMALL_STATE(451)] = 1290, - [SMALL_STATE(452)] = 1350, - [SMALL_STATE(453)] = 1410, - [SMALL_STATE(454)] = 1470, - [SMALL_STATE(455)] = 1530, - [SMALL_STATE(456)] = 1590, - [SMALL_STATE(457)] = 1650, - [SMALL_STATE(458)] = 1710, - [SMALL_STATE(459)] = 1770, - [SMALL_STATE(460)] = 1830, - [SMALL_STATE(461)] = 1891, - [SMALL_STATE(462)] = 1952, - [SMALL_STATE(463)] = 2013, - [SMALL_STATE(464)] = 2074, - [SMALL_STATE(465)] = 2135, - [SMALL_STATE(466)] = 2196, - [SMALL_STATE(467)] = 2257, - [SMALL_STATE(468)] = 2318, - [SMALL_STATE(469)] = 2379, - [SMALL_STATE(470)] = 2440, - [SMALL_STATE(471)] = 2501, - [SMALL_STATE(472)] = 2562, - [SMALL_STATE(473)] = 2623, - [SMALL_STATE(474)] = 2684, - [SMALL_STATE(475)] = 2745, - [SMALL_STATE(476)] = 2806, - [SMALL_STATE(477)] = 2867, - [SMALL_STATE(478)] = 2928, - [SMALL_STATE(479)] = 2989, - [SMALL_STATE(480)] = 3043, - [SMALL_STATE(481)] = 3097, - [SMALL_STATE(482)] = 3151, - [SMALL_STATE(483)] = 3205, - [SMALL_STATE(484)] = 3259, - [SMALL_STATE(485)] = 3313, - [SMALL_STATE(486)] = 3367, - [SMALL_STATE(487)] = 3421, - [SMALL_STATE(488)] = 3475, - [SMALL_STATE(489)] = 3529, - [SMALL_STATE(490)] = 3583, - [SMALL_STATE(491)] = 3637, - [SMALL_STATE(492)] = 3691, - [SMALL_STATE(493)] = 3745, - [SMALL_STATE(494)] = 3799, - [SMALL_STATE(495)] = 3853, - [SMALL_STATE(496)] = 3907, - [SMALL_STATE(497)] = 3961, - [SMALL_STATE(498)] = 4015, - [SMALL_STATE(499)] = 4069, - [SMALL_STATE(500)] = 4123, - [SMALL_STATE(501)] = 4177, - [SMALL_STATE(502)] = 4231, - [SMALL_STATE(503)] = 4285, - [SMALL_STATE(504)] = 4339, - [SMALL_STATE(505)] = 4393, - [SMALL_STATE(506)] = 4447, - [SMALL_STATE(507)] = 4501, - [SMALL_STATE(508)] = 4555, - [SMALL_STATE(509)] = 4609, - [SMALL_STATE(510)] = 4663, - [SMALL_STATE(511)] = 4717, - [SMALL_STATE(512)] = 4771, - [SMALL_STATE(513)] = 4825, - [SMALL_STATE(514)] = 4879, - [SMALL_STATE(515)] = 4933, - [SMALL_STATE(516)] = 4987, - [SMALL_STATE(517)] = 5041, - [SMALL_STATE(518)] = 5095, - [SMALL_STATE(519)] = 5149, - [SMALL_STATE(520)] = 5203, - [SMALL_STATE(521)] = 5257, - [SMALL_STATE(522)] = 5311, - [SMALL_STATE(523)] = 5365, - [SMALL_STATE(524)] = 5419, - [SMALL_STATE(525)] = 5473, - [SMALL_STATE(526)] = 5527, - [SMALL_STATE(527)] = 5581, - [SMALL_STATE(528)] = 5635, - [SMALL_STATE(529)] = 5689, - [SMALL_STATE(530)] = 5743, - [SMALL_STATE(531)] = 5797, - [SMALL_STATE(532)] = 5851, - [SMALL_STATE(533)] = 5905, - [SMALL_STATE(534)] = 5959, - [SMALL_STATE(535)] = 6013, - [SMALL_STATE(536)] = 6067, - [SMALL_STATE(537)] = 6121, - [SMALL_STATE(538)] = 6175, - [SMALL_STATE(539)] = 6229, - [SMALL_STATE(540)] = 6283, - [SMALL_STATE(541)] = 6337, - [SMALL_STATE(542)] = 6395, - [SMALL_STATE(543)] = 6449, - [SMALL_STATE(544)] = 6503, - [SMALL_STATE(545)] = 6557, - [SMALL_STATE(546)] = 6611, - [SMALL_STATE(547)] = 6665, - [SMALL_STATE(548)] = 6719, - [SMALL_STATE(549)] = 6773, - [SMALL_STATE(550)] = 6827, - [SMALL_STATE(551)] = 6881, - [SMALL_STATE(552)] = 6935, - [SMALL_STATE(553)] = 6989, - [SMALL_STATE(554)] = 7043, - [SMALL_STATE(555)] = 7097, - [SMALL_STATE(556)] = 7151, - [SMALL_STATE(557)] = 7205, - [SMALL_STATE(558)] = 7259, - [SMALL_STATE(559)] = 7313, - [SMALL_STATE(560)] = 7367, - [SMALL_STATE(561)] = 7421, - [SMALL_STATE(562)] = 7475, - [SMALL_STATE(563)] = 7529, - [SMALL_STATE(564)] = 7583, - [SMALL_STATE(565)] = 7637, - [SMALL_STATE(566)] = 7691, - [SMALL_STATE(567)] = 7745, - [SMALL_STATE(568)] = 7799, - [SMALL_STATE(569)] = 7853, - [SMALL_STATE(570)] = 7907, - [SMALL_STATE(571)] = 7961, - [SMALL_STATE(572)] = 8015, - [SMALL_STATE(573)] = 8069, - [SMALL_STATE(574)] = 8127, - [SMALL_STATE(575)] = 8181, - [SMALL_STATE(576)] = 8235, - [SMALL_STATE(577)] = 8289, - [SMALL_STATE(578)] = 8343, - [SMALL_STATE(579)] = 8397, - [SMALL_STATE(580)] = 8451, - [SMALL_STATE(581)] = 8505, - [SMALL_STATE(582)] = 8559, - [SMALL_STATE(583)] = 8613, - [SMALL_STATE(584)] = 8667, - [SMALL_STATE(585)] = 8721, - [SMALL_STATE(586)] = 8775, - [SMALL_STATE(587)] = 8829, - [SMALL_STATE(588)] = 8883, - [SMALL_STATE(589)] = 8937, - [SMALL_STATE(590)] = 8991, - [SMALL_STATE(591)] = 9045, - [SMALL_STATE(592)] = 9099, - [SMALL_STATE(593)] = 9153, - [SMALL_STATE(594)] = 9207, - [SMALL_STATE(595)] = 9261, - [SMALL_STATE(596)] = 9315, - [SMALL_STATE(597)] = 9369, - [SMALL_STATE(598)] = 9423, - [SMALL_STATE(599)] = 9477, - [SMALL_STATE(600)] = 9531, - [SMALL_STATE(601)] = 9585, - [SMALL_STATE(602)] = 9639, - [SMALL_STATE(603)] = 9693, - [SMALL_STATE(604)] = 9747, - [SMALL_STATE(605)] = 9801, - [SMALL_STATE(606)] = 9855, - [SMALL_STATE(607)] = 9909, - [SMALL_STATE(608)] = 9963, - [SMALL_STATE(609)] = 10021, - [SMALL_STATE(610)] = 10075, - [SMALL_STATE(611)] = 10129, - [SMALL_STATE(612)] = 10187, - [SMALL_STATE(613)] = 10241, - [SMALL_STATE(614)] = 10295, - [SMALL_STATE(615)] = 10349, - [SMALL_STATE(616)] = 10407, - [SMALL_STATE(617)] = 10461, - [SMALL_STATE(618)] = 10515, - [SMALL_STATE(619)] = 10569, - [SMALL_STATE(620)] = 10627, - [SMALL_STATE(621)] = 10681, - [SMALL_STATE(622)] = 10739, - [SMALL_STATE(623)] = 10793, - [SMALL_STATE(624)] = 10851, - [SMALL_STATE(625)] = 10905, - [SMALL_STATE(626)] = 10959, - [SMALL_STATE(627)] = 11017, - [SMALL_STATE(628)] = 11071, - [SMALL_STATE(629)] = 11125, - [SMALL_STATE(630)] = 11179, - [SMALL_STATE(631)] = 11237, - [SMALL_STATE(632)] = 11291, - [SMALL_STATE(633)] = 11345, - [SMALL_STATE(634)] = 11399, - [SMALL_STATE(635)] = 11453, - [SMALL_STATE(636)] = 11507, - [SMALL_STATE(637)] = 11565, - [SMALL_STATE(638)] = 11619, - [SMALL_STATE(639)] = 11673, - [SMALL_STATE(640)] = 11731, - [SMALL_STATE(641)] = 11785, - [SMALL_STATE(642)] = 11839, - [SMALL_STATE(643)] = 11893, - [SMALL_STATE(644)] = 11947, - [SMALL_STATE(645)] = 12001, - [SMALL_STATE(646)] = 12055, - [SMALL_STATE(647)] = 12109, - [SMALL_STATE(648)] = 12163, - [SMALL_STATE(649)] = 12217, - [SMALL_STATE(650)] = 12271, - [SMALL_STATE(651)] = 12325, - [SMALL_STATE(652)] = 12379, - [SMALL_STATE(653)] = 12433, - [SMALL_STATE(654)] = 12487, - [SMALL_STATE(655)] = 12541, - [SMALL_STATE(656)] = 12595, - [SMALL_STATE(657)] = 12649, - [SMALL_STATE(658)] = 12703, - [SMALL_STATE(659)] = 12757, - [SMALL_STATE(660)] = 12811, - [SMALL_STATE(661)] = 12865, - [SMALL_STATE(662)] = 12919, - [SMALL_STATE(663)] = 12973, - [SMALL_STATE(664)] = 13027, - [SMALL_STATE(665)] = 13081, - [SMALL_STATE(666)] = 13135, - [SMALL_STATE(667)] = 13189, - [SMALL_STATE(668)] = 13243, - [SMALL_STATE(669)] = 13297, - [SMALL_STATE(670)] = 13351, - [SMALL_STATE(671)] = 13405, - [SMALL_STATE(672)] = 13459, - [SMALL_STATE(673)] = 13513, - [SMALL_STATE(674)] = 13567, - [SMALL_STATE(675)] = 13621, - [SMALL_STATE(676)] = 13675, - [SMALL_STATE(677)] = 13729, - [SMALL_STATE(678)] = 13783, - [SMALL_STATE(679)] = 13837, - [SMALL_STATE(680)] = 13895, - [SMALL_STATE(681)] = 13949, - [SMALL_STATE(682)] = 14003, - [SMALL_STATE(683)] = 14057, - [SMALL_STATE(684)] = 14111, - [SMALL_STATE(685)] = 14165, - [SMALL_STATE(686)] = 14219, - [SMALL_STATE(687)] = 14273, - [SMALL_STATE(688)] = 14327, - [SMALL_STATE(689)] = 14381, - [SMALL_STATE(690)] = 14435, - [SMALL_STATE(691)] = 14489, - [SMALL_STATE(692)] = 14543, - [SMALL_STATE(693)] = 14597, - [SMALL_STATE(694)] = 14651, - [SMALL_STATE(695)] = 14705, - [SMALL_STATE(696)] = 14759, - [SMALL_STATE(697)] = 14813, - [SMALL_STATE(698)] = 14867, - [SMALL_STATE(699)] = 14921, - [SMALL_STATE(700)] = 14975, - [SMALL_STATE(701)] = 15029, - [SMALL_STATE(702)] = 15083, - [SMALL_STATE(703)] = 15137, - [SMALL_STATE(704)] = 15191, - [SMALL_STATE(705)] = 15245, - [SMALL_STATE(706)] = 15299, - [SMALL_STATE(707)] = 15353, - [SMALL_STATE(708)] = 15407, - [SMALL_STATE(709)] = 15461, - [SMALL_STATE(710)] = 15515, - [SMALL_STATE(711)] = 15569, - [SMALL_STATE(712)] = 15623, - [SMALL_STATE(713)] = 15677, - [SMALL_STATE(714)] = 15731, - [SMALL_STATE(715)] = 15785, - [SMALL_STATE(716)] = 15839, - [SMALL_STATE(717)] = 15893, - [SMALL_STATE(718)] = 15947, - [SMALL_STATE(719)] = 16001, - [SMALL_STATE(720)] = 16055, - [SMALL_STATE(721)] = 16109, - [SMALL_STATE(722)] = 16163, - [SMALL_STATE(723)] = 16217, - [SMALL_STATE(724)] = 16271, - [SMALL_STATE(725)] = 16325, - [SMALL_STATE(726)] = 16379, - [SMALL_STATE(727)] = 16433, - [SMALL_STATE(728)] = 16487, - [SMALL_STATE(729)] = 16541, - [SMALL_STATE(730)] = 16595, - [SMALL_STATE(731)] = 16649, - [SMALL_STATE(732)] = 16703, - [SMALL_STATE(733)] = 16757, - [SMALL_STATE(734)] = 16811, - [SMALL_STATE(735)] = 16865, - [SMALL_STATE(736)] = 16919, - [SMALL_STATE(737)] = 16973, - [SMALL_STATE(738)] = 17027, - [SMALL_STATE(739)] = 17081, - [SMALL_STATE(740)] = 17135, - [SMALL_STATE(741)] = 17189, - [SMALL_STATE(742)] = 17243, - [SMALL_STATE(743)] = 17297, - [SMALL_STATE(744)] = 17351, - [SMALL_STATE(745)] = 17405, - [SMALL_STATE(746)] = 17459, - [SMALL_STATE(747)] = 17513, - [SMALL_STATE(748)] = 17571, - [SMALL_STATE(749)] = 17625, - [SMALL_STATE(750)] = 17679, - [SMALL_STATE(751)] = 17733, - [SMALL_STATE(752)] = 17787, - [SMALL_STATE(753)] = 17841, - [SMALL_STATE(754)] = 17895, - [SMALL_STATE(755)] = 17949, - [SMALL_STATE(756)] = 18003, - [SMALL_STATE(757)] = 18057, - [SMALL_STATE(758)] = 18111, - [SMALL_STATE(759)] = 18165, - [SMALL_STATE(760)] = 18219, - [SMALL_STATE(761)] = 18273, - [SMALL_STATE(762)] = 18327, - [SMALL_STATE(763)] = 18381, - [SMALL_STATE(764)] = 18435, - [SMALL_STATE(765)] = 18489, - [SMALL_STATE(766)] = 18543, - [SMALL_STATE(767)] = 18597, - [SMALL_STATE(768)] = 18651, - [SMALL_STATE(769)] = 18705, - [SMALL_STATE(770)] = 18759, - [SMALL_STATE(771)] = 18813, - [SMALL_STATE(772)] = 18867, - [SMALL_STATE(773)] = 18921, - [SMALL_STATE(774)] = 18975, - [SMALL_STATE(775)] = 19029, - [SMALL_STATE(776)] = 19083, - [SMALL_STATE(777)] = 19137, - [SMALL_STATE(778)] = 19191, - [SMALL_STATE(779)] = 19245, - [SMALL_STATE(780)] = 19299, - [SMALL_STATE(781)] = 19353, - [SMALL_STATE(782)] = 19407, - [SMALL_STATE(783)] = 19461, - [SMALL_STATE(784)] = 19515, - [SMALL_STATE(785)] = 19569, - [SMALL_STATE(786)] = 19623, - [SMALL_STATE(787)] = 19677, - [SMALL_STATE(788)] = 19731, - [SMALL_STATE(789)] = 19785, - [SMALL_STATE(790)] = 19839, - [SMALL_STATE(791)] = 19893, - [SMALL_STATE(792)] = 19947, - [SMALL_STATE(793)] = 20001, - [SMALL_STATE(794)] = 20055, - [SMALL_STATE(795)] = 20109, - [SMALL_STATE(796)] = 20163, - [SMALL_STATE(797)] = 20217, - [SMALL_STATE(798)] = 20271, - [SMALL_STATE(799)] = 20325, - [SMALL_STATE(800)] = 20379, - [SMALL_STATE(801)] = 20433, - [SMALL_STATE(802)] = 20487, - [SMALL_STATE(803)] = 20541, - [SMALL_STATE(804)] = 20595, - [SMALL_STATE(805)] = 20649, - [SMALL_STATE(806)] = 20703, - [SMALL_STATE(807)] = 20757, - [SMALL_STATE(808)] = 20811, - [SMALL_STATE(809)] = 20865, - [SMALL_STATE(810)] = 20919, - [SMALL_STATE(811)] = 20973, - [SMALL_STATE(812)] = 21027, - [SMALL_STATE(813)] = 21081, - [SMALL_STATE(814)] = 21139, - [SMALL_STATE(815)] = 21193, - [SMALL_STATE(816)] = 21247, - [SMALL_STATE(817)] = 21301, - [SMALL_STATE(818)] = 21355, - [SMALL_STATE(819)] = 21409, - [SMALL_STATE(820)] = 21463, - [SMALL_STATE(821)] = 21517, - [SMALL_STATE(822)] = 21571, - [SMALL_STATE(823)] = 21625, - [SMALL_STATE(824)] = 21679, - [SMALL_STATE(825)] = 21733, - [SMALL_STATE(826)] = 21787, - [SMALL_STATE(827)] = 21841, - [SMALL_STATE(828)] = 21895, - [SMALL_STATE(829)] = 21949, - [SMALL_STATE(830)] = 22003, - [SMALL_STATE(831)] = 22057, - [SMALL_STATE(832)] = 22111, - [SMALL_STATE(833)] = 22165, - [SMALL_STATE(834)] = 22219, - [SMALL_STATE(835)] = 22273, - [SMALL_STATE(836)] = 22327, - [SMALL_STATE(837)] = 22381, - [SMALL_STATE(838)] = 22435, - [SMALL_STATE(839)] = 22489, - [SMALL_STATE(840)] = 22543, - [SMALL_STATE(841)] = 22597, - [SMALL_STATE(842)] = 22651, - [SMALL_STATE(843)] = 22705, - [SMALL_STATE(844)] = 22759, - [SMALL_STATE(845)] = 22813, - [SMALL_STATE(846)] = 22867, - [SMALL_STATE(847)] = 22921, - [SMALL_STATE(848)] = 22975, - [SMALL_STATE(849)] = 23029, - [SMALL_STATE(850)] = 23083, - [SMALL_STATE(851)] = 23137, - [SMALL_STATE(852)] = 23191, - [SMALL_STATE(853)] = 23245, - [SMALL_STATE(854)] = 23299, - [SMALL_STATE(855)] = 23353, - [SMALL_STATE(856)] = 23407, - [SMALL_STATE(857)] = 23461, - [SMALL_STATE(858)] = 23515, - [SMALL_STATE(859)] = 23569, - [SMALL_STATE(860)] = 23623, - [SMALL_STATE(861)] = 23677, - [SMALL_STATE(862)] = 23731, - [SMALL_STATE(863)] = 23785, - [SMALL_STATE(864)] = 23839, - [SMALL_STATE(865)] = 23893, - [SMALL_STATE(866)] = 23947, - [SMALL_STATE(867)] = 24001, - [SMALL_STATE(868)] = 24055, - [SMALL_STATE(869)] = 24109, - [SMALL_STATE(870)] = 24163, - [SMALL_STATE(871)] = 24217, - [SMALL_STATE(872)] = 24271, - [SMALL_STATE(873)] = 24325, - [SMALL_STATE(874)] = 24379, - [SMALL_STATE(875)] = 24433, - [SMALL_STATE(876)] = 24487, - [SMALL_STATE(877)] = 24545, - [SMALL_STATE(878)] = 24599, - [SMALL_STATE(879)] = 24653, - [SMALL_STATE(880)] = 24707, - [SMALL_STATE(881)] = 24761, - [SMALL_STATE(882)] = 24815, - [SMALL_STATE(883)] = 24869, - [SMALL_STATE(884)] = 24923, - [SMALL_STATE(885)] = 24977, - [SMALL_STATE(886)] = 25031, - [SMALL_STATE(887)] = 25085, - [SMALL_STATE(888)] = 25139, - [SMALL_STATE(889)] = 25193, - [SMALL_STATE(890)] = 25247, - [SMALL_STATE(891)] = 25301, - [SMALL_STATE(892)] = 25355, - [SMALL_STATE(893)] = 25409, - [SMALL_STATE(894)] = 25463, - [SMALL_STATE(895)] = 25517, - [SMALL_STATE(896)] = 25571, - [SMALL_STATE(897)] = 25625, - [SMALL_STATE(898)] = 25679, - [SMALL_STATE(899)] = 25733, - [SMALL_STATE(900)] = 25787, - [SMALL_STATE(901)] = 25841, - [SMALL_STATE(902)] = 25895, - [SMALL_STATE(903)] = 25949, - [SMALL_STATE(904)] = 26003, - [SMALL_STATE(905)] = 26057, - [SMALL_STATE(906)] = 26111, - [SMALL_STATE(907)] = 26165, - [SMALL_STATE(908)] = 26219, - [SMALL_STATE(909)] = 26273, - [SMALL_STATE(910)] = 26327, - [SMALL_STATE(911)] = 26381, - [SMALL_STATE(912)] = 26435, - [SMALL_STATE(913)] = 26489, - [SMALL_STATE(914)] = 26543, - [SMALL_STATE(915)] = 26597, - [SMALL_STATE(916)] = 26651, - [SMALL_STATE(917)] = 26705, - [SMALL_STATE(918)] = 26759, - [SMALL_STATE(919)] = 26813, - [SMALL_STATE(920)] = 26867, - [SMALL_STATE(921)] = 26921, - [SMALL_STATE(922)] = 26975, - [SMALL_STATE(923)] = 27029, - [SMALL_STATE(924)] = 27083, - [SMALL_STATE(925)] = 27137, - [SMALL_STATE(926)] = 27191, - [SMALL_STATE(927)] = 27245, - [SMALL_STATE(928)] = 27299, - [SMALL_STATE(929)] = 27353, - [SMALL_STATE(930)] = 27407, - [SMALL_STATE(931)] = 27461, - [SMALL_STATE(932)] = 27515, - [SMALL_STATE(933)] = 27569, - [SMALL_STATE(934)] = 27623, - [SMALL_STATE(935)] = 27677, - [SMALL_STATE(936)] = 27731, - [SMALL_STATE(937)] = 27785, - [SMALL_STATE(938)] = 27839, - [SMALL_STATE(939)] = 27893, - [SMALL_STATE(940)] = 27951, - [SMALL_STATE(941)] = 28005, - [SMALL_STATE(942)] = 28059, - [SMALL_STATE(943)] = 28113, - [SMALL_STATE(944)] = 28167, - [SMALL_STATE(945)] = 28221, - [SMALL_STATE(946)] = 28275, - [SMALL_STATE(947)] = 28329, - [SMALL_STATE(948)] = 28383, - [SMALL_STATE(949)] = 28437, - [SMALL_STATE(950)] = 28491, - [SMALL_STATE(951)] = 28545, - [SMALL_STATE(952)] = 28599, - [SMALL_STATE(953)] = 28653, - [SMALL_STATE(954)] = 28707, - [SMALL_STATE(955)] = 28761, - [SMALL_STATE(956)] = 28815, - [SMALL_STATE(957)] = 28869, - [SMALL_STATE(958)] = 28923, - [SMALL_STATE(959)] = 28977, - [SMALL_STATE(960)] = 29031, - [SMALL_STATE(961)] = 29085, - [SMALL_STATE(962)] = 29139, - [SMALL_STATE(963)] = 29193, - [SMALL_STATE(964)] = 29247, - [SMALL_STATE(965)] = 29301, - [SMALL_STATE(966)] = 29355, - [SMALL_STATE(967)] = 29409, - [SMALL_STATE(968)] = 29463, - [SMALL_STATE(969)] = 29517, - [SMALL_STATE(970)] = 29571, - [SMALL_STATE(971)] = 29625, - [SMALL_STATE(972)] = 29679, - [SMALL_STATE(973)] = 29733, - [SMALL_STATE(974)] = 29787, - [SMALL_STATE(975)] = 29841, - [SMALL_STATE(976)] = 29895, - [SMALL_STATE(977)] = 29949, - [SMALL_STATE(978)] = 30003, - [SMALL_STATE(979)] = 30057, - [SMALL_STATE(980)] = 30111, - [SMALL_STATE(981)] = 30165, - [SMALL_STATE(982)] = 30219, - [SMALL_STATE(983)] = 30273, - [SMALL_STATE(984)] = 30327, - [SMALL_STATE(985)] = 30381, - [SMALL_STATE(986)] = 30435, - [SMALL_STATE(987)] = 30489, - [SMALL_STATE(988)] = 30543, - [SMALL_STATE(989)] = 30597, - [SMALL_STATE(990)] = 30651, - [SMALL_STATE(991)] = 30705, - [SMALL_STATE(992)] = 30759, - [SMALL_STATE(993)] = 30813, - [SMALL_STATE(994)] = 30867, - [SMALL_STATE(995)] = 30921, - [SMALL_STATE(996)] = 30975, - [SMALL_STATE(997)] = 31029, - [SMALL_STATE(998)] = 31083, - [SMALL_STATE(999)] = 31137, - [SMALL_STATE(1000)] = 31191, - [SMALL_STATE(1001)] = 31245, - [SMALL_STATE(1002)] = 31303, - [SMALL_STATE(1003)] = 31357, - [SMALL_STATE(1004)] = 31411, - [SMALL_STATE(1005)] = 31465, - [SMALL_STATE(1006)] = 31519, - [SMALL_STATE(1007)] = 31573, - [SMALL_STATE(1008)] = 31627, - [SMALL_STATE(1009)] = 31681, - [SMALL_STATE(1010)] = 31735, - [SMALL_STATE(1011)] = 31789, - [SMALL_STATE(1012)] = 31843, - [SMALL_STATE(1013)] = 31897, - [SMALL_STATE(1014)] = 31951, - [SMALL_STATE(1015)] = 32005, - [SMALL_STATE(1016)] = 32059, - [SMALL_STATE(1017)] = 32113, - [SMALL_STATE(1018)] = 32167, - [SMALL_STATE(1019)] = 32221, - [SMALL_STATE(1020)] = 32275, - [SMALL_STATE(1021)] = 32329, - [SMALL_STATE(1022)] = 32383, - [SMALL_STATE(1023)] = 32437, - [SMALL_STATE(1024)] = 32491, - [SMALL_STATE(1025)] = 32545, - [SMALL_STATE(1026)] = 32599, - [SMALL_STATE(1027)] = 32653, - [SMALL_STATE(1028)] = 32707, - [SMALL_STATE(1029)] = 32761, - [SMALL_STATE(1030)] = 32815, - [SMALL_STATE(1031)] = 32869, - [SMALL_STATE(1032)] = 32923, - [SMALL_STATE(1033)] = 32981, - [SMALL_STATE(1034)] = 33035, - [SMALL_STATE(1035)] = 33089, - [SMALL_STATE(1036)] = 33143, - [SMALL_STATE(1037)] = 33197, - [SMALL_STATE(1038)] = 33251, - [SMALL_STATE(1039)] = 33305, - [SMALL_STATE(1040)] = 33359, - [SMALL_STATE(1041)] = 33413, - [SMALL_STATE(1042)] = 33467, - [SMALL_STATE(1043)] = 33521, - [SMALL_STATE(1044)] = 33575, - [SMALL_STATE(1045)] = 33629, - [SMALL_STATE(1046)] = 33683, - [SMALL_STATE(1047)] = 33737, - [SMALL_STATE(1048)] = 33791, - [SMALL_STATE(1049)] = 33845, - [SMALL_STATE(1050)] = 33899, - [SMALL_STATE(1051)] = 33953, - [SMALL_STATE(1052)] = 34007, - [SMALL_STATE(1053)] = 34061, - [SMALL_STATE(1054)] = 34115, - [SMALL_STATE(1055)] = 34169, - [SMALL_STATE(1056)] = 34223, - [SMALL_STATE(1057)] = 34277, - [SMALL_STATE(1058)] = 34331, - [SMALL_STATE(1059)] = 34385, - [SMALL_STATE(1060)] = 34439, - [SMALL_STATE(1061)] = 34493, - [SMALL_STATE(1062)] = 34547, - [SMALL_STATE(1063)] = 34601, - [SMALL_STATE(1064)] = 34655, - [SMALL_STATE(1065)] = 34709, - [SMALL_STATE(1066)] = 34763, - [SMALL_STATE(1067)] = 34817, - [SMALL_STATE(1068)] = 34871, - [SMALL_STATE(1069)] = 34925, - [SMALL_STATE(1070)] = 34979, - [SMALL_STATE(1071)] = 35033, - [SMALL_STATE(1072)] = 35087, - [SMALL_STATE(1073)] = 35141, - [SMALL_STATE(1074)] = 35195, - [SMALL_STATE(1075)] = 35249, - [SMALL_STATE(1076)] = 35303, - [SMALL_STATE(1077)] = 35357, - [SMALL_STATE(1078)] = 35411, - [SMALL_STATE(1079)] = 35465, - [SMALL_STATE(1080)] = 35519, - [SMALL_STATE(1081)] = 35573, - [SMALL_STATE(1082)] = 35627, - [SMALL_STATE(1083)] = 35681, - [SMALL_STATE(1084)] = 35735, - [SMALL_STATE(1085)] = 35789, - [SMALL_STATE(1086)] = 35843, - [SMALL_STATE(1087)] = 35897, - [SMALL_STATE(1088)] = 35951, - [SMALL_STATE(1089)] = 36005, - [SMALL_STATE(1090)] = 36059, - [SMALL_STATE(1091)] = 36113, - [SMALL_STATE(1092)] = 36167, - [SMALL_STATE(1093)] = 36221, - [SMALL_STATE(1094)] = 36275, - [SMALL_STATE(1095)] = 36329, - [SMALL_STATE(1096)] = 36383, - [SMALL_STATE(1097)] = 36437, - [SMALL_STATE(1098)] = 36491, - [SMALL_STATE(1099)] = 36544, - [SMALL_STATE(1100)] = 36597, - [SMALL_STATE(1101)] = 36649, - [SMALL_STATE(1102)] = 36701, - [SMALL_STATE(1103)] = 36753, - [SMALL_STATE(1104)] = 36805, - [SMALL_STATE(1105)] = 36857, - [SMALL_STATE(1106)] = 36909, - [SMALL_STATE(1107)] = 36961, - [SMALL_STATE(1108)] = 37013, - [SMALL_STATE(1109)] = 37065, - [SMALL_STATE(1110)] = 37117, - [SMALL_STATE(1111)] = 37169, - [SMALL_STATE(1112)] = 37221, - [SMALL_STATE(1113)] = 37273, - [SMALL_STATE(1114)] = 37325, - [SMALL_STATE(1115)] = 37377, - [SMALL_STATE(1116)] = 37429, - [SMALL_STATE(1117)] = 37481, - [SMALL_STATE(1118)] = 37533, - [SMALL_STATE(1119)] = 37585, - [SMALL_STATE(1120)] = 37637, - [SMALL_STATE(1121)] = 37689, - [SMALL_STATE(1122)] = 37741, - [SMALL_STATE(1123)] = 37793, - [SMALL_STATE(1124)] = 37845, - [SMALL_STATE(1125)] = 37897, - [SMALL_STATE(1126)] = 37949, - [SMALL_STATE(1127)] = 38001, - [SMALL_STATE(1128)] = 38053, - [SMALL_STATE(1129)] = 38105, - [SMALL_STATE(1130)] = 38157, - [SMALL_STATE(1131)] = 38209, - [SMALL_STATE(1132)] = 38261, - [SMALL_STATE(1133)] = 38313, - [SMALL_STATE(1134)] = 38365, - [SMALL_STATE(1135)] = 38417, - [SMALL_STATE(1136)] = 38469, - [SMALL_STATE(1137)] = 38521, - [SMALL_STATE(1138)] = 38573, - [SMALL_STATE(1139)] = 38625, - [SMALL_STATE(1140)] = 38677, - [SMALL_STATE(1141)] = 38729, - [SMALL_STATE(1142)] = 38781, - [SMALL_STATE(1143)] = 38833, - [SMALL_STATE(1144)] = 38885, - [SMALL_STATE(1145)] = 38937, - [SMALL_STATE(1146)] = 38989, - [SMALL_STATE(1147)] = 39041, - [SMALL_STATE(1148)] = 39093, - [SMALL_STATE(1149)] = 39145, - [SMALL_STATE(1150)] = 39197, - [SMALL_STATE(1151)] = 39249, - [SMALL_STATE(1152)] = 39301, - [SMALL_STATE(1153)] = 39353, - [SMALL_STATE(1154)] = 39405, - [SMALL_STATE(1155)] = 39457, - [SMALL_STATE(1156)] = 39509, - [SMALL_STATE(1157)] = 39561, - [SMALL_STATE(1158)] = 39613, - [SMALL_STATE(1159)] = 39665, - [SMALL_STATE(1160)] = 39717, - [SMALL_STATE(1161)] = 39769, - [SMALL_STATE(1162)] = 39821, - [SMALL_STATE(1163)] = 39873, - [SMALL_STATE(1164)] = 39925, - [SMALL_STATE(1165)] = 39977, - [SMALL_STATE(1166)] = 40029, - [SMALL_STATE(1167)] = 40081, - [SMALL_STATE(1168)] = 40133, - [SMALL_STATE(1169)] = 40185, - [SMALL_STATE(1170)] = 40237, - [SMALL_STATE(1171)] = 40289, - [SMALL_STATE(1172)] = 40341, - [SMALL_STATE(1173)] = 40393, - [SMALL_STATE(1174)] = 40445, - [SMALL_STATE(1175)] = 40497, - [SMALL_STATE(1176)] = 40549, - [SMALL_STATE(1177)] = 40601, - [SMALL_STATE(1178)] = 40653, - [SMALL_STATE(1179)] = 40705, - [SMALL_STATE(1180)] = 40757, - [SMALL_STATE(1181)] = 40809, - [SMALL_STATE(1182)] = 40861, - [SMALL_STATE(1183)] = 40913, - [SMALL_STATE(1184)] = 40965, - [SMALL_STATE(1185)] = 41017, - [SMALL_STATE(1186)] = 41069, - [SMALL_STATE(1187)] = 41121, - [SMALL_STATE(1188)] = 41173, - [SMALL_STATE(1189)] = 41225, - [SMALL_STATE(1190)] = 41277, - [SMALL_STATE(1191)] = 41329, - [SMALL_STATE(1192)] = 41381, - [SMALL_STATE(1193)] = 41433, - [SMALL_STATE(1194)] = 41485, - [SMALL_STATE(1195)] = 41537, - [SMALL_STATE(1196)] = 41589, - [SMALL_STATE(1197)] = 41641, - [SMALL_STATE(1198)] = 41693, - [SMALL_STATE(1199)] = 41745, - [SMALL_STATE(1200)] = 41797, - [SMALL_STATE(1201)] = 41849, - [SMALL_STATE(1202)] = 41901, - [SMALL_STATE(1203)] = 41953, - [SMALL_STATE(1204)] = 42005, - [SMALL_STATE(1205)] = 42057, - [SMALL_STATE(1206)] = 42109, - [SMALL_STATE(1207)] = 42161, - [SMALL_STATE(1208)] = 42213, - [SMALL_STATE(1209)] = 42265, - [SMALL_STATE(1210)] = 42317, - [SMALL_STATE(1211)] = 42369, - [SMALL_STATE(1212)] = 42421, - [SMALL_STATE(1213)] = 42473, - [SMALL_STATE(1214)] = 42525, - [SMALL_STATE(1215)] = 42577, - [SMALL_STATE(1216)] = 42629, - [SMALL_STATE(1217)] = 42681, - [SMALL_STATE(1218)] = 42733, - [SMALL_STATE(1219)] = 42785, - [SMALL_STATE(1220)] = 42837, - [SMALL_STATE(1221)] = 42889, - [SMALL_STATE(1222)] = 42941, - [SMALL_STATE(1223)] = 42993, - [SMALL_STATE(1224)] = 43045, - [SMALL_STATE(1225)] = 43097, - [SMALL_STATE(1226)] = 43149, - [SMALL_STATE(1227)] = 43201, - [SMALL_STATE(1228)] = 43253, - [SMALL_STATE(1229)] = 43305, - [SMALL_STATE(1230)] = 43357, - [SMALL_STATE(1231)] = 43409, - [SMALL_STATE(1232)] = 43461, - [SMALL_STATE(1233)] = 43513, - [SMALL_STATE(1234)] = 43565, - [SMALL_STATE(1235)] = 43617, - [SMALL_STATE(1236)] = 43669, - [SMALL_STATE(1237)] = 43721, - [SMALL_STATE(1238)] = 43773, - [SMALL_STATE(1239)] = 43825, - [SMALL_STATE(1240)] = 43877, - [SMALL_STATE(1241)] = 43929, - [SMALL_STATE(1242)] = 43981, - [SMALL_STATE(1243)] = 44033, - [SMALL_STATE(1244)] = 44085, - [SMALL_STATE(1245)] = 44137, - [SMALL_STATE(1246)] = 44189, - [SMALL_STATE(1247)] = 44241, - [SMALL_STATE(1248)] = 44293, - [SMALL_STATE(1249)] = 44345, - [SMALL_STATE(1250)] = 44397, - [SMALL_STATE(1251)] = 44449, - [SMALL_STATE(1252)] = 44501, - [SMALL_STATE(1253)] = 44553, - [SMALL_STATE(1254)] = 44605, - [SMALL_STATE(1255)] = 44657, - [SMALL_STATE(1256)] = 44709, - [SMALL_STATE(1257)] = 44761, - [SMALL_STATE(1258)] = 44813, - [SMALL_STATE(1259)] = 44865, - [SMALL_STATE(1260)] = 44917, - [SMALL_STATE(1261)] = 44969, - [SMALL_STATE(1262)] = 45021, - [SMALL_STATE(1263)] = 45073, - [SMALL_STATE(1264)] = 45125, - [SMALL_STATE(1265)] = 45177, - [SMALL_STATE(1266)] = 45229, - [SMALL_STATE(1267)] = 45281, - [SMALL_STATE(1268)] = 45333, - [SMALL_STATE(1269)] = 45385, - [SMALL_STATE(1270)] = 45437, - [SMALL_STATE(1271)] = 45489, - [SMALL_STATE(1272)] = 45541, - [SMALL_STATE(1273)] = 45593, - [SMALL_STATE(1274)] = 45645, - [SMALL_STATE(1275)] = 45697, - [SMALL_STATE(1276)] = 45749, - [SMALL_STATE(1277)] = 45801, - [SMALL_STATE(1278)] = 45853, - [SMALL_STATE(1279)] = 45905, - [SMALL_STATE(1280)] = 45957, - [SMALL_STATE(1281)] = 46009, - [SMALL_STATE(1282)] = 46061, - [SMALL_STATE(1283)] = 46113, - [SMALL_STATE(1284)] = 46165, - [SMALL_STATE(1285)] = 46217, - [SMALL_STATE(1286)] = 46269, - [SMALL_STATE(1287)] = 46321, - [SMALL_STATE(1288)] = 46373, - [SMALL_STATE(1289)] = 46425, - [SMALL_STATE(1290)] = 46477, - [SMALL_STATE(1291)] = 46529, - [SMALL_STATE(1292)] = 46581, - [SMALL_STATE(1293)] = 46633, - [SMALL_STATE(1294)] = 46685, - [SMALL_STATE(1295)] = 46737, - [SMALL_STATE(1296)] = 46789, - [SMALL_STATE(1297)] = 46841, - [SMALL_STATE(1298)] = 46893, - [SMALL_STATE(1299)] = 46945, - [SMALL_STATE(1300)] = 46997, - [SMALL_STATE(1301)] = 47049, - [SMALL_STATE(1302)] = 47101, - [SMALL_STATE(1303)] = 47153, - [SMALL_STATE(1304)] = 47205, - [SMALL_STATE(1305)] = 47257, - [SMALL_STATE(1306)] = 47309, - [SMALL_STATE(1307)] = 47361, - [SMALL_STATE(1308)] = 47413, - [SMALL_STATE(1309)] = 47465, - [SMALL_STATE(1310)] = 47517, - [SMALL_STATE(1311)] = 47569, - [SMALL_STATE(1312)] = 47621, - [SMALL_STATE(1313)] = 47673, - [SMALL_STATE(1314)] = 47725, - [SMALL_STATE(1315)] = 47777, - [SMALL_STATE(1316)] = 47829, - [SMALL_STATE(1317)] = 47881, - [SMALL_STATE(1318)] = 47933, - [SMALL_STATE(1319)] = 47985, - [SMALL_STATE(1320)] = 48037, - [SMALL_STATE(1321)] = 48089, - [SMALL_STATE(1322)] = 48141, - [SMALL_STATE(1323)] = 48193, - [SMALL_STATE(1324)] = 48245, - [SMALL_STATE(1325)] = 48297, - [SMALL_STATE(1326)] = 48349, - [SMALL_STATE(1327)] = 48401, - [SMALL_STATE(1328)] = 48453, - [SMALL_STATE(1329)] = 48505, - [SMALL_STATE(1330)] = 48557, - [SMALL_STATE(1331)] = 48609, - [SMALL_STATE(1332)] = 48661, - [SMALL_STATE(1333)] = 48713, - [SMALL_STATE(1334)] = 48765, - [SMALL_STATE(1335)] = 48817, - [SMALL_STATE(1336)] = 48869, - [SMALL_STATE(1337)] = 48921, - [SMALL_STATE(1338)] = 48973, - [SMALL_STATE(1339)] = 49025, - [SMALL_STATE(1340)] = 49077, - [SMALL_STATE(1341)] = 49129, - [SMALL_STATE(1342)] = 49181, - [SMALL_STATE(1343)] = 49233, - [SMALL_STATE(1344)] = 49285, - [SMALL_STATE(1345)] = 49337, - [SMALL_STATE(1346)] = 49389, - [SMALL_STATE(1347)] = 49441, - [SMALL_STATE(1348)] = 49493, - [SMALL_STATE(1349)] = 49545, - [SMALL_STATE(1350)] = 49597, - [SMALL_STATE(1351)] = 49649, - [SMALL_STATE(1352)] = 49701, - [SMALL_STATE(1353)] = 49753, - [SMALL_STATE(1354)] = 49805, - [SMALL_STATE(1355)] = 49857, - [SMALL_STATE(1356)] = 49909, - [SMALL_STATE(1357)] = 49961, - [SMALL_STATE(1358)] = 50013, - [SMALL_STATE(1359)] = 50065, - [SMALL_STATE(1360)] = 50117, - [SMALL_STATE(1361)] = 50169, - [SMALL_STATE(1362)] = 50221, - [SMALL_STATE(1363)] = 50273, - [SMALL_STATE(1364)] = 50325, - [SMALL_STATE(1365)] = 50377, - [SMALL_STATE(1366)] = 50429, - [SMALL_STATE(1367)] = 50481, - [SMALL_STATE(1368)] = 50533, - [SMALL_STATE(1369)] = 50585, - [SMALL_STATE(1370)] = 50637, - [SMALL_STATE(1371)] = 50689, - [SMALL_STATE(1372)] = 50741, - [SMALL_STATE(1373)] = 50793, - [SMALL_STATE(1374)] = 50845, - [SMALL_STATE(1375)] = 50897, - [SMALL_STATE(1376)] = 50949, - [SMALL_STATE(1377)] = 51001, - [SMALL_STATE(1378)] = 51053, - [SMALL_STATE(1379)] = 51105, - [SMALL_STATE(1380)] = 51157, - [SMALL_STATE(1381)] = 51209, - [SMALL_STATE(1382)] = 51261, - [SMALL_STATE(1383)] = 51313, - [SMALL_STATE(1384)] = 51365, - [SMALL_STATE(1385)] = 51417, - [SMALL_STATE(1386)] = 51469, - [SMALL_STATE(1387)] = 51521, - [SMALL_STATE(1388)] = 51573, - [SMALL_STATE(1389)] = 51625, - [SMALL_STATE(1390)] = 51677, - [SMALL_STATE(1391)] = 51729, - [SMALL_STATE(1392)] = 51781, - [SMALL_STATE(1393)] = 51833, - [SMALL_STATE(1394)] = 51885, - [SMALL_STATE(1395)] = 51937, - [SMALL_STATE(1396)] = 51989, - [SMALL_STATE(1397)] = 52041, - [SMALL_STATE(1398)] = 52093, - [SMALL_STATE(1399)] = 52145, - [SMALL_STATE(1400)] = 52197, - [SMALL_STATE(1401)] = 52249, - [SMALL_STATE(1402)] = 52301, - [SMALL_STATE(1403)] = 52353, - [SMALL_STATE(1404)] = 52405, - [SMALL_STATE(1405)] = 52457, - [SMALL_STATE(1406)] = 52509, - [SMALL_STATE(1407)] = 52561, - [SMALL_STATE(1408)] = 52613, - [SMALL_STATE(1409)] = 52665, - [SMALL_STATE(1410)] = 52717, - [SMALL_STATE(1411)] = 52769, - [SMALL_STATE(1412)] = 52821, - [SMALL_STATE(1413)] = 52873, - [SMALL_STATE(1414)] = 52925, - [SMALL_STATE(1415)] = 52977, - [SMALL_STATE(1416)] = 53029, - [SMALL_STATE(1417)] = 53081, - [SMALL_STATE(1418)] = 53133, - [SMALL_STATE(1419)] = 53185, - [SMALL_STATE(1420)] = 53237, - [SMALL_STATE(1421)] = 53289, - [SMALL_STATE(1422)] = 53341, - [SMALL_STATE(1423)] = 53393, - [SMALL_STATE(1424)] = 53445, - [SMALL_STATE(1425)] = 53497, - [SMALL_STATE(1426)] = 53549, - [SMALL_STATE(1427)] = 53601, - [SMALL_STATE(1428)] = 53653, - [SMALL_STATE(1429)] = 53705, - [SMALL_STATE(1430)] = 53757, - [SMALL_STATE(1431)] = 53809, - [SMALL_STATE(1432)] = 53861, - [SMALL_STATE(1433)] = 53913, - [SMALL_STATE(1434)] = 53965, - [SMALL_STATE(1435)] = 54017, - [SMALL_STATE(1436)] = 54069, - [SMALL_STATE(1437)] = 54121, - [SMALL_STATE(1438)] = 54173, - [SMALL_STATE(1439)] = 54225, - [SMALL_STATE(1440)] = 54277, - [SMALL_STATE(1441)] = 54329, - [SMALL_STATE(1442)] = 54381, - [SMALL_STATE(1443)] = 54433, - [SMALL_STATE(1444)] = 54485, - [SMALL_STATE(1445)] = 54537, - [SMALL_STATE(1446)] = 54589, - [SMALL_STATE(1447)] = 54641, - [SMALL_STATE(1448)] = 54693, - [SMALL_STATE(1449)] = 54745, - [SMALL_STATE(1450)] = 54797, - [SMALL_STATE(1451)] = 54849, - [SMALL_STATE(1452)] = 54901, - [SMALL_STATE(1453)] = 54953, - [SMALL_STATE(1454)] = 55005, - [SMALL_STATE(1455)] = 55057, - [SMALL_STATE(1456)] = 55109, - [SMALL_STATE(1457)] = 55161, - [SMALL_STATE(1458)] = 55213, - [SMALL_STATE(1459)] = 55265, - [SMALL_STATE(1460)] = 55317, - [SMALL_STATE(1461)] = 55369, - [SMALL_STATE(1462)] = 55421, - [SMALL_STATE(1463)] = 55473, - [SMALL_STATE(1464)] = 55525, - [SMALL_STATE(1465)] = 55577, - [SMALL_STATE(1466)] = 55629, - [SMALL_STATE(1467)] = 55681, - [SMALL_STATE(1468)] = 55733, - [SMALL_STATE(1469)] = 55785, - [SMALL_STATE(1470)] = 55837, - [SMALL_STATE(1471)] = 55889, - [SMALL_STATE(1472)] = 55941, - [SMALL_STATE(1473)] = 55993, - [SMALL_STATE(1474)] = 56045, - [SMALL_STATE(1475)] = 56097, - [SMALL_STATE(1476)] = 56149, - [SMALL_STATE(1477)] = 56201, - [SMALL_STATE(1478)] = 56253, - [SMALL_STATE(1479)] = 56305, - [SMALL_STATE(1480)] = 56357, - [SMALL_STATE(1481)] = 56409, - [SMALL_STATE(1482)] = 56461, - [SMALL_STATE(1483)] = 56513, - [SMALL_STATE(1484)] = 56565, - [SMALL_STATE(1485)] = 56617, - [SMALL_STATE(1486)] = 56669, - [SMALL_STATE(1487)] = 56721, - [SMALL_STATE(1488)] = 56773, - [SMALL_STATE(1489)] = 56825, - [SMALL_STATE(1490)] = 56877, - [SMALL_STATE(1491)] = 56929, - [SMALL_STATE(1492)] = 56981, - [SMALL_STATE(1493)] = 57033, - [SMALL_STATE(1494)] = 57085, - [SMALL_STATE(1495)] = 57137, - [SMALL_STATE(1496)] = 57189, - [SMALL_STATE(1497)] = 57241, - [SMALL_STATE(1498)] = 57293, - [SMALL_STATE(1499)] = 57345, - [SMALL_STATE(1500)] = 57397, - [SMALL_STATE(1501)] = 57449, - [SMALL_STATE(1502)] = 57501, - [SMALL_STATE(1503)] = 57553, - [SMALL_STATE(1504)] = 57605, - [SMALL_STATE(1505)] = 57657, - [SMALL_STATE(1506)] = 57709, - [SMALL_STATE(1507)] = 57761, - [SMALL_STATE(1508)] = 57813, - [SMALL_STATE(1509)] = 57865, - [SMALL_STATE(1510)] = 57917, - [SMALL_STATE(1511)] = 57969, - [SMALL_STATE(1512)] = 58021, - [SMALL_STATE(1513)] = 58073, - [SMALL_STATE(1514)] = 58125, - [SMALL_STATE(1515)] = 58177, - [SMALL_STATE(1516)] = 58229, - [SMALL_STATE(1517)] = 58281, - [SMALL_STATE(1518)] = 58333, - [SMALL_STATE(1519)] = 58385, - [SMALL_STATE(1520)] = 58437, - [SMALL_STATE(1521)] = 58489, - [SMALL_STATE(1522)] = 58541, - [SMALL_STATE(1523)] = 58593, - [SMALL_STATE(1524)] = 58645, - [SMALL_STATE(1525)] = 58697, - [SMALL_STATE(1526)] = 58749, - [SMALL_STATE(1527)] = 58801, - [SMALL_STATE(1528)] = 58853, - [SMALL_STATE(1529)] = 58905, - [SMALL_STATE(1530)] = 58957, - [SMALL_STATE(1531)] = 59009, - [SMALL_STATE(1532)] = 59061, - [SMALL_STATE(1533)] = 59113, - [SMALL_STATE(1534)] = 59165, - [SMALL_STATE(1535)] = 59217, - [SMALL_STATE(1536)] = 59269, - [SMALL_STATE(1537)] = 59321, - [SMALL_STATE(1538)] = 59373, - [SMALL_STATE(1539)] = 59425, - [SMALL_STATE(1540)] = 59477, - [SMALL_STATE(1541)] = 59529, - [SMALL_STATE(1542)] = 59581, - [SMALL_STATE(1543)] = 59633, - [SMALL_STATE(1544)] = 59685, - [SMALL_STATE(1545)] = 59737, - [SMALL_STATE(1546)] = 59789, - [SMALL_STATE(1547)] = 59841, - [SMALL_STATE(1548)] = 59893, - [SMALL_STATE(1549)] = 59945, - [SMALL_STATE(1550)] = 59997, - [SMALL_STATE(1551)] = 60049, - [SMALL_STATE(1552)] = 60101, - [SMALL_STATE(1553)] = 60153, - [SMALL_STATE(1554)] = 60205, - [SMALL_STATE(1555)] = 60257, - [SMALL_STATE(1556)] = 60309, - [SMALL_STATE(1557)] = 60361, - [SMALL_STATE(1558)] = 60413, - [SMALL_STATE(1559)] = 60465, - [SMALL_STATE(1560)] = 60517, - [SMALL_STATE(1561)] = 60569, - [SMALL_STATE(1562)] = 60621, - [SMALL_STATE(1563)] = 60673, - [SMALL_STATE(1564)] = 60725, - [SMALL_STATE(1565)] = 60777, - [SMALL_STATE(1566)] = 60829, - [SMALL_STATE(1567)] = 60881, - [SMALL_STATE(1568)] = 60933, - [SMALL_STATE(1569)] = 60985, - [SMALL_STATE(1570)] = 61037, - [SMALL_STATE(1571)] = 61089, - [SMALL_STATE(1572)] = 61141, - [SMALL_STATE(1573)] = 61193, - [SMALL_STATE(1574)] = 61245, - [SMALL_STATE(1575)] = 61297, - [SMALL_STATE(1576)] = 61349, - [SMALL_STATE(1577)] = 61401, - [SMALL_STATE(1578)] = 61453, - [SMALL_STATE(1579)] = 61505, - [SMALL_STATE(1580)] = 61557, - [SMALL_STATE(1581)] = 61609, - [SMALL_STATE(1582)] = 61661, - [SMALL_STATE(1583)] = 61713, - [SMALL_STATE(1584)] = 61765, - [SMALL_STATE(1585)] = 61817, - [SMALL_STATE(1586)] = 61869, - [SMALL_STATE(1587)] = 61921, - [SMALL_STATE(1588)] = 61973, - [SMALL_STATE(1589)] = 62025, - [SMALL_STATE(1590)] = 62077, - [SMALL_STATE(1591)] = 62129, - [SMALL_STATE(1592)] = 62181, - [SMALL_STATE(1593)] = 62233, - [SMALL_STATE(1594)] = 62285, - [SMALL_STATE(1595)] = 62337, - [SMALL_STATE(1596)] = 62389, - [SMALL_STATE(1597)] = 62441, - [SMALL_STATE(1598)] = 62493, - [SMALL_STATE(1599)] = 62545, - [SMALL_STATE(1600)] = 62597, - [SMALL_STATE(1601)] = 62649, - [SMALL_STATE(1602)] = 62701, - [SMALL_STATE(1603)] = 62753, - [SMALL_STATE(1604)] = 62805, - [SMALL_STATE(1605)] = 62857, - [SMALL_STATE(1606)] = 62909, - [SMALL_STATE(1607)] = 62961, - [SMALL_STATE(1608)] = 63013, - [SMALL_STATE(1609)] = 63065, - [SMALL_STATE(1610)] = 63117, - [SMALL_STATE(1611)] = 63169, - [SMALL_STATE(1612)] = 63221, - [SMALL_STATE(1613)] = 63273, - [SMALL_STATE(1614)] = 63325, - [SMALL_STATE(1615)] = 63377, - [SMALL_STATE(1616)] = 63429, - [SMALL_STATE(1617)] = 63481, - [SMALL_STATE(1618)] = 63533, - [SMALL_STATE(1619)] = 63585, - [SMALL_STATE(1620)] = 63637, - [SMALL_STATE(1621)] = 63689, - [SMALL_STATE(1622)] = 63741, - [SMALL_STATE(1623)] = 63793, - [SMALL_STATE(1624)] = 63845, - [SMALL_STATE(1625)] = 63897, - [SMALL_STATE(1626)] = 63949, - [SMALL_STATE(1627)] = 64001, - [SMALL_STATE(1628)] = 64053, - [SMALL_STATE(1629)] = 64105, - [SMALL_STATE(1630)] = 64157, - [SMALL_STATE(1631)] = 64209, - [SMALL_STATE(1632)] = 64261, - [SMALL_STATE(1633)] = 64313, - [SMALL_STATE(1634)] = 64365, - [SMALL_STATE(1635)] = 64417, - [SMALL_STATE(1636)] = 64469, - [SMALL_STATE(1637)] = 64521, - [SMALL_STATE(1638)] = 64573, - [SMALL_STATE(1639)] = 64625, - [SMALL_STATE(1640)] = 64677, - [SMALL_STATE(1641)] = 64729, - [SMALL_STATE(1642)] = 64781, - [SMALL_STATE(1643)] = 64833, - [SMALL_STATE(1644)] = 64885, - [SMALL_STATE(1645)] = 64937, - [SMALL_STATE(1646)] = 64989, - [SMALL_STATE(1647)] = 65041, - [SMALL_STATE(1648)] = 65093, - [SMALL_STATE(1649)] = 65145, - [SMALL_STATE(1650)] = 65197, - [SMALL_STATE(1651)] = 65249, - [SMALL_STATE(1652)] = 65301, - [SMALL_STATE(1653)] = 65353, - [SMALL_STATE(1654)] = 65405, - [SMALL_STATE(1655)] = 65457, - [SMALL_STATE(1656)] = 65509, - [SMALL_STATE(1657)] = 65561, - [SMALL_STATE(1658)] = 65613, - [SMALL_STATE(1659)] = 65665, - [SMALL_STATE(1660)] = 65717, - [SMALL_STATE(1661)] = 65769, - [SMALL_STATE(1662)] = 65821, - [SMALL_STATE(1663)] = 65873, - [SMALL_STATE(1664)] = 65925, - [SMALL_STATE(1665)] = 65977, - [SMALL_STATE(1666)] = 66029, - [SMALL_STATE(1667)] = 66081, - [SMALL_STATE(1668)] = 66133, - [SMALL_STATE(1669)] = 66185, - [SMALL_STATE(1670)] = 66237, - [SMALL_STATE(1671)] = 66289, - [SMALL_STATE(1672)] = 66341, - [SMALL_STATE(1673)] = 66393, - [SMALL_STATE(1674)] = 66445, - [SMALL_STATE(1675)] = 66497, - [SMALL_STATE(1676)] = 66549, - [SMALL_STATE(1677)] = 66601, - [SMALL_STATE(1678)] = 66653, - [SMALL_STATE(1679)] = 66705, - [SMALL_STATE(1680)] = 66757, - [SMALL_STATE(1681)] = 66809, - [SMALL_STATE(1682)] = 66861, - [SMALL_STATE(1683)] = 66913, - [SMALL_STATE(1684)] = 66965, - [SMALL_STATE(1685)] = 67017, - [SMALL_STATE(1686)] = 67069, - [SMALL_STATE(1687)] = 67121, - [SMALL_STATE(1688)] = 67173, - [SMALL_STATE(1689)] = 67225, - [SMALL_STATE(1690)] = 67277, - [SMALL_STATE(1691)] = 67329, - [SMALL_STATE(1692)] = 67381, - [SMALL_STATE(1693)] = 67433, - [SMALL_STATE(1694)] = 67485, - [SMALL_STATE(1695)] = 67537, - [SMALL_STATE(1696)] = 67589, - [SMALL_STATE(1697)] = 67641, - [SMALL_STATE(1698)] = 67693, - [SMALL_STATE(1699)] = 67745, - [SMALL_STATE(1700)] = 67797, - [SMALL_STATE(1701)] = 67849, - [SMALL_STATE(1702)] = 67901, - [SMALL_STATE(1703)] = 67953, - [SMALL_STATE(1704)] = 68005, - [SMALL_STATE(1705)] = 68057, - [SMALL_STATE(1706)] = 68109, - [SMALL_STATE(1707)] = 68161, - [SMALL_STATE(1708)] = 68213, - [SMALL_STATE(1709)] = 68265, - [SMALL_STATE(1710)] = 68317, - [SMALL_STATE(1711)] = 68369, - [SMALL_STATE(1712)] = 68421, - [SMALL_STATE(1713)] = 68473, - [SMALL_STATE(1714)] = 68525, - [SMALL_STATE(1715)] = 68577, - [SMALL_STATE(1716)] = 68629, - [SMALL_STATE(1717)] = 68681, - [SMALL_STATE(1718)] = 68733, - [SMALL_STATE(1719)] = 68785, - [SMALL_STATE(1720)] = 68837, - [SMALL_STATE(1721)] = 68889, - [SMALL_STATE(1722)] = 68941, - [SMALL_STATE(1723)] = 68993, - [SMALL_STATE(1724)] = 69045, - [SMALL_STATE(1725)] = 69097, - [SMALL_STATE(1726)] = 69149, - [SMALL_STATE(1727)] = 69201, - [SMALL_STATE(1728)] = 69253, - [SMALL_STATE(1729)] = 69305, - [SMALL_STATE(1730)] = 69357, - [SMALL_STATE(1731)] = 69409, - [SMALL_STATE(1732)] = 69461, - [SMALL_STATE(1733)] = 69513, - [SMALL_STATE(1734)] = 69565, - [SMALL_STATE(1735)] = 69617, - [SMALL_STATE(1736)] = 69669, - [SMALL_STATE(1737)] = 69721, - [SMALL_STATE(1738)] = 69773, - [SMALL_STATE(1739)] = 69825, - [SMALL_STATE(1740)] = 69877, - [SMALL_STATE(1741)] = 69929, - [SMALL_STATE(1742)] = 69981, - [SMALL_STATE(1743)] = 70033, - [SMALL_STATE(1744)] = 70085, - [SMALL_STATE(1745)] = 70137, - [SMALL_STATE(1746)] = 70189, - [SMALL_STATE(1747)] = 70241, - [SMALL_STATE(1748)] = 70293, - [SMALL_STATE(1749)] = 70345, - [SMALL_STATE(1750)] = 70397, - [SMALL_STATE(1751)] = 70449, - [SMALL_STATE(1752)] = 70501, - [SMALL_STATE(1753)] = 70553, - [SMALL_STATE(1754)] = 70605, - [SMALL_STATE(1755)] = 70657, - [SMALL_STATE(1756)] = 70709, - [SMALL_STATE(1757)] = 70761, - [SMALL_STATE(1758)] = 70813, - [SMALL_STATE(1759)] = 70865, - [SMALL_STATE(1760)] = 70917, - [SMALL_STATE(1761)] = 70969, - [SMALL_STATE(1762)] = 71021, - [SMALL_STATE(1763)] = 71073, - [SMALL_STATE(1764)] = 71125, - [SMALL_STATE(1765)] = 71177, - [SMALL_STATE(1766)] = 71229, - [SMALL_STATE(1767)] = 71281, - [SMALL_STATE(1768)] = 71333, - [SMALL_STATE(1769)] = 71385, - [SMALL_STATE(1770)] = 71437, - [SMALL_STATE(1771)] = 71489, - [SMALL_STATE(1772)] = 71541, - [SMALL_STATE(1773)] = 71593, - [SMALL_STATE(1774)] = 71645, - [SMALL_STATE(1775)] = 71697, - [SMALL_STATE(1776)] = 71749, - [SMALL_STATE(1777)] = 71801, - [SMALL_STATE(1778)] = 71853, - [SMALL_STATE(1779)] = 71905, - [SMALL_STATE(1780)] = 71957, - [SMALL_STATE(1781)] = 72009, - [SMALL_STATE(1782)] = 72061, - [SMALL_STATE(1783)] = 72113, - [SMALL_STATE(1784)] = 72165, - [SMALL_STATE(1785)] = 72217, - [SMALL_STATE(1786)] = 72269, - [SMALL_STATE(1787)] = 72321, - [SMALL_STATE(1788)] = 72373, - [SMALL_STATE(1789)] = 72425, - [SMALL_STATE(1790)] = 72477, - [SMALL_STATE(1791)] = 72529, - [SMALL_STATE(1792)] = 72581, - [SMALL_STATE(1793)] = 72633, - [SMALL_STATE(1794)] = 72685, - [SMALL_STATE(1795)] = 72737, - [SMALL_STATE(1796)] = 72789, - [SMALL_STATE(1797)] = 72841, - [SMALL_STATE(1798)] = 72893, - [SMALL_STATE(1799)] = 72945, - [SMALL_STATE(1800)] = 72997, - [SMALL_STATE(1801)] = 73049, - [SMALL_STATE(1802)] = 73101, - [SMALL_STATE(1803)] = 73153, - [SMALL_STATE(1804)] = 73205, - [SMALL_STATE(1805)] = 73257, - [SMALL_STATE(1806)] = 73309, - [SMALL_STATE(1807)] = 73361, - [SMALL_STATE(1808)] = 73413, - [SMALL_STATE(1809)] = 73465, - [SMALL_STATE(1810)] = 73517, - [SMALL_STATE(1811)] = 73569, - [SMALL_STATE(1812)] = 73621, - [SMALL_STATE(1813)] = 73673, - [SMALL_STATE(1814)] = 73725, - [SMALL_STATE(1815)] = 73777, - [SMALL_STATE(1816)] = 73829, - [SMALL_STATE(1817)] = 73881, - [SMALL_STATE(1818)] = 73933, - [SMALL_STATE(1819)] = 73985, - [SMALL_STATE(1820)] = 74037, - [SMALL_STATE(1821)] = 74089, - [SMALL_STATE(1822)] = 74141, - [SMALL_STATE(1823)] = 74193, - [SMALL_STATE(1824)] = 74245, - [SMALL_STATE(1825)] = 74297, - [SMALL_STATE(1826)] = 74349, - [SMALL_STATE(1827)] = 74401, - [SMALL_STATE(1828)] = 74453, - [SMALL_STATE(1829)] = 74505, - [SMALL_STATE(1830)] = 74557, - [SMALL_STATE(1831)] = 74609, - [SMALL_STATE(1832)] = 74661, - [SMALL_STATE(1833)] = 74713, - [SMALL_STATE(1834)] = 74765, - [SMALL_STATE(1835)] = 74817, - [SMALL_STATE(1836)] = 74869, - [SMALL_STATE(1837)] = 74921, - [SMALL_STATE(1838)] = 74973, - [SMALL_STATE(1839)] = 75025, - [SMALL_STATE(1840)] = 75077, - [SMALL_STATE(1841)] = 75129, - [SMALL_STATE(1842)] = 75181, - [SMALL_STATE(1843)] = 75233, - [SMALL_STATE(1844)] = 75285, - [SMALL_STATE(1845)] = 75337, - [SMALL_STATE(1846)] = 75389, - [SMALL_STATE(1847)] = 75441, - [SMALL_STATE(1848)] = 75493, - [SMALL_STATE(1849)] = 75545, - [SMALL_STATE(1850)] = 75597, - [SMALL_STATE(1851)] = 75649, - [SMALL_STATE(1852)] = 75701, - [SMALL_STATE(1853)] = 75753, - [SMALL_STATE(1854)] = 75805, - [SMALL_STATE(1855)] = 75857, - [SMALL_STATE(1856)] = 75909, - [SMALL_STATE(1857)] = 75961, - [SMALL_STATE(1858)] = 76013, - [SMALL_STATE(1859)] = 76065, - [SMALL_STATE(1860)] = 76117, - [SMALL_STATE(1861)] = 76169, - [SMALL_STATE(1862)] = 76221, - [SMALL_STATE(1863)] = 76273, - [SMALL_STATE(1864)] = 76325, - [SMALL_STATE(1865)] = 76377, - [SMALL_STATE(1866)] = 76429, - [SMALL_STATE(1867)] = 76481, - [SMALL_STATE(1868)] = 76533, - [SMALL_STATE(1869)] = 76585, - [SMALL_STATE(1870)] = 76637, - [SMALL_STATE(1871)] = 76689, - [SMALL_STATE(1872)] = 76741, - [SMALL_STATE(1873)] = 76793, - [SMALL_STATE(1874)] = 76845, - [SMALL_STATE(1875)] = 76897, - [SMALL_STATE(1876)] = 76949, - [SMALL_STATE(1877)] = 77001, - [SMALL_STATE(1878)] = 77053, - [SMALL_STATE(1879)] = 77105, - [SMALL_STATE(1880)] = 77157, - [SMALL_STATE(1881)] = 77209, - [SMALL_STATE(1882)] = 77261, - [SMALL_STATE(1883)] = 77313, - [SMALL_STATE(1884)] = 77365, - [SMALL_STATE(1885)] = 77417, - [SMALL_STATE(1886)] = 77469, - [SMALL_STATE(1887)] = 77521, - [SMALL_STATE(1888)] = 77573, - [SMALL_STATE(1889)] = 77625, - [SMALL_STATE(1890)] = 77677, - [SMALL_STATE(1891)] = 77729, - [SMALL_STATE(1892)] = 77781, - [SMALL_STATE(1893)] = 77833, - [SMALL_STATE(1894)] = 77885, - [SMALL_STATE(1895)] = 77937, - [SMALL_STATE(1896)] = 77989, - [SMALL_STATE(1897)] = 78041, - [SMALL_STATE(1898)] = 78093, - [SMALL_STATE(1899)] = 78145, - [SMALL_STATE(1900)] = 78197, - [SMALL_STATE(1901)] = 78249, - [SMALL_STATE(1902)] = 78301, - [SMALL_STATE(1903)] = 78353, - [SMALL_STATE(1904)] = 78405, - [SMALL_STATE(1905)] = 78457, - [SMALL_STATE(1906)] = 78509, - [SMALL_STATE(1907)] = 78561, - [SMALL_STATE(1908)] = 78613, - [SMALL_STATE(1909)] = 78665, - [SMALL_STATE(1910)] = 78717, - [SMALL_STATE(1911)] = 78769, - [SMALL_STATE(1912)] = 78821, - [SMALL_STATE(1913)] = 78873, - [SMALL_STATE(1914)] = 78925, - [SMALL_STATE(1915)] = 78977, - [SMALL_STATE(1916)] = 79029, - [SMALL_STATE(1917)] = 79081, - [SMALL_STATE(1918)] = 79133, - [SMALL_STATE(1919)] = 79185, - [SMALL_STATE(1920)] = 79237, - [SMALL_STATE(1921)] = 79289, - [SMALL_STATE(1922)] = 79341, - [SMALL_STATE(1923)] = 79393, - [SMALL_STATE(1924)] = 79445, - [SMALL_STATE(1925)] = 79497, - [SMALL_STATE(1926)] = 79549, - [SMALL_STATE(1927)] = 79601, - [SMALL_STATE(1928)] = 79653, - [SMALL_STATE(1929)] = 79705, - [SMALL_STATE(1930)] = 79757, - [SMALL_STATE(1931)] = 79809, - [SMALL_STATE(1932)] = 79861, - [SMALL_STATE(1933)] = 79913, - [SMALL_STATE(1934)] = 79965, - [SMALL_STATE(1935)] = 80017, - [SMALL_STATE(1936)] = 80069, - [SMALL_STATE(1937)] = 80121, - [SMALL_STATE(1938)] = 80173, - [SMALL_STATE(1939)] = 80225, - [SMALL_STATE(1940)] = 80277, - [SMALL_STATE(1941)] = 80329, - [SMALL_STATE(1942)] = 80381, - [SMALL_STATE(1943)] = 80433, - [SMALL_STATE(1944)] = 80485, - [SMALL_STATE(1945)] = 80537, - [SMALL_STATE(1946)] = 80589, - [SMALL_STATE(1947)] = 80641, - [SMALL_STATE(1948)] = 80693, - [SMALL_STATE(1949)] = 80745, - [SMALL_STATE(1950)] = 80797, - [SMALL_STATE(1951)] = 80849, - [SMALL_STATE(1952)] = 80901, - [SMALL_STATE(1953)] = 80953, - [SMALL_STATE(1954)] = 81005, - [SMALL_STATE(1955)] = 81057, - [SMALL_STATE(1956)] = 81109, - [SMALL_STATE(1957)] = 81161, - [SMALL_STATE(1958)] = 81213, - [SMALL_STATE(1959)] = 81265, - [SMALL_STATE(1960)] = 81317, - [SMALL_STATE(1961)] = 81369, - [SMALL_STATE(1962)] = 81421, - [SMALL_STATE(1963)] = 81473, - [SMALL_STATE(1964)] = 81525, - [SMALL_STATE(1965)] = 81577, - [SMALL_STATE(1966)] = 81629, - [SMALL_STATE(1967)] = 81681, - [SMALL_STATE(1968)] = 81733, - [SMALL_STATE(1969)] = 81785, - [SMALL_STATE(1970)] = 81837, - [SMALL_STATE(1971)] = 81889, - [SMALL_STATE(1972)] = 81941, - [SMALL_STATE(1973)] = 81993, - [SMALL_STATE(1974)] = 82045, - [SMALL_STATE(1975)] = 82097, - [SMALL_STATE(1976)] = 82149, - [SMALL_STATE(1977)] = 82201, - [SMALL_STATE(1978)] = 82253, - [SMALL_STATE(1979)] = 82305, - [SMALL_STATE(1980)] = 82357, - [SMALL_STATE(1981)] = 82409, - [SMALL_STATE(1982)] = 82461, - [SMALL_STATE(1983)] = 82513, - [SMALL_STATE(1984)] = 82565, - [SMALL_STATE(1985)] = 82617, - [SMALL_STATE(1986)] = 82669, - [SMALL_STATE(1987)] = 82721, - [SMALL_STATE(1988)] = 82773, - [SMALL_STATE(1989)] = 82825, - [SMALL_STATE(1990)] = 82877, - [SMALL_STATE(1991)] = 82929, - [SMALL_STATE(1992)] = 82981, - [SMALL_STATE(1993)] = 83033, - [SMALL_STATE(1994)] = 83085, - [SMALL_STATE(1995)] = 83137, - [SMALL_STATE(1996)] = 83189, - [SMALL_STATE(1997)] = 83241, - [SMALL_STATE(1998)] = 83293, - [SMALL_STATE(1999)] = 83345, - [SMALL_STATE(2000)] = 83397, - [SMALL_STATE(2001)] = 83449, - [SMALL_STATE(2002)] = 83501, - [SMALL_STATE(2003)] = 83553, - [SMALL_STATE(2004)] = 83605, - [SMALL_STATE(2005)] = 83657, - [SMALL_STATE(2006)] = 83709, - [SMALL_STATE(2007)] = 83761, - [SMALL_STATE(2008)] = 83813, - [SMALL_STATE(2009)] = 83865, - [SMALL_STATE(2010)] = 83917, - [SMALL_STATE(2011)] = 83969, - [SMALL_STATE(2012)] = 84021, - [SMALL_STATE(2013)] = 84073, - [SMALL_STATE(2014)] = 84125, - [SMALL_STATE(2015)] = 84177, - [SMALL_STATE(2016)] = 84229, - [SMALL_STATE(2017)] = 84281, - [SMALL_STATE(2018)] = 84333, - [SMALL_STATE(2019)] = 84385, - [SMALL_STATE(2020)] = 84437, - [SMALL_STATE(2021)] = 84489, - [SMALL_STATE(2022)] = 84541, - [SMALL_STATE(2023)] = 84593, - [SMALL_STATE(2024)] = 84645, - [SMALL_STATE(2025)] = 84697, - [SMALL_STATE(2026)] = 84749, - [SMALL_STATE(2027)] = 84801, - [SMALL_STATE(2028)] = 84853, - [SMALL_STATE(2029)] = 84905, - [SMALL_STATE(2030)] = 84957, - [SMALL_STATE(2031)] = 85009, - [SMALL_STATE(2032)] = 85061, - [SMALL_STATE(2033)] = 85113, - [SMALL_STATE(2034)] = 85165, - [SMALL_STATE(2035)] = 85217, - [SMALL_STATE(2036)] = 85269, - [SMALL_STATE(2037)] = 85321, - [SMALL_STATE(2038)] = 85373, - [SMALL_STATE(2039)] = 85425, - [SMALL_STATE(2040)] = 85477, - [SMALL_STATE(2041)] = 85529, - [SMALL_STATE(2042)] = 85581, - [SMALL_STATE(2043)] = 85633, - [SMALL_STATE(2044)] = 85685, - [SMALL_STATE(2045)] = 85737, - [SMALL_STATE(2046)] = 85789, - [SMALL_STATE(2047)] = 85841, - [SMALL_STATE(2048)] = 85893, - [SMALL_STATE(2049)] = 85945, - [SMALL_STATE(2050)] = 85997, - [SMALL_STATE(2051)] = 86049, - [SMALL_STATE(2052)] = 86101, - [SMALL_STATE(2053)] = 86153, - [SMALL_STATE(2054)] = 86205, - [SMALL_STATE(2055)] = 86257, - [SMALL_STATE(2056)] = 86309, - [SMALL_STATE(2057)] = 86361, - [SMALL_STATE(2058)] = 86413, - [SMALL_STATE(2059)] = 86465, - [SMALL_STATE(2060)] = 86517, - [SMALL_STATE(2061)] = 86569, - [SMALL_STATE(2062)] = 86621, - [SMALL_STATE(2063)] = 86673, - [SMALL_STATE(2064)] = 86725, - [SMALL_STATE(2065)] = 86777, - [SMALL_STATE(2066)] = 86829, - [SMALL_STATE(2067)] = 86881, - [SMALL_STATE(2068)] = 86933, - [SMALL_STATE(2069)] = 86985, - [SMALL_STATE(2070)] = 87037, - [SMALL_STATE(2071)] = 87089, - [SMALL_STATE(2072)] = 87141, - [SMALL_STATE(2073)] = 87193, - [SMALL_STATE(2074)] = 87245, - [SMALL_STATE(2075)] = 87297, - [SMALL_STATE(2076)] = 87349, - [SMALL_STATE(2077)] = 87401, - [SMALL_STATE(2078)] = 87453, - [SMALL_STATE(2079)] = 87505, - [SMALL_STATE(2080)] = 87557, - [SMALL_STATE(2081)] = 87609, - [SMALL_STATE(2082)] = 87661, - [SMALL_STATE(2083)] = 87713, - [SMALL_STATE(2084)] = 87765, - [SMALL_STATE(2085)] = 87817, - [SMALL_STATE(2086)] = 87869, - [SMALL_STATE(2087)] = 87921, - [SMALL_STATE(2088)] = 87973, - [SMALL_STATE(2089)] = 88025, - [SMALL_STATE(2090)] = 88077, - [SMALL_STATE(2091)] = 88129, - [SMALL_STATE(2092)] = 88181, - [SMALL_STATE(2093)] = 88233, - [SMALL_STATE(2094)] = 88285, - [SMALL_STATE(2095)] = 88337, - [SMALL_STATE(2096)] = 88389, - [SMALL_STATE(2097)] = 88441, - [SMALL_STATE(2098)] = 88493, - [SMALL_STATE(2099)] = 88545, - [SMALL_STATE(2100)] = 88597, - [SMALL_STATE(2101)] = 88649, - [SMALL_STATE(2102)] = 88701, - [SMALL_STATE(2103)] = 88753, - [SMALL_STATE(2104)] = 88805, - [SMALL_STATE(2105)] = 88857, - [SMALL_STATE(2106)] = 88909, - [SMALL_STATE(2107)] = 88961, - [SMALL_STATE(2108)] = 89013, - [SMALL_STATE(2109)] = 89065, - [SMALL_STATE(2110)] = 89117, - [SMALL_STATE(2111)] = 89169, - [SMALL_STATE(2112)] = 89221, - [SMALL_STATE(2113)] = 89273, - [SMALL_STATE(2114)] = 89325, - [SMALL_STATE(2115)] = 89377, - [SMALL_STATE(2116)] = 89429, - [SMALL_STATE(2117)] = 89481, - [SMALL_STATE(2118)] = 89533, - [SMALL_STATE(2119)] = 89585, - [SMALL_STATE(2120)] = 89637, - [SMALL_STATE(2121)] = 89689, - [SMALL_STATE(2122)] = 89741, - [SMALL_STATE(2123)] = 89793, - [SMALL_STATE(2124)] = 89845, - [SMALL_STATE(2125)] = 89897, - [SMALL_STATE(2126)] = 89949, - [SMALL_STATE(2127)] = 90001, - [SMALL_STATE(2128)] = 90053, - [SMALL_STATE(2129)] = 90105, - [SMALL_STATE(2130)] = 90157, - [SMALL_STATE(2131)] = 90209, - [SMALL_STATE(2132)] = 90261, - [SMALL_STATE(2133)] = 90313, - [SMALL_STATE(2134)] = 90365, - [SMALL_STATE(2135)] = 90417, - [SMALL_STATE(2136)] = 90469, - [SMALL_STATE(2137)] = 90521, - [SMALL_STATE(2138)] = 90573, - [SMALL_STATE(2139)] = 90625, - [SMALL_STATE(2140)] = 90677, - [SMALL_STATE(2141)] = 90729, - [SMALL_STATE(2142)] = 90781, - [SMALL_STATE(2143)] = 90833, - [SMALL_STATE(2144)] = 90885, - [SMALL_STATE(2145)] = 90937, - [SMALL_STATE(2146)] = 90989, - [SMALL_STATE(2147)] = 91041, - [SMALL_STATE(2148)] = 91093, - [SMALL_STATE(2149)] = 91145, - [SMALL_STATE(2150)] = 91197, - [SMALL_STATE(2151)] = 91249, - [SMALL_STATE(2152)] = 91301, - [SMALL_STATE(2153)] = 91353, - [SMALL_STATE(2154)] = 91405, - [SMALL_STATE(2155)] = 91457, - [SMALL_STATE(2156)] = 91509, - [SMALL_STATE(2157)] = 91561, - [SMALL_STATE(2158)] = 91613, - [SMALL_STATE(2159)] = 91665, - [SMALL_STATE(2160)] = 91717, - [SMALL_STATE(2161)] = 91769, - [SMALL_STATE(2162)] = 91821, - [SMALL_STATE(2163)] = 91873, - [SMALL_STATE(2164)] = 91925, - [SMALL_STATE(2165)] = 91977, - [SMALL_STATE(2166)] = 92029, - [SMALL_STATE(2167)] = 92081, - [SMALL_STATE(2168)] = 92133, - [SMALL_STATE(2169)] = 92185, - [SMALL_STATE(2170)] = 92237, - [SMALL_STATE(2171)] = 92289, - [SMALL_STATE(2172)] = 92341, - [SMALL_STATE(2173)] = 92393, - [SMALL_STATE(2174)] = 92445, - [SMALL_STATE(2175)] = 92497, - [SMALL_STATE(2176)] = 92549, - [SMALL_STATE(2177)] = 92601, - [SMALL_STATE(2178)] = 92653, - [SMALL_STATE(2179)] = 92705, - [SMALL_STATE(2180)] = 92757, - [SMALL_STATE(2181)] = 92809, - [SMALL_STATE(2182)] = 92861, - [SMALL_STATE(2183)] = 92913, - [SMALL_STATE(2184)] = 92965, - [SMALL_STATE(2185)] = 93017, - [SMALL_STATE(2186)] = 93069, - [SMALL_STATE(2187)] = 93121, - [SMALL_STATE(2188)] = 93173, - [SMALL_STATE(2189)] = 93225, - [SMALL_STATE(2190)] = 93277, - [SMALL_STATE(2191)] = 93329, - [SMALL_STATE(2192)] = 93381, - [SMALL_STATE(2193)] = 93433, - [SMALL_STATE(2194)] = 93485, - [SMALL_STATE(2195)] = 93537, - [SMALL_STATE(2196)] = 93589, - [SMALL_STATE(2197)] = 93641, - [SMALL_STATE(2198)] = 93693, - [SMALL_STATE(2199)] = 93745, - [SMALL_STATE(2200)] = 93797, - [SMALL_STATE(2201)] = 93849, - [SMALL_STATE(2202)] = 93901, - [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, + [SMALL_STATE(475)] = 0, + [SMALL_STATE(476)] = 66, + [SMALL_STATE(477)] = 132, + [SMALL_STATE(478)] = 198, + [SMALL_STATE(479)] = 264, + [SMALL_STATE(480)] = 330, + [SMALL_STATE(481)] = 396, + [SMALL_STATE(482)] = 462, + [SMALL_STATE(483)] = 528, + [SMALL_STATE(484)] = 594, + [SMALL_STATE(485)] = 660, + [SMALL_STATE(486)] = 726, + [SMALL_STATE(487)] = 792, + [SMALL_STATE(488)] = 858, + [SMALL_STATE(489)] = 921, + [SMALL_STATE(490)] = 984, + [SMALL_STATE(491)] = 1047, + [SMALL_STATE(492)] = 1110, + [SMALL_STATE(493)] = 1173, + [SMALL_STATE(494)] = 1236, + [SMALL_STATE(495)] = 1299, + [SMALL_STATE(496)] = 1362, + [SMALL_STATE(497)] = 1425, + [SMALL_STATE(498)] = 1488, + [SMALL_STATE(499)] = 1551, + [SMALL_STATE(500)] = 1614, + [SMALL_STATE(501)] = 1677, + [SMALL_STATE(502)] = 1740, + [SMALL_STATE(503)] = 1803, + [SMALL_STATE(504)] = 1866, + [SMALL_STATE(505)] = 1929, + [SMALL_STATE(506)] = 1992, + [SMALL_STATE(507)] = 2055, + [SMALL_STATE(508)] = 2118, + [SMALL_STATE(509)] = 2181, + [SMALL_STATE(510)] = 2244, + [SMALL_STATE(511)] = 2307, + [SMALL_STATE(512)] = 2370, + [SMALL_STATE(513)] = 2433, + [SMALL_STATE(514)] = 2496, + [SMALL_STATE(515)] = 2560, + [SMALL_STATE(516)] = 2624, + [SMALL_STATE(517)] = 2688, + [SMALL_STATE(518)] = 2752, + [SMALL_STATE(519)] = 2816, + [SMALL_STATE(520)] = 2880, + [SMALL_STATE(521)] = 2944, + [SMALL_STATE(522)] = 3008, + [SMALL_STATE(523)] = 3072, + [SMALL_STATE(524)] = 3136, + [SMALL_STATE(525)] = 3200, + [SMALL_STATE(526)] = 3264, + [SMALL_STATE(527)] = 3328, + [SMALL_STATE(528)] = 3392, + [SMALL_STATE(529)] = 3456, + [SMALL_STATE(530)] = 3520, + [SMALL_STATE(531)] = 3584, + [SMALL_STATE(532)] = 3648, + [SMALL_STATE(533)] = 3712, + [SMALL_STATE(534)] = 3769, + [SMALL_STATE(535)] = 3826, + [SMALL_STATE(536)] = 3883, + [SMALL_STATE(537)] = 3940, + [SMALL_STATE(538)] = 3997, + [SMALL_STATE(539)] = 4054, + [SMALL_STATE(540)] = 4111, + [SMALL_STATE(541)] = 4168, + [SMALL_STATE(542)] = 4225, + [SMALL_STATE(543)] = 4282, + [SMALL_STATE(544)] = 4339, + [SMALL_STATE(545)] = 4396, + [SMALL_STATE(546)] = 4453, + [SMALL_STATE(547)] = 4510, + [SMALL_STATE(548)] = 4567, + [SMALL_STATE(549)] = 4624, + [SMALL_STATE(550)] = 4681, + [SMALL_STATE(551)] = 4738, + [SMALL_STATE(552)] = 4795, + [SMALL_STATE(553)] = 4852, + [SMALL_STATE(554)] = 4909, + [SMALL_STATE(555)] = 4966, + [SMALL_STATE(556)] = 5023, + [SMALL_STATE(557)] = 5080, + [SMALL_STATE(558)] = 5137, + [SMALL_STATE(559)] = 5194, + [SMALL_STATE(560)] = 5251, + [SMALL_STATE(561)] = 5308, + [SMALL_STATE(562)] = 5365, + [SMALL_STATE(563)] = 5422, + [SMALL_STATE(564)] = 5479, + [SMALL_STATE(565)] = 5536, + [SMALL_STATE(566)] = 5593, + [SMALL_STATE(567)] = 5654, + [SMALL_STATE(568)] = 5711, + [SMALL_STATE(569)] = 5768, + [SMALL_STATE(570)] = 5825, + [SMALL_STATE(571)] = 5882, + [SMALL_STATE(572)] = 5939, + [SMALL_STATE(573)] = 5996, + [SMALL_STATE(574)] = 6053, + [SMALL_STATE(575)] = 6110, + [SMALL_STATE(576)] = 6167, + [SMALL_STATE(577)] = 6224, + [SMALL_STATE(578)] = 6281, + [SMALL_STATE(579)] = 6338, + [SMALL_STATE(580)] = 6395, + [SMALL_STATE(581)] = 6452, + [SMALL_STATE(582)] = 6509, + [SMALL_STATE(583)] = 6566, + [SMALL_STATE(584)] = 6623, + [SMALL_STATE(585)] = 6680, + [SMALL_STATE(586)] = 6737, + [SMALL_STATE(587)] = 6794, + [SMALL_STATE(588)] = 6851, + [SMALL_STATE(589)] = 6908, + [SMALL_STATE(590)] = 6965, + [SMALL_STATE(591)] = 7022, + [SMALL_STATE(592)] = 7079, + [SMALL_STATE(593)] = 7136, + [SMALL_STATE(594)] = 7193, + [SMALL_STATE(595)] = 7250, + [SMALL_STATE(596)] = 7307, + [SMALL_STATE(597)] = 7364, + [SMALL_STATE(598)] = 7421, + [SMALL_STATE(599)] = 7478, + [SMALL_STATE(600)] = 7535, + [SMALL_STATE(601)] = 7592, + [SMALL_STATE(602)] = 7649, + [SMALL_STATE(603)] = 7706, + [SMALL_STATE(604)] = 7763, + [SMALL_STATE(605)] = 7820, + [SMALL_STATE(606)] = 7877, + [SMALL_STATE(607)] = 7934, + [SMALL_STATE(608)] = 7991, + [SMALL_STATE(609)] = 8048, + [SMALL_STATE(610)] = 8105, + [SMALL_STATE(611)] = 8162, + [SMALL_STATE(612)] = 8219, + [SMALL_STATE(613)] = 8276, + [SMALL_STATE(614)] = 8333, + [SMALL_STATE(615)] = 8390, + [SMALL_STATE(616)] = 8447, + [SMALL_STATE(617)] = 8504, + [SMALL_STATE(618)] = 8561, + [SMALL_STATE(619)] = 8618, + [SMALL_STATE(620)] = 8675, + [SMALL_STATE(621)] = 8732, + [SMALL_STATE(622)] = 8789, + [SMALL_STATE(623)] = 8846, + [SMALL_STATE(624)] = 8903, + [SMALL_STATE(625)] = 8960, + [SMALL_STATE(626)] = 9017, + [SMALL_STATE(627)] = 9074, + [SMALL_STATE(628)] = 9131, + [SMALL_STATE(629)] = 9188, + [SMALL_STATE(630)] = 9245, + [SMALL_STATE(631)] = 9302, + [SMALL_STATE(632)] = 9359, + [SMALL_STATE(633)] = 9416, + [SMALL_STATE(634)] = 9473, + [SMALL_STATE(635)] = 9530, + [SMALL_STATE(636)] = 9587, + [SMALL_STATE(637)] = 9644, + [SMALL_STATE(638)] = 9701, + [SMALL_STATE(639)] = 9762, + [SMALL_STATE(640)] = 9819, + [SMALL_STATE(641)] = 9876, + [SMALL_STATE(642)] = 9933, + [SMALL_STATE(643)] = 9990, + [SMALL_STATE(644)] = 10047, + [SMALL_STATE(645)] = 10104, + [SMALL_STATE(646)] = 10161, + [SMALL_STATE(647)] = 10218, + [SMALL_STATE(648)] = 10275, + [SMALL_STATE(649)] = 10332, + [SMALL_STATE(650)] = 10389, + [SMALL_STATE(651)] = 10446, + [SMALL_STATE(652)] = 10503, + [SMALL_STATE(653)] = 10560, + [SMALL_STATE(654)] = 10617, + [SMALL_STATE(655)] = 10674, + [SMALL_STATE(656)] = 10731, + [SMALL_STATE(657)] = 10788, + [SMALL_STATE(658)] = 10845, + [SMALL_STATE(659)] = 10902, + [SMALL_STATE(660)] = 10959, + [SMALL_STATE(661)] = 11016, + [SMALL_STATE(662)] = 11073, + [SMALL_STATE(663)] = 11130, + [SMALL_STATE(664)] = 11191, + [SMALL_STATE(665)] = 11248, + [SMALL_STATE(666)] = 11305, + [SMALL_STATE(667)] = 11362, + [SMALL_STATE(668)] = 11423, + [SMALL_STATE(669)] = 11480, + [SMALL_STATE(670)] = 11537, + [SMALL_STATE(671)] = 11594, + [SMALL_STATE(672)] = 11651, + [SMALL_STATE(673)] = 11708, + [SMALL_STATE(674)] = 11769, + [SMALL_STATE(675)] = 11826, + [SMALL_STATE(676)] = 11887, + [SMALL_STATE(677)] = 11944, + [SMALL_STATE(678)] = 12005, + [SMALL_STATE(679)] = 12062, + [SMALL_STATE(680)] = 12119, + [SMALL_STATE(681)] = 12176, + [SMALL_STATE(682)] = 12237, + [SMALL_STATE(683)] = 12294, + [SMALL_STATE(684)] = 12351, + [SMALL_STATE(685)] = 12408, + [SMALL_STATE(686)] = 12469, + [SMALL_STATE(687)] = 12526, + [SMALL_STATE(688)] = 12583, + [SMALL_STATE(689)] = 12640, + [SMALL_STATE(690)] = 12701, + [SMALL_STATE(691)] = 12758, + [SMALL_STATE(692)] = 12815, + [SMALL_STATE(693)] = 12876, + [SMALL_STATE(694)] = 12933, + [SMALL_STATE(695)] = 12990, + [SMALL_STATE(696)] = 13047, + [SMALL_STATE(697)] = 13104, + [SMALL_STATE(698)] = 13161, + [SMALL_STATE(699)] = 13218, + [SMALL_STATE(700)] = 13275, + [SMALL_STATE(701)] = 13332, + [SMALL_STATE(702)] = 13389, + [SMALL_STATE(703)] = 13446, + [SMALL_STATE(704)] = 13503, + [SMALL_STATE(705)] = 13560, + [SMALL_STATE(706)] = 13617, + [SMALL_STATE(707)] = 13674, + [SMALL_STATE(708)] = 13731, + [SMALL_STATE(709)] = 13788, + [SMALL_STATE(710)] = 13845, + [SMALL_STATE(711)] = 13902, + [SMALL_STATE(712)] = 13963, + [SMALL_STATE(713)] = 14020, + [SMALL_STATE(714)] = 14077, + [SMALL_STATE(715)] = 14134, + [SMALL_STATE(716)] = 14191, + [SMALL_STATE(717)] = 14248, + [SMALL_STATE(718)] = 14305, + [SMALL_STATE(719)] = 14362, + [SMALL_STATE(720)] = 14419, + [SMALL_STATE(721)] = 14476, + [SMALL_STATE(722)] = 14533, + [SMALL_STATE(723)] = 14590, + [SMALL_STATE(724)] = 14647, + [SMALL_STATE(725)] = 14704, + [SMALL_STATE(726)] = 14761, + [SMALL_STATE(727)] = 14818, + [SMALL_STATE(728)] = 14875, + [SMALL_STATE(729)] = 14932, + [SMALL_STATE(730)] = 14989, + [SMALL_STATE(731)] = 15046, + [SMALL_STATE(732)] = 15103, + [SMALL_STATE(733)] = 15160, + [SMALL_STATE(734)] = 15217, + [SMALL_STATE(735)] = 15274, + [SMALL_STATE(736)] = 15331, + [SMALL_STATE(737)] = 15388, + [SMALL_STATE(738)] = 15445, + [SMALL_STATE(739)] = 15502, + [SMALL_STATE(740)] = 15559, + [SMALL_STATE(741)] = 15616, + [SMALL_STATE(742)] = 15673, + [SMALL_STATE(743)] = 15730, + [SMALL_STATE(744)] = 15787, + [SMALL_STATE(745)] = 15844, + [SMALL_STATE(746)] = 15901, + [SMALL_STATE(747)] = 15958, + [SMALL_STATE(748)] = 16015, + [SMALL_STATE(749)] = 16072, + [SMALL_STATE(750)] = 16129, + [SMALL_STATE(751)] = 16186, + [SMALL_STATE(752)] = 16243, + [SMALL_STATE(753)] = 16300, + [SMALL_STATE(754)] = 16357, + [SMALL_STATE(755)] = 16414, + [SMALL_STATE(756)] = 16471, + [SMALL_STATE(757)] = 16528, + [SMALL_STATE(758)] = 16585, + [SMALL_STATE(759)] = 16642, + [SMALL_STATE(760)] = 16699, + [SMALL_STATE(761)] = 16756, + [SMALL_STATE(762)] = 16813, + [SMALL_STATE(763)] = 16870, + [SMALL_STATE(764)] = 16927, + [SMALL_STATE(765)] = 16984, + [SMALL_STATE(766)] = 17041, + [SMALL_STATE(767)] = 17098, + [SMALL_STATE(768)] = 17155, + [SMALL_STATE(769)] = 17212, + [SMALL_STATE(770)] = 17269, + [SMALL_STATE(771)] = 17326, + [SMALL_STATE(772)] = 17383, + [SMALL_STATE(773)] = 17440, + [SMALL_STATE(774)] = 17497, + [SMALL_STATE(775)] = 17554, + [SMALL_STATE(776)] = 17611, + [SMALL_STATE(777)] = 17668, + [SMALL_STATE(778)] = 17725, + [SMALL_STATE(779)] = 17782, + [SMALL_STATE(780)] = 17839, + [SMALL_STATE(781)] = 17896, + [SMALL_STATE(782)] = 17953, + [SMALL_STATE(783)] = 18010, + [SMALL_STATE(784)] = 18067, + [SMALL_STATE(785)] = 18128, + [SMALL_STATE(786)] = 18185, + [SMALL_STATE(787)] = 18242, + [SMALL_STATE(788)] = 18299, + [SMALL_STATE(789)] = 18356, + [SMALL_STATE(790)] = 18413, + [SMALL_STATE(791)] = 18470, + [SMALL_STATE(792)] = 18527, + [SMALL_STATE(793)] = 18584, + [SMALL_STATE(794)] = 18641, + [SMALL_STATE(795)] = 18698, + [SMALL_STATE(796)] = 18755, + [SMALL_STATE(797)] = 18812, + [SMALL_STATE(798)] = 18869, + [SMALL_STATE(799)] = 18926, + [SMALL_STATE(800)] = 18983, + [SMALL_STATE(801)] = 19040, + [SMALL_STATE(802)] = 19097, + [SMALL_STATE(803)] = 19154, + [SMALL_STATE(804)] = 19211, + [SMALL_STATE(805)] = 19268, + [SMALL_STATE(806)] = 19325, + [SMALL_STATE(807)] = 19382, + [SMALL_STATE(808)] = 19439, + [SMALL_STATE(809)] = 19496, + [SMALL_STATE(810)] = 19553, + [SMALL_STATE(811)] = 19610, + [SMALL_STATE(812)] = 19667, + [SMALL_STATE(813)] = 19724, + [SMALL_STATE(814)] = 19781, + [SMALL_STATE(815)] = 19838, + [SMALL_STATE(816)] = 19895, + [SMALL_STATE(817)] = 19952, + [SMALL_STATE(818)] = 20009, + [SMALL_STATE(819)] = 20066, + [SMALL_STATE(820)] = 20123, + [SMALL_STATE(821)] = 20180, + [SMALL_STATE(822)] = 20237, + [SMALL_STATE(823)] = 20294, + [SMALL_STATE(824)] = 20351, + [SMALL_STATE(825)] = 20408, + [SMALL_STATE(826)] = 20465, + [SMALL_STATE(827)] = 20522, + [SMALL_STATE(828)] = 20579, + [SMALL_STATE(829)] = 20636, + [SMALL_STATE(830)] = 20693, + [SMALL_STATE(831)] = 20750, + [SMALL_STATE(832)] = 20807, + [SMALL_STATE(833)] = 20864, + [SMALL_STATE(834)] = 20921, + [SMALL_STATE(835)] = 20978, + [SMALL_STATE(836)] = 21035, + [SMALL_STATE(837)] = 21092, + [SMALL_STATE(838)] = 21149, + [SMALL_STATE(839)] = 21206, + [SMALL_STATE(840)] = 21263, + [SMALL_STATE(841)] = 21320, + [SMALL_STATE(842)] = 21377, + [SMALL_STATE(843)] = 21434, + [SMALL_STATE(844)] = 21491, + [SMALL_STATE(845)] = 21548, + [SMALL_STATE(846)] = 21605, + [SMALL_STATE(847)] = 21662, + [SMALL_STATE(848)] = 21719, + [SMALL_STATE(849)] = 21776, + [SMALL_STATE(850)] = 21833, + [SMALL_STATE(851)] = 21890, + [SMALL_STATE(852)] = 21947, + [SMALL_STATE(853)] = 22004, + [SMALL_STATE(854)] = 22061, + [SMALL_STATE(855)] = 22118, + [SMALL_STATE(856)] = 22175, + [SMALL_STATE(857)] = 22232, + [SMALL_STATE(858)] = 22293, + [SMALL_STATE(859)] = 22350, + [SMALL_STATE(860)] = 22407, + [SMALL_STATE(861)] = 22464, + [SMALL_STATE(862)] = 22521, + [SMALL_STATE(863)] = 22578, + [SMALL_STATE(864)] = 22635, + [SMALL_STATE(865)] = 22692, + [SMALL_STATE(866)] = 22749, + [SMALL_STATE(867)] = 22806, + [SMALL_STATE(868)] = 22863, + [SMALL_STATE(869)] = 22920, + [SMALL_STATE(870)] = 22977, + [SMALL_STATE(871)] = 23034, + [SMALL_STATE(872)] = 23091, + [SMALL_STATE(873)] = 23148, + [SMALL_STATE(874)] = 23205, + [SMALL_STATE(875)] = 23262, + [SMALL_STATE(876)] = 23319, + [SMALL_STATE(877)] = 23376, + [SMALL_STATE(878)] = 23433, + [SMALL_STATE(879)] = 23490, + [SMALL_STATE(880)] = 23547, + [SMALL_STATE(881)] = 23604, + [SMALL_STATE(882)] = 23661, + [SMALL_STATE(883)] = 23718, + [SMALL_STATE(884)] = 23775, + [SMALL_STATE(885)] = 23832, + [SMALL_STATE(886)] = 23889, + [SMALL_STATE(887)] = 23946, + [SMALL_STATE(888)] = 24003, + [SMALL_STATE(889)] = 24060, + [SMALL_STATE(890)] = 24117, + [SMALL_STATE(891)] = 24174, + [SMALL_STATE(892)] = 24231, + [SMALL_STATE(893)] = 24288, + [SMALL_STATE(894)] = 24345, + [SMALL_STATE(895)] = 24402, + [SMALL_STATE(896)] = 24459, + [SMALL_STATE(897)] = 24516, + [SMALL_STATE(898)] = 24573, + [SMALL_STATE(899)] = 24630, + [SMALL_STATE(900)] = 24687, + [SMALL_STATE(901)] = 24744, + [SMALL_STATE(902)] = 24801, + [SMALL_STATE(903)] = 24858, + [SMALL_STATE(904)] = 24915, + [SMALL_STATE(905)] = 24972, + [SMALL_STATE(906)] = 25029, + [SMALL_STATE(907)] = 25086, + [SMALL_STATE(908)] = 25143, + [SMALL_STATE(909)] = 25200, + [SMALL_STATE(910)] = 25257, + [SMALL_STATE(911)] = 25314, + [SMALL_STATE(912)] = 25371, + [SMALL_STATE(913)] = 25428, + [SMALL_STATE(914)] = 25485, + [SMALL_STATE(915)] = 25542, + [SMALL_STATE(916)] = 25599, + [SMALL_STATE(917)] = 25656, + [SMALL_STATE(918)] = 25713, + [SMALL_STATE(919)] = 25770, + [SMALL_STATE(920)] = 25827, + [SMALL_STATE(921)] = 25884, + [SMALL_STATE(922)] = 25941, + [SMALL_STATE(923)] = 25998, + [SMALL_STATE(924)] = 26055, + [SMALL_STATE(925)] = 26112, + [SMALL_STATE(926)] = 26169, + [SMALL_STATE(927)] = 26226, + [SMALL_STATE(928)] = 26283, + [SMALL_STATE(929)] = 26344, + [SMALL_STATE(930)] = 26401, + [SMALL_STATE(931)] = 26458, + [SMALL_STATE(932)] = 26515, + [SMALL_STATE(933)] = 26572, + [SMALL_STATE(934)] = 26629, + [SMALL_STATE(935)] = 26686, + [SMALL_STATE(936)] = 26743, + [SMALL_STATE(937)] = 26800, + [SMALL_STATE(938)] = 26857, + [SMALL_STATE(939)] = 26914, + [SMALL_STATE(940)] = 26971, + [SMALL_STATE(941)] = 27028, + [SMALL_STATE(942)] = 27085, + [SMALL_STATE(943)] = 27142, + [SMALL_STATE(944)] = 27199, + [SMALL_STATE(945)] = 27256, + [SMALL_STATE(946)] = 27313, + [SMALL_STATE(947)] = 27370, + [SMALL_STATE(948)] = 27427, + [SMALL_STATE(949)] = 27484, + [SMALL_STATE(950)] = 27541, + [SMALL_STATE(951)] = 27598, + [SMALL_STATE(952)] = 27655, + [SMALL_STATE(953)] = 27712, + [SMALL_STATE(954)] = 27769, + [SMALL_STATE(955)] = 27826, + [SMALL_STATE(956)] = 27883, + [SMALL_STATE(957)] = 27940, + [SMALL_STATE(958)] = 27997, + [SMALL_STATE(959)] = 28054, + [SMALL_STATE(960)] = 28111, + [SMALL_STATE(961)] = 28168, + [SMALL_STATE(962)] = 28225, + [SMALL_STATE(963)] = 28282, + [SMALL_STATE(964)] = 28339, + [SMALL_STATE(965)] = 28396, + [SMALL_STATE(966)] = 28453, + [SMALL_STATE(967)] = 28510, + [SMALL_STATE(968)] = 28567, + [SMALL_STATE(969)] = 28624, + [SMALL_STATE(970)] = 28681, + [SMALL_STATE(971)] = 28738, + [SMALL_STATE(972)] = 28795, + [SMALL_STATE(973)] = 28852, + [SMALL_STATE(974)] = 28909, + [SMALL_STATE(975)] = 28966, + [SMALL_STATE(976)] = 29023, + [SMALL_STATE(977)] = 29080, + [SMALL_STATE(978)] = 29137, + [SMALL_STATE(979)] = 29194, + [SMALL_STATE(980)] = 29251, + [SMALL_STATE(981)] = 29308, + [SMALL_STATE(982)] = 29365, + [SMALL_STATE(983)] = 29422, + [SMALL_STATE(984)] = 29479, + [SMALL_STATE(985)] = 29536, + [SMALL_STATE(986)] = 29593, + [SMALL_STATE(987)] = 29650, + [SMALL_STATE(988)] = 29707, + [SMALL_STATE(989)] = 29764, + [SMALL_STATE(990)] = 29821, + [SMALL_STATE(991)] = 29878, + [SMALL_STATE(992)] = 29935, + [SMALL_STATE(993)] = 29992, + [SMALL_STATE(994)] = 30049, + [SMALL_STATE(995)] = 30106, + [SMALL_STATE(996)] = 30163, + [SMALL_STATE(997)] = 30220, + [SMALL_STATE(998)] = 30277, + [SMALL_STATE(999)] = 30334, + [SMALL_STATE(1000)] = 30395, + [SMALL_STATE(1001)] = 30452, + [SMALL_STATE(1002)] = 30509, + [SMALL_STATE(1003)] = 30566, + [SMALL_STATE(1004)] = 30623, + [SMALL_STATE(1005)] = 30680, + [SMALL_STATE(1006)] = 30737, + [SMALL_STATE(1007)] = 30794, + [SMALL_STATE(1008)] = 30851, + [SMALL_STATE(1009)] = 30908, + [SMALL_STATE(1010)] = 30965, + [SMALL_STATE(1011)] = 31022, + [SMALL_STATE(1012)] = 31079, + [SMALL_STATE(1013)] = 31136, + [SMALL_STATE(1014)] = 31193, + [SMALL_STATE(1015)] = 31250, + [SMALL_STATE(1016)] = 31307, + [SMALL_STATE(1017)] = 31364, + [SMALL_STATE(1018)] = 31421, + [SMALL_STATE(1019)] = 31478, + [SMALL_STATE(1020)] = 31535, + [SMALL_STATE(1021)] = 31592, + [SMALL_STATE(1022)] = 31649, + [SMALL_STATE(1023)] = 31706, + [SMALL_STATE(1024)] = 31763, + [SMALL_STATE(1025)] = 31820, + [SMALL_STATE(1026)] = 31877, + [SMALL_STATE(1027)] = 31934, + [SMALL_STATE(1028)] = 31991, + [SMALL_STATE(1029)] = 32048, + [SMALL_STATE(1030)] = 32105, + [SMALL_STATE(1031)] = 32162, + [SMALL_STATE(1032)] = 32219, + [SMALL_STATE(1033)] = 32276, + [SMALL_STATE(1034)] = 32333, + [SMALL_STATE(1035)] = 32390, + [SMALL_STATE(1036)] = 32447, + [SMALL_STATE(1037)] = 32504, + [SMALL_STATE(1038)] = 32561, + [SMALL_STATE(1039)] = 32618, + [SMALL_STATE(1040)] = 32675, + [SMALL_STATE(1041)] = 32732, + [SMALL_STATE(1042)] = 32789, + [SMALL_STATE(1043)] = 32846, + [SMALL_STATE(1044)] = 32903, + [SMALL_STATE(1045)] = 32960, + [SMALL_STATE(1046)] = 33017, + [SMALL_STATE(1047)] = 33074, + [SMALL_STATE(1048)] = 33131, + [SMALL_STATE(1049)] = 33188, + [SMALL_STATE(1050)] = 33245, + [SMALL_STATE(1051)] = 33302, + [SMALL_STATE(1052)] = 33359, + [SMALL_STATE(1053)] = 33416, + [SMALL_STATE(1054)] = 33473, + [SMALL_STATE(1055)] = 33530, + [SMALL_STATE(1056)] = 33587, + [SMALL_STATE(1057)] = 33644, + [SMALL_STATE(1058)] = 33701, + [SMALL_STATE(1059)] = 33758, + [SMALL_STATE(1060)] = 33815, + [SMALL_STATE(1061)] = 33872, + [SMALL_STATE(1062)] = 33929, + [SMALL_STATE(1063)] = 33986, + [SMALL_STATE(1064)] = 34043, + [SMALL_STATE(1065)] = 34100, + [SMALL_STATE(1066)] = 34157, + [SMALL_STATE(1067)] = 34214, + [SMALL_STATE(1068)] = 34271, + [SMALL_STATE(1069)] = 34328, + [SMALL_STATE(1070)] = 34385, + [SMALL_STATE(1071)] = 34442, + [SMALL_STATE(1072)] = 34499, + [SMALL_STATE(1073)] = 34556, + [SMALL_STATE(1074)] = 34613, + [SMALL_STATE(1075)] = 34670, + [SMALL_STATE(1076)] = 34727, + [SMALL_STATE(1077)] = 34784, + [SMALL_STATE(1078)] = 34841, + [SMALL_STATE(1079)] = 34898, + [SMALL_STATE(1080)] = 34955, + [SMALL_STATE(1081)] = 35012, + [SMALL_STATE(1082)] = 35069, + [SMALL_STATE(1083)] = 35126, + [SMALL_STATE(1084)] = 35183, + [SMALL_STATE(1085)] = 35240, + [SMALL_STATE(1086)] = 35297, + [SMALL_STATE(1087)] = 35354, + [SMALL_STATE(1088)] = 35411, + [SMALL_STATE(1089)] = 35468, + [SMALL_STATE(1090)] = 35525, + [SMALL_STATE(1091)] = 35582, + [SMALL_STATE(1092)] = 35639, + [SMALL_STATE(1093)] = 35696, + [SMALL_STATE(1094)] = 35753, + [SMALL_STATE(1095)] = 35810, + [SMALL_STATE(1096)] = 35867, + [SMALL_STATE(1097)] = 35924, + [SMALL_STATE(1098)] = 35981, + [SMALL_STATE(1099)] = 36038, + [SMALL_STATE(1100)] = 36095, + [SMALL_STATE(1101)] = 36152, + [SMALL_STATE(1102)] = 36209, + [SMALL_STATE(1103)] = 36266, + [SMALL_STATE(1104)] = 36323, + [SMALL_STATE(1105)] = 36380, + [SMALL_STATE(1106)] = 36437, + [SMALL_STATE(1107)] = 36494, + [SMALL_STATE(1108)] = 36551, + [SMALL_STATE(1109)] = 36608, + [SMALL_STATE(1110)] = 36665, + [SMALL_STATE(1111)] = 36722, + [SMALL_STATE(1112)] = 36779, + [SMALL_STATE(1113)] = 36836, + [SMALL_STATE(1114)] = 36893, + [SMALL_STATE(1115)] = 36950, + [SMALL_STATE(1116)] = 37007, + [SMALL_STATE(1117)] = 37064, + [SMALL_STATE(1118)] = 37121, + [SMALL_STATE(1119)] = 37178, + [SMALL_STATE(1120)] = 37235, + [SMALL_STATE(1121)] = 37292, + [SMALL_STATE(1122)] = 37349, + [SMALL_STATE(1123)] = 37406, + [SMALL_STATE(1124)] = 37463, + [SMALL_STATE(1125)] = 37520, + [SMALL_STATE(1126)] = 37577, + [SMALL_STATE(1127)] = 37634, + [SMALL_STATE(1128)] = 37691, + [SMALL_STATE(1129)] = 37748, + [SMALL_STATE(1130)] = 37805, + [SMALL_STATE(1131)] = 37862, + [SMALL_STATE(1132)] = 37919, + [SMALL_STATE(1133)] = 37976, + [SMALL_STATE(1134)] = 38033, + [SMALL_STATE(1135)] = 38094, + [SMALL_STATE(1136)] = 38151, + [SMALL_STATE(1137)] = 38208, + [SMALL_STATE(1138)] = 38265, + [SMALL_STATE(1139)] = 38322, + [SMALL_STATE(1140)] = 38379, + [SMALL_STATE(1141)] = 38436, + [SMALL_STATE(1142)] = 38493, + [SMALL_STATE(1143)] = 38550, + [SMALL_STATE(1144)] = 38607, + [SMALL_STATE(1145)] = 38664, + [SMALL_STATE(1146)] = 38721, + [SMALL_STATE(1147)] = 38778, + [SMALL_STATE(1148)] = 38835, + [SMALL_STATE(1149)] = 38892, + [SMALL_STATE(1150)] = 38949, + [SMALL_STATE(1151)] = 39006, + [SMALL_STATE(1152)] = 39063, + [SMALL_STATE(1153)] = 39120, + [SMALL_STATE(1154)] = 39177, + [SMALL_STATE(1155)] = 39234, + [SMALL_STATE(1156)] = 39291, + [SMALL_STATE(1157)] = 39348, + [SMALL_STATE(1158)] = 39405, + [SMALL_STATE(1159)] = 39462, + [SMALL_STATE(1160)] = 39519, + [SMALL_STATE(1161)] = 39576, + [SMALL_STATE(1162)] = 39633, + [SMALL_STATE(1163)] = 39690, + [SMALL_STATE(1164)] = 39747, + [SMALL_STATE(1165)] = 39804, + [SMALL_STATE(1166)] = 39861, + [SMALL_STATE(1167)] = 39918, + [SMALL_STATE(1168)] = 39975, + [SMALL_STATE(1169)] = 40032, + [SMALL_STATE(1170)] = 40089, + [SMALL_STATE(1171)] = 40146, + [SMALL_STATE(1172)] = 40203, + [SMALL_STATE(1173)] = 40260, + [SMALL_STATE(1174)] = 40317, + [SMALL_STATE(1175)] = 40374, + [SMALL_STATE(1176)] = 40431, + [SMALL_STATE(1177)] = 40488, + [SMALL_STATE(1178)] = 40545, + [SMALL_STATE(1179)] = 40602, + [SMALL_STATE(1180)] = 40659, + [SMALL_STATE(1181)] = 40716, + [SMALL_STATE(1182)] = 40773, + [SMALL_STATE(1183)] = 40830, + [SMALL_STATE(1184)] = 40887, + [SMALL_STATE(1185)] = 40944, + [SMALL_STATE(1186)] = 41001, + [SMALL_STATE(1187)] = 41058, + [SMALL_STATE(1188)] = 41115, + [SMALL_STATE(1189)] = 41172, + [SMALL_STATE(1190)] = 41229, + [SMALL_STATE(1191)] = 41286, + [SMALL_STATE(1192)] = 41343, + [SMALL_STATE(1193)] = 41400, + [SMALL_STATE(1194)] = 41457, + [SMALL_STATE(1195)] = 41514, + [SMALL_STATE(1196)] = 41571, + [SMALL_STATE(1197)] = 41628, + [SMALL_STATE(1198)] = 41685, + [SMALL_STATE(1199)] = 41742, + [SMALL_STATE(1200)] = 41799, + [SMALL_STATE(1201)] = 41860, + [SMALL_STATE(1202)] = 41917, + [SMALL_STATE(1203)] = 41974, + [SMALL_STATE(1204)] = 42031, + [SMALL_STATE(1205)] = 42088, + [SMALL_STATE(1206)] = 42145, + [SMALL_STATE(1207)] = 42202, + [SMALL_STATE(1208)] = 42259, + [SMALL_STATE(1209)] = 42316, + [SMALL_STATE(1210)] = 42373, + [SMALL_STATE(1211)] = 42430, + [SMALL_STATE(1212)] = 42487, + [SMALL_STATE(1213)] = 42544, + [SMALL_STATE(1214)] = 42601, + [SMALL_STATE(1215)] = 42658, + [SMALL_STATE(1216)] = 42715, + [SMALL_STATE(1217)] = 42772, + [SMALL_STATE(1218)] = 42829, + [SMALL_STATE(1219)] = 42886, + [SMALL_STATE(1220)] = 42943, + [SMALL_STATE(1221)] = 43000, + [SMALL_STATE(1222)] = 43057, + [SMALL_STATE(1223)] = 43114, + [SMALL_STATE(1224)] = 43171, + [SMALL_STATE(1225)] = 43228, + [SMALL_STATE(1226)] = 43285, + [SMALL_STATE(1227)] = 43342, + [SMALL_STATE(1228)] = 43399, + [SMALL_STATE(1229)] = 43456, + [SMALL_STATE(1230)] = 43513, + [SMALL_STATE(1231)] = 43570, + [SMALL_STATE(1232)] = 43627, + [SMALL_STATE(1233)] = 43684, + [SMALL_STATE(1234)] = 43741, + [SMALL_STATE(1235)] = 43798, + [SMALL_STATE(1236)] = 43855, + [SMALL_STATE(1237)] = 43912, + [SMALL_STATE(1238)] = 43969, + [SMALL_STATE(1239)] = 44026, + [SMALL_STATE(1240)] = 44083, + [SMALL_STATE(1241)] = 44140, + [SMALL_STATE(1242)] = 44197, + [SMALL_STATE(1243)] = 44254, + [SMALL_STATE(1244)] = 44311, + [SMALL_STATE(1245)] = 44368, + [SMALL_STATE(1246)] = 44425, + [SMALL_STATE(1247)] = 44482, + [SMALL_STATE(1248)] = 44539, + [SMALL_STATE(1249)] = 44596, + [SMALL_STATE(1250)] = 44653, + [SMALL_STATE(1251)] = 44710, + [SMALL_STATE(1252)] = 44767, + [SMALL_STATE(1253)] = 44824, + [SMALL_STATE(1254)] = 44881, + [SMALL_STATE(1255)] = 44938, + [SMALL_STATE(1256)] = 44995, + [SMALL_STATE(1257)] = 45052, + [SMALL_STATE(1258)] = 45109, + [SMALL_STATE(1259)] = 45166, + [SMALL_STATE(1260)] = 45223, + [SMALL_STATE(1261)] = 45280, + [SMALL_STATE(1262)] = 45337, + [SMALL_STATE(1263)] = 45394, + [SMALL_STATE(1264)] = 45451, + [SMALL_STATE(1265)] = 45508, + [SMALL_STATE(1266)] = 45565, + [SMALL_STATE(1267)] = 45622, + [SMALL_STATE(1268)] = 45679, + [SMALL_STATE(1269)] = 45736, + [SMALL_STATE(1270)] = 45793, + [SMALL_STATE(1271)] = 45850, + [SMALL_STATE(1272)] = 45907, + [SMALL_STATE(1273)] = 45964, + [SMALL_STATE(1274)] = 46021, + [SMALL_STATE(1275)] = 46078, + [SMALL_STATE(1276)] = 46135, + [SMALL_STATE(1277)] = 46192, + [SMALL_STATE(1278)] = 46249, + [SMALL_STATE(1279)] = 46306, + [SMALL_STATE(1280)] = 46363, + [SMALL_STATE(1281)] = 46420, + [SMALL_STATE(1282)] = 46477, + [SMALL_STATE(1283)] = 46534, + [SMALL_STATE(1284)] = 46591, + [SMALL_STATE(1285)] = 46648, + [SMALL_STATE(1286)] = 46705, + [SMALL_STATE(1287)] = 46762, + [SMALL_STATE(1288)] = 46819, + [SMALL_STATE(1289)] = 46876, + [SMALL_STATE(1290)] = 46933, + [SMALL_STATE(1291)] = 46990, + [SMALL_STATE(1292)] = 47047, + [SMALL_STATE(1293)] = 47104, + [SMALL_STATE(1294)] = 47161, + [SMALL_STATE(1295)] = 47218, + [SMALL_STATE(1296)] = 47275, + [SMALL_STATE(1297)] = 47332, + [SMALL_STATE(1298)] = 47389, + [SMALL_STATE(1299)] = 47446, + [SMALL_STATE(1300)] = 47503, + [SMALL_STATE(1301)] = 47560, + [SMALL_STATE(1302)] = 47617, + [SMALL_STATE(1303)] = 47674, + [SMALL_STATE(1304)] = 47731, + [SMALL_STATE(1305)] = 47788, + [SMALL_STATE(1306)] = 47845, + [SMALL_STATE(1307)] = 47902, + [SMALL_STATE(1308)] = 47959, + [SMALL_STATE(1309)] = 48016, + [SMALL_STATE(1310)] = 48073, + [SMALL_STATE(1311)] = 48130, + [SMALL_STATE(1312)] = 48187, + [SMALL_STATE(1313)] = 48244, + [SMALL_STATE(1314)] = 48301, + [SMALL_STATE(1315)] = 48358, + [SMALL_STATE(1316)] = 48415, + [SMALL_STATE(1317)] = 48472, + [SMALL_STATE(1318)] = 48529, + [SMALL_STATE(1319)] = 48586, + [SMALL_STATE(1320)] = 48643, + [SMALL_STATE(1321)] = 48700, + [SMALL_STATE(1322)] = 48757, + [SMALL_STATE(1323)] = 48814, + [SMALL_STATE(1324)] = 48871, + [SMALL_STATE(1325)] = 48928, + [SMALL_STATE(1326)] = 48985, + [SMALL_STATE(1327)] = 49042, + [SMALL_STATE(1328)] = 49099, + [SMALL_STATE(1329)] = 49160, + [SMALL_STATE(1330)] = 49217, + [SMALL_STATE(1331)] = 49274, + [SMALL_STATE(1332)] = 49331, + [SMALL_STATE(1333)] = 49388, + [SMALL_STATE(1334)] = 49445, + [SMALL_STATE(1335)] = 49502, + [SMALL_STATE(1336)] = 49559, + [SMALL_STATE(1337)] = 49616, + [SMALL_STATE(1338)] = 49673, + [SMALL_STATE(1339)] = 49730, + [SMALL_STATE(1340)] = 49787, + [SMALL_STATE(1341)] = 49844, + [SMALL_STATE(1342)] = 49901, + [SMALL_STATE(1343)] = 49958, + [SMALL_STATE(1344)] = 50015, + [SMALL_STATE(1345)] = 50072, + [SMALL_STATE(1346)] = 50129, + [SMALL_STATE(1347)] = 50186, + [SMALL_STATE(1348)] = 50243, + [SMALL_STATE(1349)] = 50300, + [SMALL_STATE(1350)] = 50357, + [SMALL_STATE(1351)] = 50414, + [SMALL_STATE(1352)] = 50471, + [SMALL_STATE(1353)] = 50528, + [SMALL_STATE(1354)] = 50585, + [SMALL_STATE(1355)] = 50642, + [SMALL_STATE(1356)] = 50699, + [SMALL_STATE(1357)] = 50756, + [SMALL_STATE(1358)] = 50813, + [SMALL_STATE(1359)] = 50870, + [SMALL_STATE(1360)] = 50927, + [SMALL_STATE(1361)] = 50984, + [SMALL_STATE(1362)] = 51041, + [SMALL_STATE(1363)] = 51098, + [SMALL_STATE(1364)] = 51155, + [SMALL_STATE(1365)] = 51212, + [SMALL_STATE(1366)] = 51269, + [SMALL_STATE(1367)] = 51326, + [SMALL_STATE(1368)] = 51383, + [SMALL_STATE(1369)] = 51440, + [SMALL_STATE(1370)] = 51497, + [SMALL_STATE(1371)] = 51554, + [SMALL_STATE(1372)] = 51610, + [SMALL_STATE(1373)] = 51666, + [SMALL_STATE(1374)] = 51721, + [SMALL_STATE(1375)] = 51776, + [SMALL_STATE(1376)] = 51831, + [SMALL_STATE(1377)] = 51886, + [SMALL_STATE(1378)] = 51941, + [SMALL_STATE(1379)] = 51996, + [SMALL_STATE(1380)] = 52051, + [SMALL_STATE(1381)] = 52106, + [SMALL_STATE(1382)] = 52161, + [SMALL_STATE(1383)] = 52216, + [SMALL_STATE(1384)] = 52271, + [SMALL_STATE(1385)] = 52326, + [SMALL_STATE(1386)] = 52381, + [SMALL_STATE(1387)] = 52436, + [SMALL_STATE(1388)] = 52491, + [SMALL_STATE(1389)] = 52546, + [SMALL_STATE(1390)] = 52601, + [SMALL_STATE(1391)] = 52656, + [SMALL_STATE(1392)] = 52711, + [SMALL_STATE(1393)] = 52766, + [SMALL_STATE(1394)] = 52821, + [SMALL_STATE(1395)] = 52876, + [SMALL_STATE(1396)] = 52931, + [SMALL_STATE(1397)] = 52986, + [SMALL_STATE(1398)] = 53041, + [SMALL_STATE(1399)] = 53096, + [SMALL_STATE(1400)] = 53151, + [SMALL_STATE(1401)] = 53206, + [SMALL_STATE(1402)] = 53261, + [SMALL_STATE(1403)] = 53316, + [SMALL_STATE(1404)] = 53371, + [SMALL_STATE(1405)] = 53426, + [SMALL_STATE(1406)] = 53481, + [SMALL_STATE(1407)] = 53536, + [SMALL_STATE(1408)] = 53591, + [SMALL_STATE(1409)] = 53646, + [SMALL_STATE(1410)] = 53701, + [SMALL_STATE(1411)] = 53756, + [SMALL_STATE(1412)] = 53811, + [SMALL_STATE(1413)] = 53866, + [SMALL_STATE(1414)] = 53921, + [SMALL_STATE(1415)] = 53976, + [SMALL_STATE(1416)] = 54031, + [SMALL_STATE(1417)] = 54086, + [SMALL_STATE(1418)] = 54141, + [SMALL_STATE(1419)] = 54196, + [SMALL_STATE(1420)] = 54251, + [SMALL_STATE(1421)] = 54306, + [SMALL_STATE(1422)] = 54361, + [SMALL_STATE(1423)] = 54416, + [SMALL_STATE(1424)] = 54471, + [SMALL_STATE(1425)] = 54526, + [SMALL_STATE(1426)] = 54581, + [SMALL_STATE(1427)] = 54636, + [SMALL_STATE(1428)] = 54691, + [SMALL_STATE(1429)] = 54746, + [SMALL_STATE(1430)] = 54801, + [SMALL_STATE(1431)] = 54856, + [SMALL_STATE(1432)] = 54911, + [SMALL_STATE(1433)] = 54966, + [SMALL_STATE(1434)] = 55021, + [SMALL_STATE(1435)] = 55076, + [SMALL_STATE(1436)] = 55131, + [SMALL_STATE(1437)] = 55186, + [SMALL_STATE(1438)] = 55241, + [SMALL_STATE(1439)] = 55296, + [SMALL_STATE(1440)] = 55351, + [SMALL_STATE(1441)] = 55406, + [SMALL_STATE(1442)] = 55461, + [SMALL_STATE(1443)] = 55516, + [SMALL_STATE(1444)] = 55571, + [SMALL_STATE(1445)] = 55626, + [SMALL_STATE(1446)] = 55681, + [SMALL_STATE(1447)] = 55736, + [SMALL_STATE(1448)] = 55791, + [SMALL_STATE(1449)] = 55846, + [SMALL_STATE(1450)] = 55901, + [SMALL_STATE(1451)] = 55956, + [SMALL_STATE(1452)] = 56011, + [SMALL_STATE(1453)] = 56066, + [SMALL_STATE(1454)] = 56121, + [SMALL_STATE(1455)] = 56176, + [SMALL_STATE(1456)] = 56231, + [SMALL_STATE(1457)] = 56286, + [SMALL_STATE(1458)] = 56341, + [SMALL_STATE(1459)] = 56396, + [SMALL_STATE(1460)] = 56451, + [SMALL_STATE(1461)] = 56506, + [SMALL_STATE(1462)] = 56561, + [SMALL_STATE(1463)] = 56616, + [SMALL_STATE(1464)] = 56671, + [SMALL_STATE(1465)] = 56726, + [SMALL_STATE(1466)] = 56781, + [SMALL_STATE(1467)] = 56836, + [SMALL_STATE(1468)] = 56891, + [SMALL_STATE(1469)] = 56946, + [SMALL_STATE(1470)] = 57001, + [SMALL_STATE(1471)] = 57056, + [SMALL_STATE(1472)] = 57111, + [SMALL_STATE(1473)] = 57166, + [SMALL_STATE(1474)] = 57221, + [SMALL_STATE(1475)] = 57276, + [SMALL_STATE(1476)] = 57331, + [SMALL_STATE(1477)] = 57386, + [SMALL_STATE(1478)] = 57441, + [SMALL_STATE(1479)] = 57496, + [SMALL_STATE(1480)] = 57551, + [SMALL_STATE(1481)] = 57606, + [SMALL_STATE(1482)] = 57661, + [SMALL_STATE(1483)] = 57716, + [SMALL_STATE(1484)] = 57771, + [SMALL_STATE(1485)] = 57826, + [SMALL_STATE(1486)] = 57881, + [SMALL_STATE(1487)] = 57936, + [SMALL_STATE(1488)] = 57991, + [SMALL_STATE(1489)] = 58046, + [SMALL_STATE(1490)] = 58101, + [SMALL_STATE(1491)] = 58156, + [SMALL_STATE(1492)] = 58211, + [SMALL_STATE(1493)] = 58266, + [SMALL_STATE(1494)] = 58321, + [SMALL_STATE(1495)] = 58376, + [SMALL_STATE(1496)] = 58431, + [SMALL_STATE(1497)] = 58486, + [SMALL_STATE(1498)] = 58541, + [SMALL_STATE(1499)] = 58596, + [SMALL_STATE(1500)] = 58651, + [SMALL_STATE(1501)] = 58706, + [SMALL_STATE(1502)] = 58761, + [SMALL_STATE(1503)] = 58816, + [SMALL_STATE(1504)] = 58871, + [SMALL_STATE(1505)] = 58926, + [SMALL_STATE(1506)] = 58981, + [SMALL_STATE(1507)] = 59036, + [SMALL_STATE(1508)] = 59091, + [SMALL_STATE(1509)] = 59146, + [SMALL_STATE(1510)] = 59201, + [SMALL_STATE(1511)] = 59256, + [SMALL_STATE(1512)] = 59311, + [SMALL_STATE(1513)] = 59366, + [SMALL_STATE(1514)] = 59421, + [SMALL_STATE(1515)] = 59476, + [SMALL_STATE(1516)] = 59531, + [SMALL_STATE(1517)] = 59586, + [SMALL_STATE(1518)] = 59641, + [SMALL_STATE(1519)] = 59696, + [SMALL_STATE(1520)] = 59751, + [SMALL_STATE(1521)] = 59806, + [SMALL_STATE(1522)] = 59861, + [SMALL_STATE(1523)] = 59916, + [SMALL_STATE(1524)] = 59971, + [SMALL_STATE(1525)] = 60026, + [SMALL_STATE(1526)] = 60081, + [SMALL_STATE(1527)] = 60136, + [SMALL_STATE(1528)] = 60191, + [SMALL_STATE(1529)] = 60246, + [SMALL_STATE(1530)] = 60301, + [SMALL_STATE(1531)] = 60356, + [SMALL_STATE(1532)] = 60411, + [SMALL_STATE(1533)] = 60466, + [SMALL_STATE(1534)] = 60521, + [SMALL_STATE(1535)] = 60576, + [SMALL_STATE(1536)] = 60631, + [SMALL_STATE(1537)] = 60686, + [SMALL_STATE(1538)] = 60741, + [SMALL_STATE(1539)] = 60796, + [SMALL_STATE(1540)] = 60851, + [SMALL_STATE(1541)] = 60906, + [SMALL_STATE(1542)] = 60961, + [SMALL_STATE(1543)] = 61016, + [SMALL_STATE(1544)] = 61071, + [SMALL_STATE(1545)] = 61126, + [SMALL_STATE(1546)] = 61181, + [SMALL_STATE(1547)] = 61236, + [SMALL_STATE(1548)] = 61291, + [SMALL_STATE(1549)] = 61346, + [SMALL_STATE(1550)] = 61401, + [SMALL_STATE(1551)] = 61456, + [SMALL_STATE(1552)] = 61511, + [SMALL_STATE(1553)] = 61566, + [SMALL_STATE(1554)] = 61621, + [SMALL_STATE(1555)] = 61676, + [SMALL_STATE(1556)] = 61731, + [SMALL_STATE(1557)] = 61786, + [SMALL_STATE(1558)] = 61841, + [SMALL_STATE(1559)] = 61896, + [SMALL_STATE(1560)] = 61951, + [SMALL_STATE(1561)] = 62006, + [SMALL_STATE(1562)] = 62061, + [SMALL_STATE(1563)] = 62116, + [SMALL_STATE(1564)] = 62171, + [SMALL_STATE(1565)] = 62226, + [SMALL_STATE(1566)] = 62281, + [SMALL_STATE(1567)] = 62336, + [SMALL_STATE(1568)] = 62391, + [SMALL_STATE(1569)] = 62446, + [SMALL_STATE(1570)] = 62501, + [SMALL_STATE(1571)] = 62556, + [SMALL_STATE(1572)] = 62611, + [SMALL_STATE(1573)] = 62666, + [SMALL_STATE(1574)] = 62721, + [SMALL_STATE(1575)] = 62776, + [SMALL_STATE(1576)] = 62831, + [SMALL_STATE(1577)] = 62886, + [SMALL_STATE(1578)] = 62941, + [SMALL_STATE(1579)] = 62996, + [SMALL_STATE(1580)] = 63051, + [SMALL_STATE(1581)] = 63106, + [SMALL_STATE(1582)] = 63161, + [SMALL_STATE(1583)] = 63216, + [SMALL_STATE(1584)] = 63271, + [SMALL_STATE(1585)] = 63326, + [SMALL_STATE(1586)] = 63381, + [SMALL_STATE(1587)] = 63436, + [SMALL_STATE(1588)] = 63491, + [SMALL_STATE(1589)] = 63546, + [SMALL_STATE(1590)] = 63601, + [SMALL_STATE(1591)] = 63656, + [SMALL_STATE(1592)] = 63711, + [SMALL_STATE(1593)] = 63766, + [SMALL_STATE(1594)] = 63821, + [SMALL_STATE(1595)] = 63876, + [SMALL_STATE(1596)] = 63931, + [SMALL_STATE(1597)] = 63986, + [SMALL_STATE(1598)] = 64041, + [SMALL_STATE(1599)] = 64096, + [SMALL_STATE(1600)] = 64151, + [SMALL_STATE(1601)] = 64206, + [SMALL_STATE(1602)] = 64261, + [SMALL_STATE(1603)] = 64316, + [SMALL_STATE(1604)] = 64371, + [SMALL_STATE(1605)] = 64426, + [SMALL_STATE(1606)] = 64481, + [SMALL_STATE(1607)] = 64536, + [SMALL_STATE(1608)] = 64591, + [SMALL_STATE(1609)] = 64646, + [SMALL_STATE(1610)] = 64701, + [SMALL_STATE(1611)] = 64756, + [SMALL_STATE(1612)] = 64811, + [SMALL_STATE(1613)] = 64866, + [SMALL_STATE(1614)] = 64921, + [SMALL_STATE(1615)] = 64976, + [SMALL_STATE(1616)] = 65031, + [SMALL_STATE(1617)] = 65086, + [SMALL_STATE(1618)] = 65141, + [SMALL_STATE(1619)] = 65196, + [SMALL_STATE(1620)] = 65251, + [SMALL_STATE(1621)] = 65306, + [SMALL_STATE(1622)] = 65361, + [SMALL_STATE(1623)] = 65416, + [SMALL_STATE(1624)] = 65471, + [SMALL_STATE(1625)] = 65526, + [SMALL_STATE(1626)] = 65581, + [SMALL_STATE(1627)] = 65636, + [SMALL_STATE(1628)] = 65691, + [SMALL_STATE(1629)] = 65746, + [SMALL_STATE(1630)] = 65801, + [SMALL_STATE(1631)] = 65856, + [SMALL_STATE(1632)] = 65911, + [SMALL_STATE(1633)] = 65966, + [SMALL_STATE(1634)] = 66021, + [SMALL_STATE(1635)] = 66076, + [SMALL_STATE(1636)] = 66131, + [SMALL_STATE(1637)] = 66186, + [SMALL_STATE(1638)] = 66241, + [SMALL_STATE(1639)] = 66296, + [SMALL_STATE(1640)] = 66351, + [SMALL_STATE(1641)] = 66406, + [SMALL_STATE(1642)] = 66461, + [SMALL_STATE(1643)] = 66516, + [SMALL_STATE(1644)] = 66571, + [SMALL_STATE(1645)] = 66626, + [SMALL_STATE(1646)] = 66681, + [SMALL_STATE(1647)] = 66736, + [SMALL_STATE(1648)] = 66791, + [SMALL_STATE(1649)] = 66846, + [SMALL_STATE(1650)] = 66901, + [SMALL_STATE(1651)] = 66956, + [SMALL_STATE(1652)] = 67011, + [SMALL_STATE(1653)] = 67066, + [SMALL_STATE(1654)] = 67121, + [SMALL_STATE(1655)] = 67176, + [SMALL_STATE(1656)] = 67231, + [SMALL_STATE(1657)] = 67286, + [SMALL_STATE(1658)] = 67341, + [SMALL_STATE(1659)] = 67396, + [SMALL_STATE(1660)] = 67451, + [SMALL_STATE(1661)] = 67506, + [SMALL_STATE(1662)] = 67561, + [SMALL_STATE(1663)] = 67616, + [SMALL_STATE(1664)] = 67671, + [SMALL_STATE(1665)] = 67726, + [SMALL_STATE(1666)] = 67781, + [SMALL_STATE(1667)] = 67836, + [SMALL_STATE(1668)] = 67891, + [SMALL_STATE(1669)] = 67946, + [SMALL_STATE(1670)] = 68001, + [SMALL_STATE(1671)] = 68056, + [SMALL_STATE(1672)] = 68111, + [SMALL_STATE(1673)] = 68166, + [SMALL_STATE(1674)] = 68221, + [SMALL_STATE(1675)] = 68276, + [SMALL_STATE(1676)] = 68331, + [SMALL_STATE(1677)] = 68386, + [SMALL_STATE(1678)] = 68441, + [SMALL_STATE(1679)] = 68496, + [SMALL_STATE(1680)] = 68551, + [SMALL_STATE(1681)] = 68606, + [SMALL_STATE(1682)] = 68661, + [SMALL_STATE(1683)] = 68716, + [SMALL_STATE(1684)] = 68771, + [SMALL_STATE(1685)] = 68826, + [SMALL_STATE(1686)] = 68881, + [SMALL_STATE(1687)] = 68936, + [SMALL_STATE(1688)] = 68991, + [SMALL_STATE(1689)] = 69046, + [SMALL_STATE(1690)] = 69101, + [SMALL_STATE(1691)] = 69156, + [SMALL_STATE(1692)] = 69211, + [SMALL_STATE(1693)] = 69266, + [SMALL_STATE(1694)] = 69321, + [SMALL_STATE(1695)] = 69376, + [SMALL_STATE(1696)] = 69431, + [SMALL_STATE(1697)] = 69486, + [SMALL_STATE(1698)] = 69541, + [SMALL_STATE(1699)] = 69596, + [SMALL_STATE(1700)] = 69651, + [SMALL_STATE(1701)] = 69706, + [SMALL_STATE(1702)] = 69761, + [SMALL_STATE(1703)] = 69816, + [SMALL_STATE(1704)] = 69871, + [SMALL_STATE(1705)] = 69926, + [SMALL_STATE(1706)] = 69981, + [SMALL_STATE(1707)] = 70036, + [SMALL_STATE(1708)] = 70091, + [SMALL_STATE(1709)] = 70146, + [SMALL_STATE(1710)] = 70201, + [SMALL_STATE(1711)] = 70256, + [SMALL_STATE(1712)] = 70311, + [SMALL_STATE(1713)] = 70366, + [SMALL_STATE(1714)] = 70421, + [SMALL_STATE(1715)] = 70476, + [SMALL_STATE(1716)] = 70531, + [SMALL_STATE(1717)] = 70586, + [SMALL_STATE(1718)] = 70641, + [SMALL_STATE(1719)] = 70696, + [SMALL_STATE(1720)] = 70751, + [SMALL_STATE(1721)] = 70806, + [SMALL_STATE(1722)] = 70861, + [SMALL_STATE(1723)] = 70916, + [SMALL_STATE(1724)] = 70971, + [SMALL_STATE(1725)] = 71026, + [SMALL_STATE(1726)] = 71081, + [SMALL_STATE(1727)] = 71136, + [SMALL_STATE(1728)] = 71191, + [SMALL_STATE(1729)] = 71246, + [SMALL_STATE(1730)] = 71301, + [SMALL_STATE(1731)] = 71356, + [SMALL_STATE(1732)] = 71411, + [SMALL_STATE(1733)] = 71466, + [SMALL_STATE(1734)] = 71521, + [SMALL_STATE(1735)] = 71576, + [SMALL_STATE(1736)] = 71631, + [SMALL_STATE(1737)] = 71686, + [SMALL_STATE(1738)] = 71741, + [SMALL_STATE(1739)] = 71796, + [SMALL_STATE(1740)] = 71851, + [SMALL_STATE(1741)] = 71906, + [SMALL_STATE(1742)] = 71961, + [SMALL_STATE(1743)] = 72016, + [SMALL_STATE(1744)] = 72071, + [SMALL_STATE(1745)] = 72126, + [SMALL_STATE(1746)] = 72181, + [SMALL_STATE(1747)] = 72236, + [SMALL_STATE(1748)] = 72291, + [SMALL_STATE(1749)] = 72346, + [SMALL_STATE(1750)] = 72401, + [SMALL_STATE(1751)] = 72456, + [SMALL_STATE(1752)] = 72511, + [SMALL_STATE(1753)] = 72566, + [SMALL_STATE(1754)] = 72621, + [SMALL_STATE(1755)] = 72676, + [SMALL_STATE(1756)] = 72731, + [SMALL_STATE(1757)] = 72786, + [SMALL_STATE(1758)] = 72841, + [SMALL_STATE(1759)] = 72896, + [SMALL_STATE(1760)] = 72951, + [SMALL_STATE(1761)] = 73006, + [SMALL_STATE(1762)] = 73061, + [SMALL_STATE(1763)] = 73116, + [SMALL_STATE(1764)] = 73171, + [SMALL_STATE(1765)] = 73226, + [SMALL_STATE(1766)] = 73281, + [SMALL_STATE(1767)] = 73336, + [SMALL_STATE(1768)] = 73391, + [SMALL_STATE(1769)] = 73446, + [SMALL_STATE(1770)] = 73501, + [SMALL_STATE(1771)] = 73556, + [SMALL_STATE(1772)] = 73611, + [SMALL_STATE(1773)] = 73666, + [SMALL_STATE(1774)] = 73721, + [SMALL_STATE(1775)] = 73776, + [SMALL_STATE(1776)] = 73831, + [SMALL_STATE(1777)] = 73886, + [SMALL_STATE(1778)] = 73941, + [SMALL_STATE(1779)] = 73996, + [SMALL_STATE(1780)] = 74051, + [SMALL_STATE(1781)] = 74106, + [SMALL_STATE(1782)] = 74161, + [SMALL_STATE(1783)] = 74216, + [SMALL_STATE(1784)] = 74271, + [SMALL_STATE(1785)] = 74326, + [SMALL_STATE(1786)] = 74381, + [SMALL_STATE(1787)] = 74436, + [SMALL_STATE(1788)] = 74491, + [SMALL_STATE(1789)] = 74546, + [SMALL_STATE(1790)] = 74601, + [SMALL_STATE(1791)] = 74656, + [SMALL_STATE(1792)] = 74711, + [SMALL_STATE(1793)] = 74766, + [SMALL_STATE(1794)] = 74821, + [SMALL_STATE(1795)] = 74876, + [SMALL_STATE(1796)] = 74931, + [SMALL_STATE(1797)] = 74986, + [SMALL_STATE(1798)] = 75041, + [SMALL_STATE(1799)] = 75096, + [SMALL_STATE(1800)] = 75151, + [SMALL_STATE(1801)] = 75206, + [SMALL_STATE(1802)] = 75261, + [SMALL_STATE(1803)] = 75316, + [SMALL_STATE(1804)] = 75371, + [SMALL_STATE(1805)] = 75426, + [SMALL_STATE(1806)] = 75481, + [SMALL_STATE(1807)] = 75536, + [SMALL_STATE(1808)] = 75591, + [SMALL_STATE(1809)] = 75646, + [SMALL_STATE(1810)] = 75701, + [SMALL_STATE(1811)] = 75756, + [SMALL_STATE(1812)] = 75811, + [SMALL_STATE(1813)] = 75866, + [SMALL_STATE(1814)] = 75921, + [SMALL_STATE(1815)] = 75976, + [SMALL_STATE(1816)] = 76031, + [SMALL_STATE(1817)] = 76086, + [SMALL_STATE(1818)] = 76141, + [SMALL_STATE(1819)] = 76196, + [SMALL_STATE(1820)] = 76251, + [SMALL_STATE(1821)] = 76306, + [SMALL_STATE(1822)] = 76361, + [SMALL_STATE(1823)] = 76416, + [SMALL_STATE(1824)] = 76471, + [SMALL_STATE(1825)] = 76526, + [SMALL_STATE(1826)] = 76581, + [SMALL_STATE(1827)] = 76636, + [SMALL_STATE(1828)] = 76691, + [SMALL_STATE(1829)] = 76746, + [SMALL_STATE(1830)] = 76801, + [SMALL_STATE(1831)] = 76856, + [SMALL_STATE(1832)] = 76911, + [SMALL_STATE(1833)] = 76966, + [SMALL_STATE(1834)] = 77021, + [SMALL_STATE(1835)] = 77076, + [SMALL_STATE(1836)] = 77131, + [SMALL_STATE(1837)] = 77186, + [SMALL_STATE(1838)] = 77241, + [SMALL_STATE(1839)] = 77296, + [SMALL_STATE(1840)] = 77351, + [SMALL_STATE(1841)] = 77406, + [SMALL_STATE(1842)] = 77461, + [SMALL_STATE(1843)] = 77516, + [SMALL_STATE(1844)] = 77571, + [SMALL_STATE(1845)] = 77626, + [SMALL_STATE(1846)] = 77681, + [SMALL_STATE(1847)] = 77736, + [SMALL_STATE(1848)] = 77791, + [SMALL_STATE(1849)] = 77846, + [SMALL_STATE(1850)] = 77901, + [SMALL_STATE(1851)] = 77956, + [SMALL_STATE(1852)] = 78011, + [SMALL_STATE(1853)] = 78066, + [SMALL_STATE(1854)] = 78121, + [SMALL_STATE(1855)] = 78176, + [SMALL_STATE(1856)] = 78231, + [SMALL_STATE(1857)] = 78286, + [SMALL_STATE(1858)] = 78341, + [SMALL_STATE(1859)] = 78396, + [SMALL_STATE(1860)] = 78451, + [SMALL_STATE(1861)] = 78506, + [SMALL_STATE(1862)] = 78561, + [SMALL_STATE(1863)] = 78616, + [SMALL_STATE(1864)] = 78671, + [SMALL_STATE(1865)] = 78726, + [SMALL_STATE(1866)] = 78781, + [SMALL_STATE(1867)] = 78836, + [SMALL_STATE(1868)] = 78891, + [SMALL_STATE(1869)] = 78946, + [SMALL_STATE(1870)] = 79001, + [SMALL_STATE(1871)] = 79056, + [SMALL_STATE(1872)] = 79111, + [SMALL_STATE(1873)] = 79166, + [SMALL_STATE(1874)] = 79221, + [SMALL_STATE(1875)] = 79276, + [SMALL_STATE(1876)] = 79331, + [SMALL_STATE(1877)] = 79386, + [SMALL_STATE(1878)] = 79441, + [SMALL_STATE(1879)] = 79496, + [SMALL_STATE(1880)] = 79551, + [SMALL_STATE(1881)] = 79606, + [SMALL_STATE(1882)] = 79661, + [SMALL_STATE(1883)] = 79716, + [SMALL_STATE(1884)] = 79771, + [SMALL_STATE(1885)] = 79826, + [SMALL_STATE(1886)] = 79881, + [SMALL_STATE(1887)] = 79936, + [SMALL_STATE(1888)] = 79991, + [SMALL_STATE(1889)] = 80046, + [SMALL_STATE(1890)] = 80101, + [SMALL_STATE(1891)] = 80156, + [SMALL_STATE(1892)] = 80211, + [SMALL_STATE(1893)] = 80266, + [SMALL_STATE(1894)] = 80321, + [SMALL_STATE(1895)] = 80376, + [SMALL_STATE(1896)] = 80431, + [SMALL_STATE(1897)] = 80486, + [SMALL_STATE(1898)] = 80541, + [SMALL_STATE(1899)] = 80596, + [SMALL_STATE(1900)] = 80651, + [SMALL_STATE(1901)] = 80706, + [SMALL_STATE(1902)] = 80761, + [SMALL_STATE(1903)] = 80816, + [SMALL_STATE(1904)] = 80871, + [SMALL_STATE(1905)] = 80926, + [SMALL_STATE(1906)] = 80981, + [SMALL_STATE(1907)] = 81036, + [SMALL_STATE(1908)] = 81091, + [SMALL_STATE(1909)] = 81146, + [SMALL_STATE(1910)] = 81201, + [SMALL_STATE(1911)] = 81256, + [SMALL_STATE(1912)] = 81311, + [SMALL_STATE(1913)] = 81366, + [SMALL_STATE(1914)] = 81421, + [SMALL_STATE(1915)] = 81476, + [SMALL_STATE(1916)] = 81531, + [SMALL_STATE(1917)] = 81586, + [SMALL_STATE(1918)] = 81641, + [SMALL_STATE(1919)] = 81696, + [SMALL_STATE(1920)] = 81751, + [SMALL_STATE(1921)] = 81806, + [SMALL_STATE(1922)] = 81861, + [SMALL_STATE(1923)] = 81916, + [SMALL_STATE(1924)] = 81971, + [SMALL_STATE(1925)] = 82026, + [SMALL_STATE(1926)] = 82081, + [SMALL_STATE(1927)] = 82136, + [SMALL_STATE(1928)] = 82191, + [SMALL_STATE(1929)] = 82246, + [SMALL_STATE(1930)] = 82301, + [SMALL_STATE(1931)] = 82356, + [SMALL_STATE(1932)] = 82411, + [SMALL_STATE(1933)] = 82466, + [SMALL_STATE(1934)] = 82521, + [SMALL_STATE(1935)] = 82576, + [SMALL_STATE(1936)] = 82631, + [SMALL_STATE(1937)] = 82686, + [SMALL_STATE(1938)] = 82741, + [SMALL_STATE(1939)] = 82796, + [SMALL_STATE(1940)] = 82851, + [SMALL_STATE(1941)] = 82906, + [SMALL_STATE(1942)] = 82961, + [SMALL_STATE(1943)] = 83016, + [SMALL_STATE(1944)] = 83071, + [SMALL_STATE(1945)] = 83126, + [SMALL_STATE(1946)] = 83181, + [SMALL_STATE(1947)] = 83236, + [SMALL_STATE(1948)] = 83291, + [SMALL_STATE(1949)] = 83346, + [SMALL_STATE(1950)] = 83401, + [SMALL_STATE(1951)] = 83456, + [SMALL_STATE(1952)] = 83511, + [SMALL_STATE(1953)] = 83566, + [SMALL_STATE(1954)] = 83621, + [SMALL_STATE(1955)] = 83676, + [SMALL_STATE(1956)] = 83731, + [SMALL_STATE(1957)] = 83786, + [SMALL_STATE(1958)] = 83841, + [SMALL_STATE(1959)] = 83896, + [SMALL_STATE(1960)] = 83951, + [SMALL_STATE(1961)] = 84006, + [SMALL_STATE(1962)] = 84061, + [SMALL_STATE(1963)] = 84116, + [SMALL_STATE(1964)] = 84171, + [SMALL_STATE(1965)] = 84226, + [SMALL_STATE(1966)] = 84281, + [SMALL_STATE(1967)] = 84336, + [SMALL_STATE(1968)] = 84391, + [SMALL_STATE(1969)] = 84446, + [SMALL_STATE(1970)] = 84501, + [SMALL_STATE(1971)] = 84556, + [SMALL_STATE(1972)] = 84611, + [SMALL_STATE(1973)] = 84666, + [SMALL_STATE(1974)] = 84721, + [SMALL_STATE(1975)] = 84776, + [SMALL_STATE(1976)] = 84831, + [SMALL_STATE(1977)] = 84886, + [SMALL_STATE(1978)] = 84941, + [SMALL_STATE(1979)] = 84996, + [SMALL_STATE(1980)] = 85051, + [SMALL_STATE(1981)] = 85106, + [SMALL_STATE(1982)] = 85161, + [SMALL_STATE(1983)] = 85216, + [SMALL_STATE(1984)] = 85271, + [SMALL_STATE(1985)] = 85326, + [SMALL_STATE(1986)] = 85381, + [SMALL_STATE(1987)] = 85436, + [SMALL_STATE(1988)] = 85491, + [SMALL_STATE(1989)] = 85546, + [SMALL_STATE(1990)] = 85601, + [SMALL_STATE(1991)] = 85656, + [SMALL_STATE(1992)] = 85711, + [SMALL_STATE(1993)] = 85766, + [SMALL_STATE(1994)] = 85821, + [SMALL_STATE(1995)] = 85876, + [SMALL_STATE(1996)] = 85931, + [SMALL_STATE(1997)] = 85986, + [SMALL_STATE(1998)] = 86041, + [SMALL_STATE(1999)] = 86096, + [SMALL_STATE(2000)] = 86151, + [SMALL_STATE(2001)] = 86206, + [SMALL_STATE(2002)] = 86261, + [SMALL_STATE(2003)] = 86316, + [SMALL_STATE(2004)] = 86371, + [SMALL_STATE(2005)] = 86426, + [SMALL_STATE(2006)] = 86481, + [SMALL_STATE(2007)] = 86536, + [SMALL_STATE(2008)] = 86591, + [SMALL_STATE(2009)] = 86646, + [SMALL_STATE(2010)] = 86701, + [SMALL_STATE(2011)] = 86756, + [SMALL_STATE(2012)] = 86811, + [SMALL_STATE(2013)] = 86866, + [SMALL_STATE(2014)] = 86921, + [SMALL_STATE(2015)] = 86976, + [SMALL_STATE(2016)] = 87031, + [SMALL_STATE(2017)] = 87086, + [SMALL_STATE(2018)] = 87141, + [SMALL_STATE(2019)] = 87196, + [SMALL_STATE(2020)] = 87251, + [SMALL_STATE(2021)] = 87306, + [SMALL_STATE(2022)] = 87361, + [SMALL_STATE(2023)] = 87416, + [SMALL_STATE(2024)] = 87471, + [SMALL_STATE(2025)] = 87526, + [SMALL_STATE(2026)] = 87581, + [SMALL_STATE(2027)] = 87636, + [SMALL_STATE(2028)] = 87691, + [SMALL_STATE(2029)] = 87746, + [SMALL_STATE(2030)] = 87801, + [SMALL_STATE(2031)] = 87856, + [SMALL_STATE(2032)] = 87911, + [SMALL_STATE(2033)] = 87966, + [SMALL_STATE(2034)] = 88021, + [SMALL_STATE(2035)] = 88076, + [SMALL_STATE(2036)] = 88131, + [SMALL_STATE(2037)] = 88186, + [SMALL_STATE(2038)] = 88241, + [SMALL_STATE(2039)] = 88296, + [SMALL_STATE(2040)] = 88351, + [SMALL_STATE(2041)] = 88406, + [SMALL_STATE(2042)] = 88461, + [SMALL_STATE(2043)] = 88516, + [SMALL_STATE(2044)] = 88571, + [SMALL_STATE(2045)] = 88626, + [SMALL_STATE(2046)] = 88681, + [SMALL_STATE(2047)] = 88736, + [SMALL_STATE(2048)] = 88791, + [SMALL_STATE(2049)] = 88846, + [SMALL_STATE(2050)] = 88901, + [SMALL_STATE(2051)] = 88956, + [SMALL_STATE(2052)] = 89011, + [SMALL_STATE(2053)] = 89066, + [SMALL_STATE(2054)] = 89121, + [SMALL_STATE(2055)] = 89176, + [SMALL_STATE(2056)] = 89231, + [SMALL_STATE(2057)] = 89286, + [SMALL_STATE(2058)] = 89341, + [SMALL_STATE(2059)] = 89396, + [SMALL_STATE(2060)] = 89451, + [SMALL_STATE(2061)] = 89506, + [SMALL_STATE(2062)] = 89561, + [SMALL_STATE(2063)] = 89616, + [SMALL_STATE(2064)] = 89671, + [SMALL_STATE(2065)] = 89726, + [SMALL_STATE(2066)] = 89781, + [SMALL_STATE(2067)] = 89836, + [SMALL_STATE(2068)] = 89891, + [SMALL_STATE(2069)] = 89946, + [SMALL_STATE(2070)] = 90001, + [SMALL_STATE(2071)] = 90056, + [SMALL_STATE(2072)] = 90111, + [SMALL_STATE(2073)] = 90166, + [SMALL_STATE(2074)] = 90221, + [SMALL_STATE(2075)] = 90276, + [SMALL_STATE(2076)] = 90331, + [SMALL_STATE(2077)] = 90386, + [SMALL_STATE(2078)] = 90441, + [SMALL_STATE(2079)] = 90496, + [SMALL_STATE(2080)] = 90551, + [SMALL_STATE(2081)] = 90606, + [SMALL_STATE(2082)] = 90661, + [SMALL_STATE(2083)] = 90716, + [SMALL_STATE(2084)] = 90771, + [SMALL_STATE(2085)] = 90826, + [SMALL_STATE(2086)] = 90881, + [SMALL_STATE(2087)] = 90936, + [SMALL_STATE(2088)] = 90991, + [SMALL_STATE(2089)] = 91046, + [SMALL_STATE(2090)] = 91101, + [SMALL_STATE(2091)] = 91156, + [SMALL_STATE(2092)] = 91211, + [SMALL_STATE(2093)] = 91266, + [SMALL_STATE(2094)] = 91321, + [SMALL_STATE(2095)] = 91376, + [SMALL_STATE(2096)] = 91431, + [SMALL_STATE(2097)] = 91486, + [SMALL_STATE(2098)] = 91541, + [SMALL_STATE(2099)] = 91596, + [SMALL_STATE(2100)] = 91651, + [SMALL_STATE(2101)] = 91706, + [SMALL_STATE(2102)] = 91761, + [SMALL_STATE(2103)] = 91816, + [SMALL_STATE(2104)] = 91871, + [SMALL_STATE(2105)] = 91926, + [SMALL_STATE(2106)] = 91981, + [SMALL_STATE(2107)] = 92036, + [SMALL_STATE(2108)] = 92091, + [SMALL_STATE(2109)] = 92146, + [SMALL_STATE(2110)] = 92201, + [SMALL_STATE(2111)] = 92256, + [SMALL_STATE(2112)] = 92311, + [SMALL_STATE(2113)] = 92366, + [SMALL_STATE(2114)] = 92421, + [SMALL_STATE(2115)] = 92476, + [SMALL_STATE(2116)] = 92531, + [SMALL_STATE(2117)] = 92586, + [SMALL_STATE(2118)] = 92641, + [SMALL_STATE(2119)] = 92696, + [SMALL_STATE(2120)] = 92751, + [SMALL_STATE(2121)] = 92806, + [SMALL_STATE(2122)] = 92861, + [SMALL_STATE(2123)] = 92916, + [SMALL_STATE(2124)] = 92971, + [SMALL_STATE(2125)] = 93026, + [SMALL_STATE(2126)] = 93081, + [SMALL_STATE(2127)] = 93136, + [SMALL_STATE(2128)] = 93191, + [SMALL_STATE(2129)] = 93246, + [SMALL_STATE(2130)] = 93301, + [SMALL_STATE(2131)] = 93356, + [SMALL_STATE(2132)] = 93411, + [SMALL_STATE(2133)] = 93466, + [SMALL_STATE(2134)] = 93521, + [SMALL_STATE(2135)] = 93576, + [SMALL_STATE(2136)] = 93631, + [SMALL_STATE(2137)] = 93686, + [SMALL_STATE(2138)] = 93741, + [SMALL_STATE(2139)] = 93796, + [SMALL_STATE(2140)] = 93851, + [SMALL_STATE(2141)] = 93906, + [SMALL_STATE(2142)] = 93961, + [SMALL_STATE(2143)] = 94016, + [SMALL_STATE(2144)] = 94071, + [SMALL_STATE(2145)] = 94126, + [SMALL_STATE(2146)] = 94181, + [SMALL_STATE(2147)] = 94236, + [SMALL_STATE(2148)] = 94291, + [SMALL_STATE(2149)] = 94346, + [SMALL_STATE(2150)] = 94401, + [SMALL_STATE(2151)] = 94456, + [SMALL_STATE(2152)] = 94511, + [SMALL_STATE(2153)] = 94566, + [SMALL_STATE(2154)] = 94621, + [SMALL_STATE(2155)] = 94676, + [SMALL_STATE(2156)] = 94731, + [SMALL_STATE(2157)] = 94786, + [SMALL_STATE(2158)] = 94841, + [SMALL_STATE(2159)] = 94896, + [SMALL_STATE(2160)] = 94951, + [SMALL_STATE(2161)] = 95006, + [SMALL_STATE(2162)] = 95061, + [SMALL_STATE(2163)] = 95116, + [SMALL_STATE(2164)] = 95171, + [SMALL_STATE(2165)] = 95226, + [SMALL_STATE(2166)] = 95281, + [SMALL_STATE(2167)] = 95336, + [SMALL_STATE(2168)] = 95391, + [SMALL_STATE(2169)] = 95446, + [SMALL_STATE(2170)] = 95501, + [SMALL_STATE(2171)] = 95556, + [SMALL_STATE(2172)] = 95611, + [SMALL_STATE(2173)] = 95666, + [SMALL_STATE(2174)] = 95721, + [SMALL_STATE(2175)] = 95776, + [SMALL_STATE(2176)] = 95831, + [SMALL_STATE(2177)] = 95886, + [SMALL_STATE(2178)] = 95941, + [SMALL_STATE(2179)] = 95996, + [SMALL_STATE(2180)] = 96051, + [SMALL_STATE(2181)] = 96106, + [SMALL_STATE(2182)] = 96161, + [SMALL_STATE(2183)] = 96216, + [SMALL_STATE(2184)] = 96271, + [SMALL_STATE(2185)] = 96326, + [SMALL_STATE(2186)] = 96381, + [SMALL_STATE(2187)] = 96436, + [SMALL_STATE(2188)] = 96491, + [SMALL_STATE(2189)] = 96546, + [SMALL_STATE(2190)] = 96601, + [SMALL_STATE(2191)] = 96656, + [SMALL_STATE(2192)] = 96711, + [SMALL_STATE(2193)] = 96766, + [SMALL_STATE(2194)] = 96821, + [SMALL_STATE(2195)] = 96876, + [SMALL_STATE(2196)] = 96931, + [SMALL_STATE(2197)] = 96986, + [SMALL_STATE(2198)] = 97041, + [SMALL_STATE(2199)] = 97096, + [SMALL_STATE(2200)] = 97151, + [SMALL_STATE(2201)] = 97206, + [SMALL_STATE(2202)] = 97261, + [SMALL_STATE(2203)] = 97316, + [SMALL_STATE(2204)] = 97371, + [SMALL_STATE(2205)] = 97426, + [SMALL_STATE(2206)] = 97481, + [SMALL_STATE(2207)] = 97536, + [SMALL_STATE(2208)] = 97591, + [SMALL_STATE(2209)] = 97646, + [SMALL_STATE(2210)] = 97701, + [SMALL_STATE(2211)] = 97756, + [SMALL_STATE(2212)] = 97811, + [SMALL_STATE(2213)] = 97866, + [SMALL_STATE(2214)] = 97921, + [SMALL_STATE(2215)] = 97976, + [SMALL_STATE(2216)] = 98031, + [SMALL_STATE(2217)] = 98086, + [SMALL_STATE(2218)] = 98141, + [SMALL_STATE(2219)] = 98196, + [SMALL_STATE(2220)] = 98251, + [SMALL_STATE(2221)] = 98306, + [SMALL_STATE(2222)] = 98361, + [SMALL_STATE(2223)] = 98416, + [SMALL_STATE(2224)] = 98471, + [SMALL_STATE(2225)] = 98526, + [SMALL_STATE(2226)] = 98581, + [SMALL_STATE(2227)] = 98636, + [SMALL_STATE(2228)] = 98691, + [SMALL_STATE(2229)] = 98746, + [SMALL_STATE(2230)] = 98801, + [SMALL_STATE(2231)] = 98856, + [SMALL_STATE(2232)] = 98911, + [SMALL_STATE(2233)] = 98966, + [SMALL_STATE(2234)] = 99021, + [SMALL_STATE(2235)] = 99076, + [SMALL_STATE(2236)] = 99131, + [SMALL_STATE(2237)] = 99186, + [SMALL_STATE(2238)] = 99241, + [SMALL_STATE(2239)] = 99296, + [SMALL_STATE(2240)] = 99351, + [SMALL_STATE(2241)] = 99406, + [SMALL_STATE(2242)] = 99461, + [SMALL_STATE(2243)] = 99516, + [SMALL_STATE(2244)] = 99571, + [SMALL_STATE(2245)] = 99626, + [SMALL_STATE(2246)] = 99681, + [SMALL_STATE(2247)] = 99736, + [SMALL_STATE(2248)] = 99791, + [SMALL_STATE(2249)] = 99846, + [SMALL_STATE(2250)] = 99901, + [SMALL_STATE(2251)] = 99956, + [SMALL_STATE(2252)] = 100011, + [SMALL_STATE(2253)] = 100066, + [SMALL_STATE(2254)] = 100121, + [SMALL_STATE(2255)] = 100176, + [SMALL_STATE(2256)] = 100231, + [SMALL_STATE(2257)] = 100286, + [SMALL_STATE(2258)] = 100341, + [SMALL_STATE(2259)] = 100396, + [SMALL_STATE(2260)] = 100451, + [SMALL_STATE(2261)] = 100506, + [SMALL_STATE(2262)] = 100561, + [SMALL_STATE(2263)] = 100616, + [SMALL_STATE(2264)] = 100671, + [SMALL_STATE(2265)] = 100726, + [SMALL_STATE(2266)] = 100781, + [SMALL_STATE(2267)] = 100836, + [SMALL_STATE(2268)] = 100891, + [SMALL_STATE(2269)] = 100946, + [SMALL_STATE(2270)] = 101001, + [SMALL_STATE(2271)] = 101056, + [SMALL_STATE(2272)] = 101111, + [SMALL_STATE(2273)] = 101166, + [SMALL_STATE(2274)] = 101221, + [SMALL_STATE(2275)] = 101276, + [SMALL_STATE(2276)] = 101331, + [SMALL_STATE(2277)] = 101386, + [SMALL_STATE(2278)] = 101441, + [SMALL_STATE(2279)] = 101496, + [SMALL_STATE(2280)] = 101551, + [SMALL_STATE(2281)] = 101606, + [SMALL_STATE(2282)] = 101661, + [SMALL_STATE(2283)] = 101716, + [SMALL_STATE(2284)] = 101771, + [SMALL_STATE(2285)] = 101826, + [SMALL_STATE(2286)] = 101881, + [SMALL_STATE(2287)] = 101936, + [SMALL_STATE(2288)] = 101991, + [SMALL_STATE(2289)] = 102046, + [SMALL_STATE(2290)] = 102101, + [SMALL_STATE(2291)] = 102156, + [SMALL_STATE(2292)] = 102211, + [SMALL_STATE(2293)] = 102266, + [SMALL_STATE(2294)] = 102321, + [SMALL_STATE(2295)] = 102376, + [SMALL_STATE(2296)] = 102431, + [SMALL_STATE(2297)] = 102486, + [SMALL_STATE(2298)] = 102541, + [SMALL_STATE(2299)] = 102596, + [SMALL_STATE(2300)] = 102651, + [SMALL_STATE(2301)] = 102706, + [SMALL_STATE(2302)] = 102761, + [SMALL_STATE(2303)] = 102816, + [SMALL_STATE(2304)] = 102871, + [SMALL_STATE(2305)] = 102926, + [SMALL_STATE(2306)] = 102981, + [SMALL_STATE(2307)] = 103036, + [SMALL_STATE(2308)] = 103091, + [SMALL_STATE(2309)] = 103146, + [SMALL_STATE(2310)] = 103201, + [SMALL_STATE(2311)] = 103256, + [SMALL_STATE(2312)] = 103311, + [SMALL_STATE(2313)] = 103366, + [SMALL_STATE(2314)] = 103421, + [SMALL_STATE(2315)] = 103476, + [SMALL_STATE(2316)] = 103531, + [SMALL_STATE(2317)] = 103586, + [SMALL_STATE(2318)] = 103641, + [SMALL_STATE(2319)] = 103696, + [SMALL_STATE(2320)] = 103751, + [SMALL_STATE(2321)] = 103806, + [SMALL_STATE(2322)] = 103861, + [SMALL_STATE(2323)] = 103916, + [SMALL_STATE(2324)] = 103971, + [SMALL_STATE(2325)] = 104026, + [SMALL_STATE(2326)] = 104081, + [SMALL_STATE(2327)] = 104136, + [SMALL_STATE(2328)] = 104191, + [SMALL_STATE(2329)] = 104246, + [SMALL_STATE(2330)] = 104301, + [SMALL_STATE(2331)] = 104356, + [SMALL_STATE(2332)] = 104411, + [SMALL_STATE(2333)] = 104466, + [SMALL_STATE(2334)] = 104521, + [SMALL_STATE(2335)] = 104576, + [SMALL_STATE(2336)] = 104631, + [SMALL_STATE(2337)] = 104686, + [SMALL_STATE(2338)] = 104741, + [SMALL_STATE(2339)] = 104796, + [SMALL_STATE(2340)] = 104851, + [SMALL_STATE(2341)] = 104906, + [SMALL_STATE(2342)] = 104961, + [SMALL_STATE(2343)] = 105016, + [SMALL_STATE(2344)] = 105071, + [SMALL_STATE(2345)] = 105126, + [SMALL_STATE(2346)] = 105181, + [SMALL_STATE(2347)] = 105236, + [SMALL_STATE(2348)] = 105291, + [SMALL_STATE(2349)] = 105346, + [SMALL_STATE(2350)] = 105401, + [SMALL_STATE(2351)] = 105456, + [SMALL_STATE(2352)] = 105511, + [SMALL_STATE(2353)] = 105566, + [SMALL_STATE(2354)] = 105621, + [SMALL_STATE(2355)] = 105676, + [SMALL_STATE(2356)] = 105731, + [SMALL_STATE(2357)] = 105786, + [SMALL_STATE(2358)] = 105841, + [SMALL_STATE(2359)] = 105896, + [SMALL_STATE(2360)] = 105951, + [SMALL_STATE(2361)] = 106006, + [SMALL_STATE(2362)] = 106061, + [SMALL_STATE(2363)] = 106116, + [SMALL_STATE(2364)] = 106171, + [SMALL_STATE(2365)] = 106226, + [SMALL_STATE(2366)] = 106281, + [SMALL_STATE(2367)] = 106336, + [SMALL_STATE(2368)] = 106391, + [SMALL_STATE(2369)] = 106446, + [SMALL_STATE(2370)] = 106501, + [SMALL_STATE(2371)] = 106556, + [SMALL_STATE(2372)] = 106611, + [SMALL_STATE(2373)] = 106666, + [SMALL_STATE(2374)] = 106721, + [SMALL_STATE(2375)] = 106776, + [SMALL_STATE(2376)] = 106831, + [SMALL_STATE(2377)] = 106886, + [SMALL_STATE(2378)] = 106941, + [SMALL_STATE(2379)] = 106996, + [SMALL_STATE(2380)] = 107051, + [SMALL_STATE(2381)] = 107106, + [SMALL_STATE(2382)] = 107161, + [SMALL_STATE(2383)] = 107216, + [SMALL_STATE(2384)] = 107271, + [SMALL_STATE(2385)] = 107326, + [SMALL_STATE(2386)] = 107381, + [SMALL_STATE(2387)] = 107436, + [SMALL_STATE(2388)] = 107491, + [SMALL_STATE(2389)] = 107546, + [SMALL_STATE(2390)] = 107601, + [SMALL_STATE(2391)] = 107656, + [SMALL_STATE(2392)] = 107711, + [SMALL_STATE(2393)] = 107766, + [SMALL_STATE(2394)] = 107821, + [SMALL_STATE(2395)] = 107876, + [SMALL_STATE(2396)] = 107931, + [SMALL_STATE(2397)] = 107986, + [SMALL_STATE(2398)] = 108041, + [SMALL_STATE(2399)] = 108096, + [SMALL_STATE(2400)] = 108151, + [SMALL_STATE(2401)] = 108206, + [SMALL_STATE(2402)] = 108261, + [SMALL_STATE(2403)] = 108316, + [SMALL_STATE(2404)] = 108371, + [SMALL_STATE(2405)] = 108426, + [SMALL_STATE(2406)] = 108481, + [SMALL_STATE(2407)] = 108536, + [SMALL_STATE(2408)] = 108591, + [SMALL_STATE(2409)] = 108646, + [SMALL_STATE(2410)] = 108701, + [SMALL_STATE(2411)] = 108756, + [SMALL_STATE(2412)] = 108811, + [SMALL_STATE(2413)] = 108866, + [SMALL_STATE(2414)] = 108921, + [SMALL_STATE(2415)] = 108976, + [SMALL_STATE(2416)] = 109031, + [SMALL_STATE(2417)] = 109086, + [SMALL_STATE(2418)] = 109141, + [SMALL_STATE(2419)] = 109196, + [SMALL_STATE(2420)] = 109251, + [SMALL_STATE(2421)] = 109306, + [SMALL_STATE(2422)] = 109361, + [SMALL_STATE(2423)] = 109416, + [SMALL_STATE(2424)] = 109471, + [SMALL_STATE(2425)] = 109526, + [SMALL_STATE(2426)] = 109581, + [SMALL_STATE(2427)] = 109636, + [SMALL_STATE(2428)] = 109691, + [SMALL_STATE(2429)] = 109746, + [SMALL_STATE(2430)] = 109801, + [SMALL_STATE(2431)] = 109856, + [SMALL_STATE(2432)] = 109911, + [SMALL_STATE(2433)] = 109966, + [SMALL_STATE(2434)] = 110021, + [SMALL_STATE(2435)] = 110076, + [SMALL_STATE(2436)] = 110131, + [SMALL_STATE(2437)] = 110186, + [SMALL_STATE(2438)] = 110241, + [SMALL_STATE(2439)] = 110296, + [SMALL_STATE(2440)] = 110351, + [SMALL_STATE(2441)] = 110406, + [SMALL_STATE(2442)] = 110461, + [SMALL_STATE(2443)] = 110516, + [SMALL_STATE(2444)] = 110571, + [SMALL_STATE(2445)] = 110626, + [SMALL_STATE(2446)] = 110681, + [SMALL_STATE(2447)] = 110736, + [SMALL_STATE(2448)] = 110791, + [SMALL_STATE(2449)] = 110846, + [SMALL_STATE(2450)] = 110901, + [SMALL_STATE(2451)] = 110956, + [SMALL_STATE(2452)] = 111011, + [SMALL_STATE(2453)] = 111066, + [SMALL_STATE(2454)] = 111121, + [SMALL_STATE(2455)] = 111176, + [SMALL_STATE(2456)] = 111231, + [SMALL_STATE(2457)] = 111286, + [SMALL_STATE(2458)] = 111341, + [SMALL_STATE(2459)] = 111396, + [SMALL_STATE(2460)] = 111451, + [SMALL_STATE(2461)] = 111506, + [SMALL_STATE(2462)] = 111561, + [SMALL_STATE(2463)] = 111616, + [SMALL_STATE(2464)] = 111671, + [SMALL_STATE(2465)] = 111726, + [SMALL_STATE(2466)] = 111781, + [SMALL_STATE(2467)] = 111836, + [SMALL_STATE(2468)] = 111891, + [SMALL_STATE(2469)] = 111946, + [SMALL_STATE(2470)] = 112001, + [SMALL_STATE(2471)] = 112056, + [SMALL_STATE(2472)] = 112111, + [SMALL_STATE(2473)] = 112166, + [SMALL_STATE(2474)] = 112221, + [SMALL_STATE(2475)] = 112276, + [SMALL_STATE(2476)] = 112331, + [SMALL_STATE(2477)] = 112386, + [SMALL_STATE(2478)] = 112441, + [SMALL_STATE(2479)] = 112496, + [SMALL_STATE(2480)] = 112551, + [SMALL_STATE(2481)] = 112606, + [SMALL_STATE(2482)] = 112661, + [SMALL_STATE(2483)] = 112716, + [SMALL_STATE(2484)] = 112771, + [SMALL_STATE(2485)] = 112826, + [SMALL_STATE(2486)] = 112881, + [SMALL_STATE(2487)] = 112936, + [SMALL_STATE(2488)] = 112991, + [SMALL_STATE(2489)] = 113046, + [SMALL_STATE(2490)] = 113101, + [SMALL_STATE(2491)] = 113156, + [SMALL_STATE(2492)] = 113211, + [SMALL_STATE(2493)] = 113266, + [SMALL_STATE(2494)] = 113321, + [SMALL_STATE(2495)] = 113376, + [SMALL_STATE(2496)] = 113431, + [SMALL_STATE(2497)] = 113486, + [SMALL_STATE(2498)] = 113541, + [SMALL_STATE(2499)] = 113596, + [SMALL_STATE(2500)] = 113651, + [SMALL_STATE(2501)] = 113706, + [SMALL_STATE(2502)] = 113761, + [SMALL_STATE(2503)] = 113816, + [SMALL_STATE(2504)] = 113871, + [SMALL_STATE(2505)] = 113926, + [SMALL_STATE(2506)] = 113981, + [SMALL_STATE(2507)] = 114036, + [SMALL_STATE(2508)] = 114091, + [SMALL_STATE(2509)] = 114146, + [SMALL_STATE(2510)] = 114201, + [SMALL_STATE(2511)] = 114256, + [SMALL_STATE(2512)] = 114311, + [SMALL_STATE(2513)] = 114366, + [SMALL_STATE(2514)] = 114421, + [SMALL_STATE(2515)] = 114476, + [SMALL_STATE(2516)] = 114531, + [SMALL_STATE(2517)] = 114586, + [SMALL_STATE(2518)] = 114641, + [SMALL_STATE(2519)] = 114696, + [SMALL_STATE(2520)] = 114751, + [SMALL_STATE(2521)] = 114806, + [SMALL_STATE(2522)] = 114861, + [SMALL_STATE(2523)] = 114916, + [SMALL_STATE(2524)] = 114971, + [SMALL_STATE(2525)] = 115026, + [SMALL_STATE(2526)] = 115081, + [SMALL_STATE(2527)] = 115136, + [SMALL_STATE(2528)] = 115191, + [SMALL_STATE(2529)] = 115246, + [SMALL_STATE(2530)] = 115301, + [SMALL_STATE(2531)] = 115356, + [SMALL_STATE(2532)] = 115411, + [SMALL_STATE(2533)] = 115440, + [SMALL_STATE(2534)] = 115469, + [SMALL_STATE(2535)] = 115498, + [SMALL_STATE(2536)] = 115527, + [SMALL_STATE(2537)] = 115556, + [SMALL_STATE(2538)] = 115585, + [SMALL_STATE(2539)] = 115614, + [SMALL_STATE(2540)] = 115643, + [SMALL_STATE(2541)] = 115672, + [SMALL_STATE(2542)] = 115701, + [SMALL_STATE(2543)] = 115730, + [SMALL_STATE(2544)] = 115759, + [SMALL_STATE(2545)] = 115788, + [SMALL_STATE(2546)] = 115817, + [SMALL_STATE(2547)] = 115846, + [SMALL_STATE(2548)] = 115875, + [SMALL_STATE(2549)] = 115904, + [SMALL_STATE(2550)] = 115933, + [SMALL_STATE(2551)] = 115962, + [SMALL_STATE(2552)] = 115991, + [SMALL_STATE(2553)] = 116020, + [SMALL_STATE(2554)] = 116049, + [SMALL_STATE(2555)] = 116078, + [SMALL_STATE(2556)] = 116107, + [SMALL_STATE(2557)] = 116136, + [SMALL_STATE(2558)] = 116165, + [SMALL_STATE(2559)] = 116194, + [SMALL_STATE(2560)] = 116223, + [SMALL_STATE(2561)] = 116252, + [SMALL_STATE(2562)] = 116281, + [SMALL_STATE(2563)] = 116310, + [SMALL_STATE(2564)] = 116339, + [SMALL_STATE(2565)] = 116362, + [SMALL_STATE(2566)] = 116385, + [SMALL_STATE(2567)] = 116408, + [SMALL_STATE(2568)] = 116431, + [SMALL_STATE(2569)] = 116454, + [SMALL_STATE(2570)] = 116477, + [SMALL_STATE(2571)] = 116500, + [SMALL_STATE(2572)] = 116523, + [SMALL_STATE(2573)] = 116546, + [SMALL_STATE(2574)] = 116569, + [SMALL_STATE(2575)] = 116592, + [SMALL_STATE(2576)] = 116615, + [SMALL_STATE(2577)] = 116638, + [SMALL_STATE(2578)] = 116661, + [SMALL_STATE(2579)] = 116684, + [SMALL_STATE(2580)] = 116707, + [SMALL_STATE(2581)] = 116730, + [SMALL_STATE(2582)] = 116753, + [SMALL_STATE(2583)] = 116776, + [SMALL_STATE(2584)] = 116799, + [SMALL_STATE(2585)] = 116822, + [SMALL_STATE(2586)] = 116845, + [SMALL_STATE(2587)] = 116868, + [SMALL_STATE(2588)] = 116891, + [SMALL_STATE(2589)] = 116914, + [SMALL_STATE(2590)] = 116937, + [SMALL_STATE(2591)] = 116960, + [SMALL_STATE(2592)] = 116983, + [SMALL_STATE(2593)] = 117006, + [SMALL_STATE(2594)] = 117027, + [SMALL_STATE(2595)] = 117050, + [SMALL_STATE(2596)] = 117073, + [SMALL_STATE(2597)] = 117096, + [SMALL_STATE(2598)] = 117119, + [SMALL_STATE(2599)] = 117142, + [SMALL_STATE(2600)] = 117165, + [SMALL_STATE(2601)] = 117188, + [SMALL_STATE(2602)] = 117211, + [SMALL_STATE(2603)] = 117234, + [SMALL_STATE(2604)] = 117255, + [SMALL_STATE(2605)] = 117278, + [SMALL_STATE(2606)] = 117301, + [SMALL_STATE(2607)] = 117324, + [SMALL_STATE(2608)] = 117347, + [SMALL_STATE(2609)] = 117370, + [SMALL_STATE(2610)] = 117393, + [SMALL_STATE(2611)] = 117416, + [SMALL_STATE(2612)] = 117439, + [SMALL_STATE(2613)] = 117462, + [SMALL_STATE(2614)] = 117485, + [SMALL_STATE(2615)] = 117508, + [SMALL_STATE(2616)] = 117531, + [SMALL_STATE(2617)] = 117554, + [SMALL_STATE(2618)] = 117577, + [SMALL_STATE(2619)] = 117600, + [SMALL_STATE(2620)] = 117623, + [SMALL_STATE(2621)] = 117646, + [SMALL_STATE(2622)] = 117669, + [SMALL_STATE(2623)] = 117692, + [SMALL_STATE(2624)] = 117715, + [SMALL_STATE(2625)] = 117738, + [SMALL_STATE(2626)] = 117761, + [SMALL_STATE(2627)] = 117784, + [SMALL_STATE(2628)] = 117807, + [SMALL_STATE(2629)] = 117830, + [SMALL_STATE(2630)] = 117853, + [SMALL_STATE(2631)] = 117876, + [SMALL_STATE(2632)] = 117899, + [SMALL_STATE(2633)] = 117922, + [SMALL_STATE(2634)] = 117945, + [SMALL_STATE(2635)] = 117968, + [SMALL_STATE(2636)] = 117991, + [SMALL_STATE(2637)] = 118014, + [SMALL_STATE(2638)] = 118037, + [SMALL_STATE(2639)] = 118058, + [SMALL_STATE(2640)] = 118081, + [SMALL_STATE(2641)] = 118104, + [SMALL_STATE(2642)] = 118127, + [SMALL_STATE(2643)] = 118150, + [SMALL_STATE(2644)] = 118173, + [SMALL_STATE(2645)] = 118196, + [SMALL_STATE(2646)] = 118219, + [SMALL_STATE(2647)] = 118242, + [SMALL_STATE(2648)] = 118265, + [SMALL_STATE(2649)] = 118288, + [SMALL_STATE(2650)] = 118311, + [SMALL_STATE(2651)] = 118334, + [SMALL_STATE(2652)] = 118357, + [SMALL_STATE(2653)] = 118380, + [SMALL_STATE(2654)] = 118403, + [SMALL_STATE(2655)] = 118426, + [SMALL_STATE(2656)] = 118449, + [SMALL_STATE(2657)] = 118472, + [SMALL_STATE(2658)] = 118495, + [SMALL_STATE(2659)] = 118518, + [SMALL_STATE(2660)] = 118541, + [SMALL_STATE(2661)] = 118564, + [SMALL_STATE(2662)] = 118587, + [SMALL_STATE(2663)] = 118610, + [SMALL_STATE(2664)] = 118633, + [SMALL_STATE(2665)] = 118656, + [SMALL_STATE(2666)] = 118679, + [SMALL_STATE(2667)] = 118702, + [SMALL_STATE(2668)] = 118725, + [SMALL_STATE(2669)] = 118748, + [SMALL_STATE(2670)] = 118771, + [SMALL_STATE(2671)] = 118794, + [SMALL_STATE(2672)] = 118817, + [SMALL_STATE(2673)] = 118840, + [SMALL_STATE(2674)] = 118863, + [SMALL_STATE(2675)] = 118886, + [SMALL_STATE(2676)] = 118909, + [SMALL_STATE(2677)] = 118932, + [SMALL_STATE(2678)] = 118955, + [SMALL_STATE(2679)] = 118978, + [SMALL_STATE(2680)] = 119001, + [SMALL_STATE(2681)] = 119024, + [SMALL_STATE(2682)] = 119047, + [SMALL_STATE(2683)] = 119070, + [SMALL_STATE(2684)] = 119093, + [SMALL_STATE(2685)] = 119116, + [SMALL_STATE(2686)] = 119139, + [SMALL_STATE(2687)] = 119162, + [SMALL_STATE(2688)] = 119185, + [SMALL_STATE(2689)] = 119208, + [SMALL_STATE(2690)] = 119231, + [SMALL_STATE(2691)] = 119254, + [SMALL_STATE(2692)] = 119277, + [SMALL_STATE(2693)] = 119300, + [SMALL_STATE(2694)] = 119323, + [SMALL_STATE(2695)] = 119346, + [SMALL_STATE(2696)] = 119369, + [SMALL_STATE(2697)] = 119392, + [SMALL_STATE(2698)] = 119415, + [SMALL_STATE(2699)] = 119438, + [SMALL_STATE(2700)] = 119461, + [SMALL_STATE(2701)] = 119484, + [SMALL_STATE(2702)] = 119507, + [SMALL_STATE(2703)] = 119530, + [SMALL_STATE(2704)] = 119553, + [SMALL_STATE(2705)] = 119576, + [SMALL_STATE(2706)] = 119599, + [SMALL_STATE(2707)] = 119622, + [SMALL_STATE(2708)] = 119645, + [SMALL_STATE(2709)] = 119668, + [SMALL_STATE(2710)] = 119691, + [SMALL_STATE(2711)] = 119714, + [SMALL_STATE(2712)] = 119737, + [SMALL_STATE(2713)] = 119760, + [SMALL_STATE(2714)] = 119783, + [SMALL_STATE(2715)] = 119806, + [SMALL_STATE(2716)] = 119829, + [SMALL_STATE(2717)] = 119852, + [SMALL_STATE(2718)] = 119875, + [SMALL_STATE(2719)] = 119898, + [SMALL_STATE(2720)] = 119921, + [SMALL_STATE(2721)] = 119944, + [SMALL_STATE(2722)] = 119967, + [SMALL_STATE(2723)] = 119990, + [SMALL_STATE(2724)] = 120011, + [SMALL_STATE(2725)] = 120034, + [SMALL_STATE(2726)] = 120057, + [SMALL_STATE(2727)] = 120080, + [SMALL_STATE(2728)] = 120103, + [SMALL_STATE(2729)] = 120126, + [SMALL_STATE(2730)] = 120149, + [SMALL_STATE(2731)] = 120171, + [SMALL_STATE(2732)] = 120193, + [SMALL_STATE(2733)] = 120215, + [SMALL_STATE(2734)] = 120237, + [SMALL_STATE(2735)] = 120259, + [SMALL_STATE(2736)] = 120281, + [SMALL_STATE(2737)] = 120303, + [SMALL_STATE(2738)] = 120325, + [SMALL_STATE(2739)] = 120347, + [SMALL_STATE(2740)] = 120369, + [SMALL_STATE(2741)] = 120391, + [SMALL_STATE(2742)] = 120413, + [SMALL_STATE(2743)] = 120435, + [SMALL_STATE(2744)] = 120457, + [SMALL_STATE(2745)] = 120479, + [SMALL_STATE(2746)] = 120501, + [SMALL_STATE(2747)] = 120523, + [SMALL_STATE(2748)] = 120545, + [SMALL_STATE(2749)] = 120567, + [SMALL_STATE(2750)] = 120589, + [SMALL_STATE(2751)] = 120611, + [SMALL_STATE(2752)] = 120633, + [SMALL_STATE(2753)] = 120655, + [SMALL_STATE(2754)] = 120677, + [SMALL_STATE(2755)] = 120699, + [SMALL_STATE(2756)] = 120721, + [SMALL_STATE(2757)] = 120743, + [SMALL_STATE(2758)] = 120765, + [SMALL_STATE(2759)] = 120787, + [SMALL_STATE(2760)] = 120809, + [SMALL_STATE(2761)] = 120831, + [SMALL_STATE(2762)] = 120853, + [SMALL_STATE(2763)] = 120875, + [SMALL_STATE(2764)] = 120897, + [SMALL_STATE(2765)] = 120919, + [SMALL_STATE(2766)] = 120941, + [SMALL_STATE(2767)] = 120963, + [SMALL_STATE(2768)] = 120985, + [SMALL_STATE(2769)] = 121007, + [SMALL_STATE(2770)] = 121029, + [SMALL_STATE(2771)] = 121051, + [SMALL_STATE(2772)] = 121073, + [SMALL_STATE(2773)] = 121095, + [SMALL_STATE(2774)] = 121117, + [SMALL_STATE(2775)] = 121139, + [SMALL_STATE(2776)] = 121161, + [SMALL_STATE(2777)] = 121183, + [SMALL_STATE(2778)] = 121205, + [SMALL_STATE(2779)] = 121227, + [SMALL_STATE(2780)] = 121249, + [SMALL_STATE(2781)] = 121271, + [SMALL_STATE(2782)] = 121293, + [SMALL_STATE(2783)] = 121315, + [SMALL_STATE(2784)] = 121337, + [SMALL_STATE(2785)] = 121359, + [SMALL_STATE(2786)] = 121381, + [SMALL_STATE(2787)] = 121403, + [SMALL_STATE(2788)] = 121425, + [SMALL_STATE(2789)] = 121447, + [SMALL_STATE(2790)] = 121469, + [SMALL_STATE(2791)] = 121491, + [SMALL_STATE(2792)] = 121513, + [SMALL_STATE(2793)] = 121535, + [SMALL_STATE(2794)] = 121557, + [SMALL_STATE(2795)] = 121579, + [SMALL_STATE(2796)] = 121601, + [SMALL_STATE(2797)] = 121623, + [SMALL_STATE(2798)] = 121645, + [SMALL_STATE(2799)] = 121667, + [SMALL_STATE(2800)] = 121689, + [SMALL_STATE(2801)] = 121711, + [SMALL_STATE(2802)] = 121733, + [SMALL_STATE(2803)] = 121755, + [SMALL_STATE(2804)] = 121777, + [SMALL_STATE(2805)] = 121799, + [SMALL_STATE(2806)] = 121821, + [SMALL_STATE(2807)] = 121843, + [SMALL_STATE(2808)] = 121865, + [SMALL_STATE(2809)] = 121887, + [SMALL_STATE(2810)] = 121905, + [SMALL_STATE(2811)] = 121927, + [SMALL_STATE(2812)] = 121949, + [SMALL_STATE(2813)] = 121969, + [SMALL_STATE(2814)] = 121991, + [SMALL_STATE(2815)] = 122013, + [SMALL_STATE(2816)] = 122035, + [SMALL_STATE(2817)] = 122057, + [SMALL_STATE(2818)] = 122079, + [SMALL_STATE(2819)] = 122101, + [SMALL_STATE(2820)] = 122123, + [SMALL_STATE(2821)] = 122145, + [SMALL_STATE(2822)] = 122167, + [SMALL_STATE(2823)] = 122189, + [SMALL_STATE(2824)] = 122211, + [SMALL_STATE(2825)] = 122233, + [SMALL_STATE(2826)] = 122255, + [SMALL_STATE(2827)] = 122277, + [SMALL_STATE(2828)] = 122299, + [SMALL_STATE(2829)] = 122321, + [SMALL_STATE(2830)] = 122343, + [SMALL_STATE(2831)] = 122365, + [SMALL_STATE(2832)] = 122387, + [SMALL_STATE(2833)] = 122409, + [SMALL_STATE(2834)] = 122431, + [SMALL_STATE(2835)] = 122453, + [SMALL_STATE(2836)] = 122475, + [SMALL_STATE(2837)] = 122497, + [SMALL_STATE(2838)] = 122519, + [SMALL_STATE(2839)] = 122539, + [SMALL_STATE(2840)] = 122561, + [SMALL_STATE(2841)] = 122583, + [SMALL_STATE(2842)] = 122605, + [SMALL_STATE(2843)] = 122627, + [SMALL_STATE(2844)] = 122649, + [SMALL_STATE(2845)] = 122671, + [SMALL_STATE(2846)] = 122693, + [SMALL_STATE(2847)] = 122715, + [SMALL_STATE(2848)] = 122737, + [SMALL_STATE(2849)] = 122759, + [SMALL_STATE(2850)] = 122781, + [SMALL_STATE(2851)] = 122803, + [SMALL_STATE(2852)] = 122825, + [SMALL_STATE(2853)] = 122847, + [SMALL_STATE(2854)] = 122869, + [SMALL_STATE(2855)] = 122891, + [SMALL_STATE(2856)] = 122913, + [SMALL_STATE(2857)] = 122935, + [SMALL_STATE(2858)] = 122957, + [SMALL_STATE(2859)] = 122979, + [SMALL_STATE(2860)] = 123001, + [SMALL_STATE(2861)] = 123023, + [SMALL_STATE(2862)] = 123045, + [SMALL_STATE(2863)] = 123067, + [SMALL_STATE(2864)] = 123089, + [SMALL_STATE(2865)] = 123111, + [SMALL_STATE(2866)] = 123133, + [SMALL_STATE(2867)] = 123155, + [SMALL_STATE(2868)] = 123177, + [SMALL_STATE(2869)] = 123199, + [SMALL_STATE(2870)] = 123214, + [SMALL_STATE(2871)] = 123229, + [SMALL_STATE(2872)] = 123244, + [SMALL_STATE(2873)] = 123259, + [SMALL_STATE(2874)] = 123274, + [SMALL_STATE(2875)] = 123289, + [SMALL_STATE(2876)] = 123304, + [SMALL_STATE(2877)] = 123319, + [SMALL_STATE(2878)] = 123335, + [SMALL_STATE(2879)] = 123351, + [SMALL_STATE(2880)] = 123367, + [SMALL_STATE(2881)] = 123383, + [SMALL_STATE(2882)] = 123399, + [SMALL_STATE(2883)] = 123415, + [SMALL_STATE(2884)] = 123431, + [SMALL_STATE(2885)] = 123447, + [SMALL_STATE(2886)] = 123459, + [SMALL_STATE(2887)] = 123475, + [SMALL_STATE(2888)] = 123491, + [SMALL_STATE(2889)] = 123507, + [SMALL_STATE(2890)] = 123523, + [SMALL_STATE(2891)] = 123539, + [SMALL_STATE(2892)] = 123555, + [SMALL_STATE(2893)] = 123571, + [SMALL_STATE(2894)] = 123587, + [SMALL_STATE(2895)] = 123603, + [SMALL_STATE(2896)] = 123619, + [SMALL_STATE(2897)] = 123635, + [SMALL_STATE(2898)] = 123651, + [SMALL_STATE(2899)] = 123667, + [SMALL_STATE(2900)] = 123683, + [SMALL_STATE(2901)] = 123699, + [SMALL_STATE(2902)] = 123715, + [SMALL_STATE(2903)] = 123727, + [SMALL_STATE(2904)] = 123743, + [SMALL_STATE(2905)] = 123759, + [SMALL_STATE(2906)] = 123775, + [SMALL_STATE(2907)] = 123791, + [SMALL_STATE(2908)] = 123807, + [SMALL_STATE(2909)] = 123823, + [SMALL_STATE(2910)] = 123839, + [SMALL_STATE(2911)] = 123855, + [SMALL_STATE(2912)] = 123871, + [SMALL_STATE(2913)] = 123887, + [SMALL_STATE(2914)] = 123903, + [SMALL_STATE(2915)] = 123919, + [SMALL_STATE(2916)] = 123935, + [SMALL_STATE(2917)] = 123951, + [SMALL_STATE(2918)] = 123967, + [SMALL_STATE(2919)] = 123983, + [SMALL_STATE(2920)] = 123999, + [SMALL_STATE(2921)] = 124015, + [SMALL_STATE(2922)] = 124031, + [SMALL_STATE(2923)] = 124047, + [SMALL_STATE(2924)] = 124063, + [SMALL_STATE(2925)] = 124079, + [SMALL_STATE(2926)] = 124095, + [SMALL_STATE(2927)] = 124111, + [SMALL_STATE(2928)] = 124127, + [SMALL_STATE(2929)] = 124143, + [SMALL_STATE(2930)] = 124159, + [SMALL_STATE(2931)] = 124175, + [SMALL_STATE(2932)] = 124191, + [SMALL_STATE(2933)] = 124207, + [SMALL_STATE(2934)] = 124223, + [SMALL_STATE(2935)] = 124239, + [SMALL_STATE(2936)] = 124255, + [SMALL_STATE(2937)] = 124271, + [SMALL_STATE(2938)] = 124287, + [SMALL_STATE(2939)] = 124303, + [SMALL_STATE(2940)] = 124319, + [SMALL_STATE(2941)] = 124335, + [SMALL_STATE(2942)] = 124351, + [SMALL_STATE(2943)] = 124367, + [SMALL_STATE(2944)] = 124383, + [SMALL_STATE(2945)] = 124399, + [SMALL_STATE(2946)] = 124415, + [SMALL_STATE(2947)] = 124431, + [SMALL_STATE(2948)] = 124447, + [SMALL_STATE(2949)] = 124463, + [SMALL_STATE(2950)] = 124479, + [SMALL_STATE(2951)] = 124495, + [SMALL_STATE(2952)] = 124511, + [SMALL_STATE(2953)] = 124527, + [SMALL_STATE(2954)] = 124543, + [SMALL_STATE(2955)] = 124559, + [SMALL_STATE(2956)] = 124575, + [SMALL_STATE(2957)] = 124591, + [SMALL_STATE(2958)] = 124607, + [SMALL_STATE(2959)] = 124623, + [SMALL_STATE(2960)] = 124639, + [SMALL_STATE(2961)] = 124655, + [SMALL_STATE(2962)] = 124671, + [SMALL_STATE(2963)] = 124687, + [SMALL_STATE(2964)] = 124703, + [SMALL_STATE(2965)] = 124719, + [SMALL_STATE(2966)] = 124735, + [SMALL_STATE(2967)] = 124751, + [SMALL_STATE(2968)] = 124767, + [SMALL_STATE(2969)] = 124783, + [SMALL_STATE(2970)] = 124799, + [SMALL_STATE(2971)] = 124815, + [SMALL_STATE(2972)] = 124831, + [SMALL_STATE(2973)] = 124847, + [SMALL_STATE(2974)] = 124863, + [SMALL_STATE(2975)] = 124879, + [SMALL_STATE(2976)] = 124895, + [SMALL_STATE(2977)] = 124911, + [SMALL_STATE(2978)] = 124927, + [SMALL_STATE(2979)] = 124943, + [SMALL_STATE(2980)] = 124959, + [SMALL_STATE(2981)] = 124975, + [SMALL_STATE(2982)] = 124991, + [SMALL_STATE(2983)] = 125007, + [SMALL_STATE(2984)] = 125023, + [SMALL_STATE(2985)] = 125039, + [SMALL_STATE(2986)] = 125055, + [SMALL_STATE(2987)] = 125071, + [SMALL_STATE(2988)] = 125087, + [SMALL_STATE(2989)] = 125103, + [SMALL_STATE(2990)] = 125119, + [SMALL_STATE(2991)] = 125135, + [SMALL_STATE(2992)] = 125151, + [SMALL_STATE(2993)] = 125167, + [SMALL_STATE(2994)] = 125183, + [SMALL_STATE(2995)] = 125199, + [SMALL_STATE(2996)] = 125215, + [SMALL_STATE(2997)] = 125231, + [SMALL_STATE(2998)] = 125247, + [SMALL_STATE(2999)] = 125263, + [SMALL_STATE(3000)] = 125279, + [SMALL_STATE(3001)] = 125295, + [SMALL_STATE(3002)] = 125311, + [SMALL_STATE(3003)] = 125327, + [SMALL_STATE(3004)] = 125343, + [SMALL_STATE(3005)] = 125359, + [SMALL_STATE(3006)] = 125375, + [SMALL_STATE(3007)] = 125391, + [SMALL_STATE(3008)] = 125407, + [SMALL_STATE(3009)] = 125423, + [SMALL_STATE(3010)] = 125439, + [SMALL_STATE(3011)] = 125455, + [SMALL_STATE(3012)] = 125471, + [SMALL_STATE(3013)] = 125487, + [SMALL_STATE(3014)] = 125503, + [SMALL_STATE(3015)] = 125519, + [SMALL_STATE(3016)] = 125535, + [SMALL_STATE(3017)] = 125551, + [SMALL_STATE(3018)] = 125567, + [SMALL_STATE(3019)] = 125583, + [SMALL_STATE(3020)] = 125599, + [SMALL_STATE(3021)] = 125615, + [SMALL_STATE(3022)] = 125631, + [SMALL_STATE(3023)] = 125647, + [SMALL_STATE(3024)] = 125663, + [SMALL_STATE(3025)] = 125679, + [SMALL_STATE(3026)] = 125695, + [SMALL_STATE(3027)] = 125711, + [SMALL_STATE(3028)] = 125727, + [SMALL_STATE(3029)] = 125743, + [SMALL_STATE(3030)] = 125759, + [SMALL_STATE(3031)] = 125775, + [SMALL_STATE(3032)] = 125791, + [SMALL_STATE(3033)] = 125807, + [SMALL_STATE(3034)] = 125823, + [SMALL_STATE(3035)] = 125839, + [SMALL_STATE(3036)] = 125855, + [SMALL_STATE(3037)] = 125871, + [SMALL_STATE(3038)] = 125887, + [SMALL_STATE(3039)] = 125903, + [SMALL_STATE(3040)] = 125919, + [SMALL_STATE(3041)] = 125935, + [SMALL_STATE(3042)] = 125951, + [SMALL_STATE(3043)] = 125967, + [SMALL_STATE(3044)] = 125983, + [SMALL_STATE(3045)] = 125999, + [SMALL_STATE(3046)] = 126015, + [SMALL_STATE(3047)] = 126031, + [SMALL_STATE(3048)] = 126047, + [SMALL_STATE(3049)] = 126063, + [SMALL_STATE(3050)] = 126079, + [SMALL_STATE(3051)] = 126095, + [SMALL_STATE(3052)] = 126111, + [SMALL_STATE(3053)] = 126127, + [SMALL_STATE(3054)] = 126143, + [SMALL_STATE(3055)] = 126159, + [SMALL_STATE(3056)] = 126175, + [SMALL_STATE(3057)] = 126191, + [SMALL_STATE(3058)] = 126207, + [SMALL_STATE(3059)] = 126223, + [SMALL_STATE(3060)] = 126239, + [SMALL_STATE(3061)] = 126255, + [SMALL_STATE(3062)] = 126271, + [SMALL_STATE(3063)] = 126287, + [SMALL_STATE(3064)] = 126303, + [SMALL_STATE(3065)] = 126319, + [SMALL_STATE(3066)] = 126335, + [SMALL_STATE(3067)] = 126349, + [SMALL_STATE(3068)] = 126365, + [SMALL_STATE(3069)] = 126381, + [SMALL_STATE(3070)] = 126397, + [SMALL_STATE(3071)] = 126413, + [SMALL_STATE(3072)] = 126429, + [SMALL_STATE(3073)] = 126445, + [SMALL_STATE(3074)] = 126461, + [SMALL_STATE(3075)] = 126477, + [SMALL_STATE(3076)] = 126493, + [SMALL_STATE(3077)] = 126509, + [SMALL_STATE(3078)] = 126525, + [SMALL_STATE(3079)] = 126541, + [SMALL_STATE(3080)] = 126557, + [SMALL_STATE(3081)] = 126573, + [SMALL_STATE(3082)] = 126589, + [SMALL_STATE(3083)] = 126605, + [SMALL_STATE(3084)] = 126621, + [SMALL_STATE(3085)] = 126637, + [SMALL_STATE(3086)] = 126653, + [SMALL_STATE(3087)] = 126669, + [SMALL_STATE(3088)] = 126685, + [SMALL_STATE(3089)] = 126701, + [SMALL_STATE(3090)] = 126717, + [SMALL_STATE(3091)] = 126733, + [SMALL_STATE(3092)] = 126749, + [SMALL_STATE(3093)] = 126765, + [SMALL_STATE(3094)] = 126781, + [SMALL_STATE(3095)] = 126797, + [SMALL_STATE(3096)] = 126813, + [SMALL_STATE(3097)] = 126829, + [SMALL_STATE(3098)] = 126845, + [SMALL_STATE(3099)] = 126861, + [SMALL_STATE(3100)] = 126877, + [SMALL_STATE(3101)] = 126893, + [SMALL_STATE(3102)] = 126909, + [SMALL_STATE(3103)] = 126925, + [SMALL_STATE(3104)] = 126941, + [SMALL_STATE(3105)] = 126957, + [SMALL_STATE(3106)] = 126973, + [SMALL_STATE(3107)] = 126989, + [SMALL_STATE(3108)] = 127005, + [SMALL_STATE(3109)] = 127021, + [SMALL_STATE(3110)] = 127037, + [SMALL_STATE(3111)] = 127053, + [SMALL_STATE(3112)] = 127069, + [SMALL_STATE(3113)] = 127085, + [SMALL_STATE(3114)] = 127101, + [SMALL_STATE(3115)] = 127117, + [SMALL_STATE(3116)] = 127133, + [SMALL_STATE(3117)] = 127149, + [SMALL_STATE(3118)] = 127165, + [SMALL_STATE(3119)] = 127181, + [SMALL_STATE(3120)] = 127197, + [SMALL_STATE(3121)] = 127213, + [SMALL_STATE(3122)] = 127229, + [SMALL_STATE(3123)] = 127245, + [SMALL_STATE(3124)] = 127261, + [SMALL_STATE(3125)] = 127277, + [SMALL_STATE(3126)] = 127293, + [SMALL_STATE(3127)] = 127309, + [SMALL_STATE(3128)] = 127325, + [SMALL_STATE(3129)] = 127341, + [SMALL_STATE(3130)] = 127357, + [SMALL_STATE(3131)] = 127373, + [SMALL_STATE(3132)] = 127389, + [SMALL_STATE(3133)] = 127405, + [SMALL_STATE(3134)] = 127421, + [SMALL_STATE(3135)] = 127437, + [SMALL_STATE(3136)] = 127453, + [SMALL_STATE(3137)] = 127469, + [SMALL_STATE(3138)] = 127485, + [SMALL_STATE(3139)] = 127501, + [SMALL_STATE(3140)] = 127517, + [SMALL_STATE(3141)] = 127533, + [SMALL_STATE(3142)] = 127549, + [SMALL_STATE(3143)] = 127565, + [SMALL_STATE(3144)] = 127581, + [SMALL_STATE(3145)] = 127597, + [SMALL_STATE(3146)] = 127613, + [SMALL_STATE(3147)] = 127629, + [SMALL_STATE(3148)] = 127645, + [SMALL_STATE(3149)] = 127661, + [SMALL_STATE(3150)] = 127677, + [SMALL_STATE(3151)] = 127693, + [SMALL_STATE(3152)] = 127709, + [SMALL_STATE(3153)] = 127725, + [SMALL_STATE(3154)] = 127741, + [SMALL_STATE(3155)] = 127757, + [SMALL_STATE(3156)] = 127773, + [SMALL_STATE(3157)] = 127789, + [SMALL_STATE(3158)] = 127805, + [SMALL_STATE(3159)] = 127821, + [SMALL_STATE(3160)] = 127837, + [SMALL_STATE(3161)] = 127853, + [SMALL_STATE(3162)] = 127869, + [SMALL_STATE(3163)] = 127885, + [SMALL_STATE(3164)] = 127901, + [SMALL_STATE(3165)] = 127917, + [SMALL_STATE(3166)] = 127933, + [SMALL_STATE(3167)] = 127949, + [SMALL_STATE(3168)] = 127965, + [SMALL_STATE(3169)] = 127981, + [SMALL_STATE(3170)] = 127997, + [SMALL_STATE(3171)] = 128013, + [SMALL_STATE(3172)] = 128029, + [SMALL_STATE(3173)] = 128045, + [SMALL_STATE(3174)] = 128061, + [SMALL_STATE(3175)] = 128077, + [SMALL_STATE(3176)] = 128093, + [SMALL_STATE(3177)] = 128109, + [SMALL_STATE(3178)] = 128125, + [SMALL_STATE(3179)] = 128141, + [SMALL_STATE(3180)] = 128157, + [SMALL_STATE(3181)] = 128173, + [SMALL_STATE(3182)] = 128189, + [SMALL_STATE(3183)] = 128205, + [SMALL_STATE(3184)] = 128221, + [SMALL_STATE(3185)] = 128237, + [SMALL_STATE(3186)] = 128253, + [SMALL_STATE(3187)] = 128269, + [SMALL_STATE(3188)] = 128285, + [SMALL_STATE(3189)] = 128301, + [SMALL_STATE(3190)] = 128317, + [SMALL_STATE(3191)] = 128333, + [SMALL_STATE(3192)] = 128349, + [SMALL_STATE(3193)] = 128365, + [SMALL_STATE(3194)] = 128381, + [SMALL_STATE(3195)] = 128397, + [SMALL_STATE(3196)] = 128413, + [SMALL_STATE(3197)] = 128429, + [SMALL_STATE(3198)] = 128445, + [SMALL_STATE(3199)] = 128461, + [SMALL_STATE(3200)] = 128477, + [SMALL_STATE(3201)] = 128493, + [SMALL_STATE(3202)] = 128509, + [SMALL_STATE(3203)] = 128521, + [SMALL_STATE(3204)] = 128537, + [SMALL_STATE(3205)] = 128553, + [SMALL_STATE(3206)] = 128569, + [SMALL_STATE(3207)] = 128585, + [SMALL_STATE(3208)] = 128601, + [SMALL_STATE(3209)] = 128617, + [SMALL_STATE(3210)] = 128633, + [SMALL_STATE(3211)] = 128649, + [SMALL_STATE(3212)] = 128665, + [SMALL_STATE(3213)] = 128681, + [SMALL_STATE(3214)] = 128697, + [SMALL_STATE(3215)] = 128713, + [SMALL_STATE(3216)] = 128729, + [SMALL_STATE(3217)] = 128745, + [SMALL_STATE(3218)] = 128761, + [SMALL_STATE(3219)] = 128777, + [SMALL_STATE(3220)] = 128793, + [SMALL_STATE(3221)] = 128809, + [SMALL_STATE(3222)] = 128825, + [SMALL_STATE(3223)] = 128841, + [SMALL_STATE(3224)] = 128857, + [SMALL_STATE(3225)] = 128873, + [SMALL_STATE(3226)] = 128889, + [SMALL_STATE(3227)] = 128905, + [SMALL_STATE(3228)] = 128921, + [SMALL_STATE(3229)] = 128937, + [SMALL_STATE(3230)] = 128953, + [SMALL_STATE(3231)] = 128969, + [SMALL_STATE(3232)] = 128985, + [SMALL_STATE(3233)] = 129001, + [SMALL_STATE(3234)] = 129017, + [SMALL_STATE(3235)] = 129033, + [SMALL_STATE(3236)] = 129049, + [SMALL_STATE(3237)] = 129065, + [SMALL_STATE(3238)] = 129081, + [SMALL_STATE(3239)] = 129097, + [SMALL_STATE(3240)] = 129113, + [SMALL_STATE(3241)] = 129129, + [SMALL_STATE(3242)] = 129145, + [SMALL_STATE(3243)] = 129161, + [SMALL_STATE(3244)] = 129177, + [SMALL_STATE(3245)] = 129193, + [SMALL_STATE(3246)] = 129209, + [SMALL_STATE(3247)] = 129225, + [SMALL_STATE(3248)] = 129241, + [SMALL_STATE(3249)] = 129257, + [SMALL_STATE(3250)] = 129273, + [SMALL_STATE(3251)] = 129289, + [SMALL_STATE(3252)] = 129305, + [SMALL_STATE(3253)] = 129321, + [SMALL_STATE(3254)] = 129337, + [SMALL_STATE(3255)] = 129353, + [SMALL_STATE(3256)] = 129369, + [SMALL_STATE(3257)] = 129385, + [SMALL_STATE(3258)] = 129401, + [SMALL_STATE(3259)] = 129417, + [SMALL_STATE(3260)] = 129433, + [SMALL_STATE(3261)] = 129449, + [SMALL_STATE(3262)] = 129465, + [SMALL_STATE(3263)] = 129481, + [SMALL_STATE(3264)] = 129497, + [SMALL_STATE(3265)] = 129513, + [SMALL_STATE(3266)] = 129529, + [SMALL_STATE(3267)] = 129541, + [SMALL_STATE(3268)] = 129557, + [SMALL_STATE(3269)] = 129573, + [SMALL_STATE(3270)] = 129589, + [SMALL_STATE(3271)] = 129605, + [SMALL_STATE(3272)] = 129621, + [SMALL_STATE(3273)] = 129637, + [SMALL_STATE(3274)] = 129653, + [SMALL_STATE(3275)] = 129669, + [SMALL_STATE(3276)] = 129685, + [SMALL_STATE(3277)] = 129701, + [SMALL_STATE(3278)] = 129717, + [SMALL_STATE(3279)] = 129733, + [SMALL_STATE(3280)] = 129749, + [SMALL_STATE(3281)] = 129765, + [SMALL_STATE(3282)] = 129781, + [SMALL_STATE(3283)] = 129797, + [SMALL_STATE(3284)] = 129813, + [SMALL_STATE(3285)] = 129829, + [SMALL_STATE(3286)] = 129845, + [SMALL_STATE(3287)] = 129861, + [SMALL_STATE(3288)] = 129877, + [SMALL_STATE(3289)] = 129893, + [SMALL_STATE(3290)] = 129909, + [SMALL_STATE(3291)] = 129925, + [SMALL_STATE(3292)] = 129941, + [SMALL_STATE(3293)] = 129957, + [SMALL_STATE(3294)] = 129973, + [SMALL_STATE(3295)] = 129989, + [SMALL_STATE(3296)] = 130005, + [SMALL_STATE(3297)] = 130021, + [SMALL_STATE(3298)] = 130037, + [SMALL_STATE(3299)] = 130053, + [SMALL_STATE(3300)] = 130069, + [SMALL_STATE(3301)] = 130085, + [SMALL_STATE(3302)] = 130101, + [SMALL_STATE(3303)] = 130117, + [SMALL_STATE(3304)] = 130133, + [SMALL_STATE(3305)] = 130149, + [SMALL_STATE(3306)] = 130165, + [SMALL_STATE(3307)] = 130181, + [SMALL_STATE(3308)] = 130197, + [SMALL_STATE(3309)] = 130213, + [SMALL_STATE(3310)] = 130229, + [SMALL_STATE(3311)] = 130245, + [SMALL_STATE(3312)] = 130261, + [SMALL_STATE(3313)] = 130277, + [SMALL_STATE(3314)] = 130293, + [SMALL_STATE(3315)] = 130309, + [SMALL_STATE(3316)] = 130325, + [SMALL_STATE(3317)] = 130341, + [SMALL_STATE(3318)] = 130357, + [SMALL_STATE(3319)] = 130373, + [SMALL_STATE(3320)] = 130389, + [SMALL_STATE(3321)] = 130405, + [SMALL_STATE(3322)] = 130421, + [SMALL_STATE(3323)] = 130437, + [SMALL_STATE(3324)] = 130453, + [SMALL_STATE(3325)] = 130469, + [SMALL_STATE(3326)] = 130485, + [SMALL_STATE(3327)] = 130501, + [SMALL_STATE(3328)] = 130517, + [SMALL_STATE(3329)] = 130533, + [SMALL_STATE(3330)] = 130549, + [SMALL_STATE(3331)] = 130565, + [SMALL_STATE(3332)] = 130581, + [SMALL_STATE(3333)] = 130597, + [SMALL_STATE(3334)] = 130613, + [SMALL_STATE(3335)] = 130629, + [SMALL_STATE(3336)] = 130645, + [SMALL_STATE(3337)] = 130661, + [SMALL_STATE(3338)] = 130677, + [SMALL_STATE(3339)] = 130693, + [SMALL_STATE(3340)] = 130709, + [SMALL_STATE(3341)] = 130725, + [SMALL_STATE(3342)] = 130741, + [SMALL_STATE(3343)] = 130757, + [SMALL_STATE(3344)] = 130773, + [SMALL_STATE(3345)] = 130789, + [SMALL_STATE(3346)] = 130805, + [SMALL_STATE(3347)] = 130821, + [SMALL_STATE(3348)] = 130837, + [SMALL_STATE(3349)] = 130853, + [SMALL_STATE(3350)] = 130869, + [SMALL_STATE(3351)] = 130885, + [SMALL_STATE(3352)] = 130901, + [SMALL_STATE(3353)] = 130917, + [SMALL_STATE(3354)] = 130933, + [SMALL_STATE(3355)] = 130949, + [SMALL_STATE(3356)] = 130965, + [SMALL_STATE(3357)] = 130981, + [SMALL_STATE(3358)] = 130997, + [SMALL_STATE(3359)] = 131013, + [SMALL_STATE(3360)] = 131029, + [SMALL_STATE(3361)] = 131045, + [SMALL_STATE(3362)] = 131061, + [SMALL_STATE(3363)] = 131077, + [SMALL_STATE(3364)] = 131093, + [SMALL_STATE(3365)] = 131109, + [SMALL_STATE(3366)] = 131125, + [SMALL_STATE(3367)] = 131141, + [SMALL_STATE(3368)] = 131157, + [SMALL_STATE(3369)] = 131173, + [SMALL_STATE(3370)] = 131189, + [SMALL_STATE(3371)] = 131205, + [SMALL_STATE(3372)] = 131221, + [SMALL_STATE(3373)] = 131237, + [SMALL_STATE(3374)] = 131253, + [SMALL_STATE(3375)] = 131269, + [SMALL_STATE(3376)] = 131285, + [SMALL_STATE(3377)] = 131301, + [SMALL_STATE(3378)] = 131317, + [SMALL_STATE(3379)] = 131333, + [SMALL_STATE(3380)] = 131349, + [SMALL_STATE(3381)] = 131365, + [SMALL_STATE(3382)] = 131381, + [SMALL_STATE(3383)] = 131397, + [SMALL_STATE(3384)] = 131413, + [SMALL_STATE(3385)] = 131429, + [SMALL_STATE(3386)] = 131445, + [SMALL_STATE(3387)] = 131461, + [SMALL_STATE(3388)] = 131477, + [SMALL_STATE(3389)] = 131493, + [SMALL_STATE(3390)] = 131509, + [SMALL_STATE(3391)] = 131525, + [SMALL_STATE(3392)] = 131541, + [SMALL_STATE(3393)] = 131557, + [SMALL_STATE(3394)] = 131573, + [SMALL_STATE(3395)] = 131589, + [SMALL_STATE(3396)] = 131605, + [SMALL_STATE(3397)] = 131621, + [SMALL_STATE(3398)] = 131637, + [SMALL_STATE(3399)] = 131653, + [SMALL_STATE(3400)] = 131667, + [SMALL_STATE(3401)] = 131683, + [SMALL_STATE(3402)] = 131699, + [SMALL_STATE(3403)] = 131715, + [SMALL_STATE(3404)] = 131731, + [SMALL_STATE(3405)] = 131747, + [SMALL_STATE(3406)] = 131763, + [SMALL_STATE(3407)] = 131779, + [SMALL_STATE(3408)] = 131795, + [SMALL_STATE(3409)] = 131811, + [SMALL_STATE(3410)] = 131827, + [SMALL_STATE(3411)] = 131843, + [SMALL_STATE(3412)] = 131859, + [SMALL_STATE(3413)] = 131875, + [SMALL_STATE(3414)] = 131891, + [SMALL_STATE(3415)] = 131907, + [SMALL_STATE(3416)] = 131923, + [SMALL_STATE(3417)] = 131939, + [SMALL_STATE(3418)] = 131955, + [SMALL_STATE(3419)] = 131971, + [SMALL_STATE(3420)] = 131987, + [SMALL_STATE(3421)] = 132003, + [SMALL_STATE(3422)] = 132019, + [SMALL_STATE(3423)] = 132035, + [SMALL_STATE(3424)] = 132051, + [SMALL_STATE(3425)] = 132067, + [SMALL_STATE(3426)] = 132083, + [SMALL_STATE(3427)] = 132099, + [SMALL_STATE(3428)] = 132115, + [SMALL_STATE(3429)] = 132131, + [SMALL_STATE(3430)] = 132147, + [SMALL_STATE(3431)] = 132163, + [SMALL_STATE(3432)] = 132179, + [SMALL_STATE(3433)] = 132195, + [SMALL_STATE(3434)] = 132211, + [SMALL_STATE(3435)] = 132227, + [SMALL_STATE(3436)] = 132243, + [SMALL_STATE(3437)] = 132259, + [SMALL_STATE(3438)] = 132275, + [SMALL_STATE(3439)] = 132291, + [SMALL_STATE(3440)] = 132307, + [SMALL_STATE(3441)] = 132323, + [SMALL_STATE(3442)] = 132339, + [SMALL_STATE(3443)] = 132355, + [SMALL_STATE(3444)] = 132371, + [SMALL_STATE(3445)] = 132387, + [SMALL_STATE(3446)] = 132403, + [SMALL_STATE(3447)] = 132419, + [SMALL_STATE(3448)] = 132435, + [SMALL_STATE(3449)] = 132451, + [SMALL_STATE(3450)] = 132467, + [SMALL_STATE(3451)] = 132483, + [SMALL_STATE(3452)] = 132499, + [SMALL_STATE(3453)] = 132515, + [SMALL_STATE(3454)] = 132531, + [SMALL_STATE(3455)] = 132547, + [SMALL_STATE(3456)] = 132563, + [SMALL_STATE(3457)] = 132579, + [SMALL_STATE(3458)] = 132595, + [SMALL_STATE(3459)] = 132611, + [SMALL_STATE(3460)] = 132627, + [SMALL_STATE(3461)] = 132643, + [SMALL_STATE(3462)] = 132659, + [SMALL_STATE(3463)] = 132675, + [SMALL_STATE(3464)] = 132691, + [SMALL_STATE(3465)] = 132707, + [SMALL_STATE(3466)] = 132723, + [SMALL_STATE(3467)] = 132739, + [SMALL_STATE(3468)] = 132755, + [SMALL_STATE(3469)] = 132771, + [SMALL_STATE(3470)] = 132787, + [SMALL_STATE(3471)] = 132803, + [SMALL_STATE(3472)] = 132819, + [SMALL_STATE(3473)] = 132835, + [SMALL_STATE(3474)] = 132851, + [SMALL_STATE(3475)] = 132867, + [SMALL_STATE(3476)] = 132883, + [SMALL_STATE(3477)] = 132899, + [SMALL_STATE(3478)] = 132915, + [SMALL_STATE(3479)] = 132931, + [SMALL_STATE(3480)] = 132947, + [SMALL_STATE(3481)] = 132963, + [SMALL_STATE(3482)] = 132979, + [SMALL_STATE(3483)] = 132995, + [SMALL_STATE(3484)] = 133011, + [SMALL_STATE(3485)] = 133027, + [SMALL_STATE(3486)] = 133043, + [SMALL_STATE(3487)] = 133059, + [SMALL_STATE(3488)] = 133075, + [SMALL_STATE(3489)] = 133091, + [SMALL_STATE(3490)] = 133107, + [SMALL_STATE(3491)] = 133123, + [SMALL_STATE(3492)] = 133139, + [SMALL_STATE(3493)] = 133155, + [SMALL_STATE(3494)] = 133171, + [SMALL_STATE(3495)] = 133187, + [SMALL_STATE(3496)] = 133203, + [SMALL_STATE(3497)] = 133219, + [SMALL_STATE(3498)] = 133235, + [SMALL_STATE(3499)] = 133251, + [SMALL_STATE(3500)] = 133267, + [SMALL_STATE(3501)] = 133283, + [SMALL_STATE(3502)] = 133299, + [SMALL_STATE(3503)] = 133315, + [SMALL_STATE(3504)] = 133331, + [SMALL_STATE(3505)] = 133347, + [SMALL_STATE(3506)] = 133363, + [SMALL_STATE(3507)] = 133379, + [SMALL_STATE(3508)] = 133395, + [SMALL_STATE(3509)] = 133411, + [SMALL_STATE(3510)] = 133427, + [SMALL_STATE(3511)] = 133443, + [SMALL_STATE(3512)] = 133459, + [SMALL_STATE(3513)] = 133475, + [SMALL_STATE(3514)] = 133491, + [SMALL_STATE(3515)] = 133507, + [SMALL_STATE(3516)] = 133523, + [SMALL_STATE(3517)] = 133539, + [SMALL_STATE(3518)] = 133555, + [SMALL_STATE(3519)] = 133571, + [SMALL_STATE(3520)] = 133587, + [SMALL_STATE(3521)] = 133603, + [SMALL_STATE(3522)] = 133619, + [SMALL_STATE(3523)] = 133635, + [SMALL_STATE(3524)] = 133651, + [SMALL_STATE(3525)] = 133667, + [SMALL_STATE(3526)] = 133683, + [SMALL_STATE(3527)] = 133699, + [SMALL_STATE(3528)] = 133715, + [SMALL_STATE(3529)] = 133731, + [SMALL_STATE(3530)] = 133747, + [SMALL_STATE(3531)] = 133763, + [SMALL_STATE(3532)] = 133779, + [SMALL_STATE(3533)] = 133795, + [SMALL_STATE(3534)] = 133811, + [SMALL_STATE(3535)] = 133827, + [SMALL_STATE(3536)] = 133843, + [SMALL_STATE(3537)] = 133859, + [SMALL_STATE(3538)] = 133875, + [SMALL_STATE(3539)] = 133891, + [SMALL_STATE(3540)] = 133907, + [SMALL_STATE(3541)] = 133923, + [SMALL_STATE(3542)] = 133939, + [SMALL_STATE(3543)] = 133955, + [SMALL_STATE(3544)] = 133971, + [SMALL_STATE(3545)] = 133987, + [SMALL_STATE(3546)] = 134003, + [SMALL_STATE(3547)] = 134019, + [SMALL_STATE(3548)] = 134035, + [SMALL_STATE(3549)] = 134051, + [SMALL_STATE(3550)] = 134067, + [SMALL_STATE(3551)] = 134083, + [SMALL_STATE(3552)] = 134099, + [SMALL_STATE(3553)] = 134115, + [SMALL_STATE(3554)] = 134131, + [SMALL_STATE(3555)] = 134147, + [SMALL_STATE(3556)] = 134163, + [SMALL_STATE(3557)] = 134179, + [SMALL_STATE(3558)] = 134195, + [SMALL_STATE(3559)] = 134211, + [SMALL_STATE(3560)] = 134227, + [SMALL_STATE(3561)] = 134243, + [SMALL_STATE(3562)] = 134259, + [SMALL_STATE(3563)] = 134275, + [SMALL_STATE(3564)] = 134291, + [SMALL_STATE(3565)] = 134307, + [SMALL_STATE(3566)] = 134323, + [SMALL_STATE(3567)] = 134339, + [SMALL_STATE(3568)] = 134355, + [SMALL_STATE(3569)] = 134371, + [SMALL_STATE(3570)] = 134387, + [SMALL_STATE(3571)] = 134403, + [SMALL_STATE(3572)] = 134419, + [SMALL_STATE(3573)] = 134435, + [SMALL_STATE(3574)] = 134451, + [SMALL_STATE(3575)] = 134467, + [SMALL_STATE(3576)] = 134483, + [SMALL_STATE(3577)] = 134499, + [SMALL_STATE(3578)] = 134515, + [SMALL_STATE(3579)] = 134531, + [SMALL_STATE(3580)] = 134547, + [SMALL_STATE(3581)] = 134563, + [SMALL_STATE(3582)] = 134579, + [SMALL_STATE(3583)] = 134595, + [SMALL_STATE(3584)] = 134611, + [SMALL_STATE(3585)] = 134627, + [SMALL_STATE(3586)] = 134643, + [SMALL_STATE(3587)] = 134659, + [SMALL_STATE(3588)] = 134675, + [SMALL_STATE(3589)] = 134691, + [SMALL_STATE(3590)] = 134707, + [SMALL_STATE(3591)] = 134723, + [SMALL_STATE(3592)] = 134739, + [SMALL_STATE(3593)] = 134755, + [SMALL_STATE(3594)] = 134771, + [SMALL_STATE(3595)] = 134787, + [SMALL_STATE(3596)] = 134803, + [SMALL_STATE(3597)] = 134819, + [SMALL_STATE(3598)] = 134835, + [SMALL_STATE(3599)] = 134851, + [SMALL_STATE(3600)] = 134867, + [SMALL_STATE(3601)] = 134883, + [SMALL_STATE(3602)] = 134899, + [SMALL_STATE(3603)] = 134915, + [SMALL_STATE(3604)] = 134931, + [SMALL_STATE(3605)] = 134947, + [SMALL_STATE(3606)] = 134963, + [SMALL_STATE(3607)] = 134979, + [SMALL_STATE(3608)] = 134995, + [SMALL_STATE(3609)] = 135011, + [SMALL_STATE(3610)] = 135027, + [SMALL_STATE(3611)] = 135043, + [SMALL_STATE(3612)] = 135059, + [SMALL_STATE(3613)] = 135075, + [SMALL_STATE(3614)] = 135091, + [SMALL_STATE(3615)] = 135107, + [SMALL_STATE(3616)] = 135123, + [SMALL_STATE(3617)] = 135139, + [SMALL_STATE(3618)] = 135155, + [SMALL_STATE(3619)] = 135171, + [SMALL_STATE(3620)] = 135187, + [SMALL_STATE(3621)] = 135203, + [SMALL_STATE(3622)] = 135219, + [SMALL_STATE(3623)] = 135235, + [SMALL_STATE(3624)] = 135251, + [SMALL_STATE(3625)] = 135267, + [SMALL_STATE(3626)] = 135283, + [SMALL_STATE(3627)] = 135299, + [SMALL_STATE(3628)] = 135315, + [SMALL_STATE(3629)] = 135331, + [SMALL_STATE(3630)] = 135347, + [SMALL_STATE(3631)] = 135363, + [SMALL_STATE(3632)] = 135379, + [SMALL_STATE(3633)] = 135395, + [SMALL_STATE(3634)] = 135411, + [SMALL_STATE(3635)] = 135427, + [SMALL_STATE(3636)] = 135443, + [SMALL_STATE(3637)] = 135459, + [SMALL_STATE(3638)] = 135475, + [SMALL_STATE(3639)] = 135491, + [SMALL_STATE(3640)] = 135507, + [SMALL_STATE(3641)] = 135523, + [SMALL_STATE(3642)] = 135539, + [SMALL_STATE(3643)] = 135555, + [SMALL_STATE(3644)] = 135571, + [SMALL_STATE(3645)] = 135587, + [SMALL_STATE(3646)] = 135603, + [SMALL_STATE(3647)] = 135619, + [SMALL_STATE(3648)] = 135635, + [SMALL_STATE(3649)] = 135651, + [SMALL_STATE(3650)] = 135667, + [SMALL_STATE(3651)] = 135683, + [SMALL_STATE(3652)] = 135699, + [SMALL_STATE(3653)] = 135715, + [SMALL_STATE(3654)] = 135731, + [SMALL_STATE(3655)] = 135747, + [SMALL_STATE(3656)] = 135763, + [SMALL_STATE(3657)] = 135779, + [SMALL_STATE(3658)] = 135795, + [SMALL_STATE(3659)] = 135811, + [SMALL_STATE(3660)] = 135827, + [SMALL_STATE(3661)] = 135843, + [SMALL_STATE(3662)] = 135859, + [SMALL_STATE(3663)] = 135875, + [SMALL_STATE(3664)] = 135891, + [SMALL_STATE(3665)] = 135907, + [SMALL_STATE(3666)] = 135923, + [SMALL_STATE(3667)] = 135939, + [SMALL_STATE(3668)] = 135955, + [SMALL_STATE(3669)] = 135971, + [SMALL_STATE(3670)] = 135987, + [SMALL_STATE(3671)] = 136003, + [SMALL_STATE(3672)] = 136019, + [SMALL_STATE(3673)] = 136035, + [SMALL_STATE(3674)] = 136051, + [SMALL_STATE(3675)] = 136067, + [SMALL_STATE(3676)] = 136083, + [SMALL_STATE(3677)] = 136099, + [SMALL_STATE(3678)] = 136115, + [SMALL_STATE(3679)] = 136131, + [SMALL_STATE(3680)] = 136147, + [SMALL_STATE(3681)] = 136163, + [SMALL_STATE(3682)] = 136179, + [SMALL_STATE(3683)] = 136195, + [SMALL_STATE(3684)] = 136211, + [SMALL_STATE(3685)] = 136224, + [SMALL_STATE(3686)] = 136237, + [SMALL_STATE(3687)] = 136250, + [SMALL_STATE(3688)] = 136263, + [SMALL_STATE(3689)] = 136276, + [SMALL_STATE(3690)] = 136289, + [SMALL_STATE(3691)] = 136302, + [SMALL_STATE(3692)] = 136315, + [SMALL_STATE(3693)] = 136328, + [SMALL_STATE(3694)] = 136341, + [SMALL_STATE(3695)] = 136354, + [SMALL_STATE(3696)] = 136367, + [SMALL_STATE(3697)] = 136380, + [SMALL_STATE(3698)] = 136393, + [SMALL_STATE(3699)] = 136406, + [SMALL_STATE(3700)] = 136419, + [SMALL_STATE(3701)] = 136432, + [SMALL_STATE(3702)] = 136445, + [SMALL_STATE(3703)] = 136458, + [SMALL_STATE(3704)] = 136471, + [SMALL_STATE(3705)] = 136484, + [SMALL_STATE(3706)] = 136497, + [SMALL_STATE(3707)] = 136510, + [SMALL_STATE(3708)] = 136523, + [SMALL_STATE(3709)] = 136536, + [SMALL_STATE(3710)] = 136549, + [SMALL_STATE(3711)] = 136562, + [SMALL_STATE(3712)] = 136575, + [SMALL_STATE(3713)] = 136588, + [SMALL_STATE(3714)] = 136601, + [SMALL_STATE(3715)] = 136614, + [SMALL_STATE(3716)] = 136627, + [SMALL_STATE(3717)] = 136638, + [SMALL_STATE(3718)] = 136651, + [SMALL_STATE(3719)] = 136664, + [SMALL_STATE(3720)] = 136677, + [SMALL_STATE(3721)] = 136688, + [SMALL_STATE(3722)] = 136701, + [SMALL_STATE(3723)] = 136714, + [SMALL_STATE(3724)] = 136727, + [SMALL_STATE(3725)] = 136740, + [SMALL_STATE(3726)] = 136753, + [SMALL_STATE(3727)] = 136766, + [SMALL_STATE(3728)] = 136779, + [SMALL_STATE(3729)] = 136792, + [SMALL_STATE(3730)] = 136805, + [SMALL_STATE(3731)] = 136818, + [SMALL_STATE(3732)] = 136831, + [SMALL_STATE(3733)] = 136844, + [SMALL_STATE(3734)] = 136857, + [SMALL_STATE(3735)] = 136870, + [SMALL_STATE(3736)] = 136883, + [SMALL_STATE(3737)] = 136896, + [SMALL_STATE(3738)] = 136909, + [SMALL_STATE(3739)] = 136922, + [SMALL_STATE(3740)] = 136935, + [SMALL_STATE(3741)] = 136948, + [SMALL_STATE(3742)] = 136959, + [SMALL_STATE(3743)] = 136972, + [SMALL_STATE(3744)] = 136985, + [SMALL_STATE(3745)] = 136998, + [SMALL_STATE(3746)] = 137009, + [SMALL_STATE(3747)] = 137022, + [SMALL_STATE(3748)] = 137035, + [SMALL_STATE(3749)] = 137048, + [SMALL_STATE(3750)] = 137061, + [SMALL_STATE(3751)] = 137074, + [SMALL_STATE(3752)] = 137087, + [SMALL_STATE(3753)] = 137100, + [SMALL_STATE(3754)] = 137113, + [SMALL_STATE(3755)] = 137126, + [SMALL_STATE(3756)] = 137139, + [SMALL_STATE(3757)] = 137152, + [SMALL_STATE(3758)] = 137165, + [SMALL_STATE(3759)] = 137178, + [SMALL_STATE(3760)] = 137189, + [SMALL_STATE(3761)] = 137200, + [SMALL_STATE(3762)] = 137213, + [SMALL_STATE(3763)] = 137226, + [SMALL_STATE(3764)] = 137239, + [SMALL_STATE(3765)] = 137252, + [SMALL_STATE(3766)] = 137265, + [SMALL_STATE(3767)] = 137278, + [SMALL_STATE(3768)] = 137291, + [SMALL_STATE(3769)] = 137304, + [SMALL_STATE(3770)] = 137317, + [SMALL_STATE(3771)] = 137330, + [SMALL_STATE(3772)] = 137343, + [SMALL_STATE(3773)] = 137356, + [SMALL_STATE(3774)] = 137369, + [SMALL_STATE(3775)] = 137382, + [SMALL_STATE(3776)] = 137395, + [SMALL_STATE(3777)] = 137408, + [SMALL_STATE(3778)] = 137421, + [SMALL_STATE(3779)] = 137434, + [SMALL_STATE(3780)] = 137447, + [SMALL_STATE(3781)] = 137460, + [SMALL_STATE(3782)] = 137471, + [SMALL_STATE(3783)] = 137484, + [SMALL_STATE(3784)] = 137497, + [SMALL_STATE(3785)] = 137510, + [SMALL_STATE(3786)] = 137523, + [SMALL_STATE(3787)] = 137534, + [SMALL_STATE(3788)] = 137547, + [SMALL_STATE(3789)] = 137557, + [SMALL_STATE(3790)] = 137567, + [SMALL_STATE(3791)] = 137577, + [SMALL_STATE(3792)] = 137587, + [SMALL_STATE(3793)] = 137597, + [SMALL_STATE(3794)] = 137607, + [SMALL_STATE(3795)] = 137617, + [SMALL_STATE(3796)] = 137627, + [SMALL_STATE(3797)] = 137637, + [SMALL_STATE(3798)] = 137647, + [SMALL_STATE(3799)] = 137657, + [SMALL_STATE(3800)] = 137667, + [SMALL_STATE(3801)] = 137677, + [SMALL_STATE(3802)] = 137687, + [SMALL_STATE(3803)] = 137697, + [SMALL_STATE(3804)] = 137707, + [SMALL_STATE(3805)] = 137717, + [SMALL_STATE(3806)] = 137727, + [SMALL_STATE(3807)] = 137737, + [SMALL_STATE(3808)] = 137747, + [SMALL_STATE(3809)] = 137757, + [SMALL_STATE(3810)] = 137767, + [SMALL_STATE(3811)] = 137777, + [SMALL_STATE(3812)] = 137787, + [SMALL_STATE(3813)] = 137797, + [SMALL_STATE(3814)] = 137807, + [SMALL_STATE(3815)] = 137817, + [SMALL_STATE(3816)] = 137827, + [SMALL_STATE(3817)] = 137837, + [SMALL_STATE(3818)] = 137847, + [SMALL_STATE(3819)] = 137857, + [SMALL_STATE(3820)] = 137867, + [SMALL_STATE(3821)] = 137877, + [SMALL_STATE(3822)] = 137887, + [SMALL_STATE(3823)] = 137897, + [SMALL_STATE(3824)] = 137907, + [SMALL_STATE(3825)] = 137917, + [SMALL_STATE(3826)] = 137927, + [SMALL_STATE(3827)] = 137937, + [SMALL_STATE(3828)] = 137947, + [SMALL_STATE(3829)] = 137957, + [SMALL_STATE(3830)] = 137967, + [SMALL_STATE(3831)] = 137977, + [SMALL_STATE(3832)] = 137987, + [SMALL_STATE(3833)] = 137997, + [SMALL_STATE(3834)] = 138007, + [SMALL_STATE(3835)] = 138017, + [SMALL_STATE(3836)] = 138027, + [SMALL_STATE(3837)] = 138037, + [SMALL_STATE(3838)] = 138047, + [SMALL_STATE(3839)] = 138057, + [SMALL_STATE(3840)] = 138067, + [SMALL_STATE(3841)] = 138077, + [SMALL_STATE(3842)] = 138087, + [SMALL_STATE(3843)] = 138097, + [SMALL_STATE(3844)] = 138107, + [SMALL_STATE(3845)] = 138117, + [SMALL_STATE(3846)] = 138127, + [SMALL_STATE(3847)] = 138137, + [SMALL_STATE(3848)] = 138147, + [SMALL_STATE(3849)] = 138157, + [SMALL_STATE(3850)] = 138167, + [SMALL_STATE(3851)] = 138177, + [SMALL_STATE(3852)] = 138187, + [SMALL_STATE(3853)] = 138197, + [SMALL_STATE(3854)] = 138207, + [SMALL_STATE(3855)] = 138217, + [SMALL_STATE(3856)] = 138227, + [SMALL_STATE(3857)] = 138237, + [SMALL_STATE(3858)] = 138247, + [SMALL_STATE(3859)] = 138257, + [SMALL_STATE(3860)] = 138267, + [SMALL_STATE(3861)] = 138277, + [SMALL_STATE(3862)] = 138287, + [SMALL_STATE(3863)] = 138297, + [SMALL_STATE(3864)] = 138307, + [SMALL_STATE(3865)] = 138317, + [SMALL_STATE(3866)] = 138327, + [SMALL_STATE(3867)] = 138337, + [SMALL_STATE(3868)] = 138347, + [SMALL_STATE(3869)] = 138357, + [SMALL_STATE(3870)] = 138367, + [SMALL_STATE(3871)] = 138377, + [SMALL_STATE(3872)] = 138387, + [SMALL_STATE(3873)] = 138397, + [SMALL_STATE(3874)] = 138407, + [SMALL_STATE(3875)] = 138417, + [SMALL_STATE(3876)] = 138427, + [SMALL_STATE(3877)] = 138437, + [SMALL_STATE(3878)] = 138447, + [SMALL_STATE(3879)] = 138457, + [SMALL_STATE(3880)] = 138467, + [SMALL_STATE(3881)] = 138477, + [SMALL_STATE(3882)] = 138487, + [SMALL_STATE(3883)] = 138497, + [SMALL_STATE(3884)] = 138507, + [SMALL_STATE(3885)] = 138517, + [SMALL_STATE(3886)] = 138527, + [SMALL_STATE(3887)] = 138537, + [SMALL_STATE(3888)] = 138547, + [SMALL_STATE(3889)] = 138557, + [SMALL_STATE(3890)] = 138567, + [SMALL_STATE(3891)] = 138577, + [SMALL_STATE(3892)] = 138587, + [SMALL_STATE(3893)] = 138597, + [SMALL_STATE(3894)] = 138607, + [SMALL_STATE(3895)] = 138617, + [SMALL_STATE(3896)] = 138627, + [SMALL_STATE(3897)] = 138637, + [SMALL_STATE(3898)] = 138647, + [SMALL_STATE(3899)] = 138657, + [SMALL_STATE(3900)] = 138667, + [SMALL_STATE(3901)] = 138677, + [SMALL_STATE(3902)] = 138687, + [SMALL_STATE(3903)] = 138697, + [SMALL_STATE(3904)] = 138707, + [SMALL_STATE(3905)] = 138717, + [SMALL_STATE(3906)] = 138727, + [SMALL_STATE(3907)] = 138737, + [SMALL_STATE(3908)] = 138747, + [SMALL_STATE(3909)] = 138757, + [SMALL_STATE(3910)] = 138767, + [SMALL_STATE(3911)] = 138777, + [SMALL_STATE(3912)] = 138787, + [SMALL_STATE(3913)] = 138797, + [SMALL_STATE(3914)] = 138807, + [SMALL_STATE(3915)] = 138817, + [SMALL_STATE(3916)] = 138827, + [SMALL_STATE(3917)] = 138837, + [SMALL_STATE(3918)] = 138847, + [SMALL_STATE(3919)] = 138857, + [SMALL_STATE(3920)] = 138867, + [SMALL_STATE(3921)] = 138877, + [SMALL_STATE(3922)] = 138887, + [SMALL_STATE(3923)] = 138897, + [SMALL_STATE(3924)] = 138907, + [SMALL_STATE(3925)] = 138917, + [SMALL_STATE(3926)] = 138927, + [SMALL_STATE(3927)] = 138937, + [SMALL_STATE(3928)] = 138947, + [SMALL_STATE(3929)] = 138957, + [SMALL_STATE(3930)] = 138967, + [SMALL_STATE(3931)] = 138977, + [SMALL_STATE(3932)] = 138987, + [SMALL_STATE(3933)] = 138997, + [SMALL_STATE(3934)] = 139007, + [SMALL_STATE(3935)] = 139017, + [SMALL_STATE(3936)] = 139027, + [SMALL_STATE(3937)] = 139037, + [SMALL_STATE(3938)] = 139047, + [SMALL_STATE(3939)] = 139057, + [SMALL_STATE(3940)] = 139067, + [SMALL_STATE(3941)] = 139077, + [SMALL_STATE(3942)] = 139087, + [SMALL_STATE(3943)] = 139097, + [SMALL_STATE(3944)] = 139107, + [SMALL_STATE(3945)] = 139117, + [SMALL_STATE(3946)] = 139127, + [SMALL_STATE(3947)] = 139137, + [SMALL_STATE(3948)] = 139147, + [SMALL_STATE(3949)] = 139157, + [SMALL_STATE(3950)] = 139167, + [SMALL_STATE(3951)] = 139177, + [SMALL_STATE(3952)] = 139187, + [SMALL_STATE(3953)] = 139197, + [SMALL_STATE(3954)] = 139207, + [SMALL_STATE(3955)] = 139217, + [SMALL_STATE(3956)] = 139227, + [SMALL_STATE(3957)] = 139237, + [SMALL_STATE(3958)] = 139247, + [SMALL_STATE(3959)] = 139257, + [SMALL_STATE(3960)] = 139267, + [SMALL_STATE(3961)] = 139277, + [SMALL_STATE(3962)] = 139287, + [SMALL_STATE(3963)] = 139297, + [SMALL_STATE(3964)] = 139307, + [SMALL_STATE(3965)] = 139317, + [SMALL_STATE(3966)] = 139327, + [SMALL_STATE(3967)] = 139337, + [SMALL_STATE(3968)] = 139347, + [SMALL_STATE(3969)] = 139357, + [SMALL_STATE(3970)] = 139367, + [SMALL_STATE(3971)] = 139377, + [SMALL_STATE(3972)] = 139387, + [SMALL_STATE(3973)] = 139397, + [SMALL_STATE(3974)] = 139407, + [SMALL_STATE(3975)] = 139417, + [SMALL_STATE(3976)] = 139427, + [SMALL_STATE(3977)] = 139437, + [SMALL_STATE(3978)] = 139447, + [SMALL_STATE(3979)] = 139457, + [SMALL_STATE(3980)] = 139467, + [SMALL_STATE(3981)] = 139477, + [SMALL_STATE(3982)] = 139487, + [SMALL_STATE(3983)] = 139497, + [SMALL_STATE(3984)] = 139507, + [SMALL_STATE(3985)] = 139517, + [SMALL_STATE(3986)] = 139527, + [SMALL_STATE(3987)] = 139537, + [SMALL_STATE(3988)] = 139547, + [SMALL_STATE(3989)] = 139557, + [SMALL_STATE(3990)] = 139567, + [SMALL_STATE(3991)] = 139577, + [SMALL_STATE(3992)] = 139587, + [SMALL_STATE(3993)] = 139597, + [SMALL_STATE(3994)] = 139607, + [SMALL_STATE(3995)] = 139617, + [SMALL_STATE(3996)] = 139627, + [SMALL_STATE(3997)] = 139637, + [SMALL_STATE(3998)] = 139647, + [SMALL_STATE(3999)] = 139657, + [SMALL_STATE(4000)] = 139667, + [SMALL_STATE(4001)] = 139677, + [SMALL_STATE(4002)] = 139687, + [SMALL_STATE(4003)] = 139697, + [SMALL_STATE(4004)] = 139707, + [SMALL_STATE(4005)] = 139717, + [SMALL_STATE(4006)] = 139727, + [SMALL_STATE(4007)] = 139737, + [SMALL_STATE(4008)] = 139747, + [SMALL_STATE(4009)] = 139757, + [SMALL_STATE(4010)] = 139767, + [SMALL_STATE(4011)] = 139777, + [SMALL_STATE(4012)] = 139787, + [SMALL_STATE(4013)] = 139797, + [SMALL_STATE(4014)] = 139807, + [SMALL_STATE(4015)] = 139817, + [SMALL_STATE(4016)] = 139827, + [SMALL_STATE(4017)] = 139837, + [SMALL_STATE(4018)] = 139847, + [SMALL_STATE(4019)] = 139857, + [SMALL_STATE(4020)] = 139867, + [SMALL_STATE(4021)] = 139877, + [SMALL_STATE(4022)] = 139887, + [SMALL_STATE(4023)] = 139897, + [SMALL_STATE(4024)] = 139907, + [SMALL_STATE(4025)] = 139917, + [SMALL_STATE(4026)] = 139927, + [SMALL_STATE(4027)] = 139937, + [SMALL_STATE(4028)] = 139947, + [SMALL_STATE(4029)] = 139957, + [SMALL_STATE(4030)] = 139967, + [SMALL_STATE(4031)] = 139977, + [SMALL_STATE(4032)] = 139987, + [SMALL_STATE(4033)] = 139997, + [SMALL_STATE(4034)] = 140007, + [SMALL_STATE(4035)] = 140017, + [SMALL_STATE(4036)] = 140027, + [SMALL_STATE(4037)] = 140037, + [SMALL_STATE(4038)] = 140047, + [SMALL_STATE(4039)] = 140057, + [SMALL_STATE(4040)] = 140067, + [SMALL_STATE(4041)] = 140077, + [SMALL_STATE(4042)] = 140087, + [SMALL_STATE(4043)] = 140097, + [SMALL_STATE(4044)] = 140107, + [SMALL_STATE(4045)] = 140117, + [SMALL_STATE(4046)] = 140127, + [SMALL_STATE(4047)] = 140137, + [SMALL_STATE(4048)] = 140147, + [SMALL_STATE(4049)] = 140157, + [SMALL_STATE(4050)] = 140167, + [SMALL_STATE(4051)] = 140177, + [SMALL_STATE(4052)] = 140187, + [SMALL_STATE(4053)] = 140197, + [SMALL_STATE(4054)] = 140207, + [SMALL_STATE(4055)] = 140217, + [SMALL_STATE(4056)] = 140227, + [SMALL_STATE(4057)] = 140237, + [SMALL_STATE(4058)] = 140247, + [SMALL_STATE(4059)] = 140257, + [SMALL_STATE(4060)] = 140267, + [SMALL_STATE(4061)] = 140277, + [SMALL_STATE(4062)] = 140287, + [SMALL_STATE(4063)] = 140297, + [SMALL_STATE(4064)] = 140307, + [SMALL_STATE(4065)] = 140317, + [SMALL_STATE(4066)] = 140327, + [SMALL_STATE(4067)] = 140337, + [SMALL_STATE(4068)] = 140347, + [SMALL_STATE(4069)] = 140357, + [SMALL_STATE(4070)] = 140367, + [SMALL_STATE(4071)] = 140377, + [SMALL_STATE(4072)] = 140387, + [SMALL_STATE(4073)] = 140397, + [SMALL_STATE(4074)] = 140407, + [SMALL_STATE(4075)] = 140417, + [SMALL_STATE(4076)] = 140427, + [SMALL_STATE(4077)] = 140437, + [SMALL_STATE(4078)] = 140447, + [SMALL_STATE(4079)] = 140457, + [SMALL_STATE(4080)] = 140467, + [SMALL_STATE(4081)] = 140477, + [SMALL_STATE(4082)] = 140487, + [SMALL_STATE(4083)] = 140497, + [SMALL_STATE(4084)] = 140507, + [SMALL_STATE(4085)] = 140517, + [SMALL_STATE(4086)] = 140527, + [SMALL_STATE(4087)] = 140537, + [SMALL_STATE(4088)] = 140547, + [SMALL_STATE(4089)] = 140557, + [SMALL_STATE(4090)] = 140567, + [SMALL_STATE(4091)] = 140577, + [SMALL_STATE(4092)] = 140587, + [SMALL_STATE(4093)] = 140597, + [SMALL_STATE(4094)] = 140607, + [SMALL_STATE(4095)] = 140617, + [SMALL_STATE(4096)] = 140627, + [SMALL_STATE(4097)] = 140637, + [SMALL_STATE(4098)] = 140647, + [SMALL_STATE(4099)] = 140657, + [SMALL_STATE(4100)] = 140667, + [SMALL_STATE(4101)] = 140677, + [SMALL_STATE(4102)] = 140687, + [SMALL_STATE(4103)] = 140697, + [SMALL_STATE(4104)] = 140707, + [SMALL_STATE(4105)] = 140717, + [SMALL_STATE(4106)] = 140727, + [SMALL_STATE(4107)] = 140737, + [SMALL_STATE(4108)] = 140747, + [SMALL_STATE(4109)] = 140757, + [SMALL_STATE(4110)] = 140767, + [SMALL_STATE(4111)] = 140777, + [SMALL_STATE(4112)] = 140787, + [SMALL_STATE(4113)] = 140797, + [SMALL_STATE(4114)] = 140807, + [SMALL_STATE(4115)] = 140817, + [SMALL_STATE(4116)] = 140827, + [SMALL_STATE(4117)] = 140837, + [SMALL_STATE(4118)] = 140847, + [SMALL_STATE(4119)] = 140857, + [SMALL_STATE(4120)] = 140867, + [SMALL_STATE(4121)] = 140877, + [SMALL_STATE(4122)] = 140887, + [SMALL_STATE(4123)] = 140897, + [SMALL_STATE(4124)] = 140907, + [SMALL_STATE(4125)] = 140917, + [SMALL_STATE(4126)] = 140927, + [SMALL_STATE(4127)] = 140937, + [SMALL_STATE(4128)] = 140947, + [SMALL_STATE(4129)] = 140957, + [SMALL_STATE(4130)] = 140967, + [SMALL_STATE(4131)] = 140977, + [SMALL_STATE(4132)] = 140987, + [SMALL_STATE(4133)] = 140997, + [SMALL_STATE(4134)] = 141007, + [SMALL_STATE(4135)] = 141017, + [SMALL_STATE(4136)] = 141027, + [SMALL_STATE(4137)] = 141037, + [SMALL_STATE(4138)] = 141047, + [SMALL_STATE(4139)] = 141057, + [SMALL_STATE(4140)] = 141067, + [SMALL_STATE(4141)] = 141077, + [SMALL_STATE(4142)] = 141087, + [SMALL_STATE(4143)] = 141097, + [SMALL_STATE(4144)] = 141107, + [SMALL_STATE(4145)] = 141117, + [SMALL_STATE(4146)] = 141127, + [SMALL_STATE(4147)] = 141137, + [SMALL_STATE(4148)] = 141147, + [SMALL_STATE(4149)] = 141157, + [SMALL_STATE(4150)] = 141167, + [SMALL_STATE(4151)] = 141177, + [SMALL_STATE(4152)] = 141187, + [SMALL_STATE(4153)] = 141197, + [SMALL_STATE(4154)] = 141207, + [SMALL_STATE(4155)] = 141217, + [SMALL_STATE(4156)] = 141227, + [SMALL_STATE(4157)] = 141237, + [SMALL_STATE(4158)] = 141247, + [SMALL_STATE(4159)] = 141257, + [SMALL_STATE(4160)] = 141267, + [SMALL_STATE(4161)] = 141277, + [SMALL_STATE(4162)] = 141287, + [SMALL_STATE(4163)] = 141297, + [SMALL_STATE(4164)] = 141307, + [SMALL_STATE(4165)] = 141317, + [SMALL_STATE(4166)] = 141327, + [SMALL_STATE(4167)] = 141337, + [SMALL_STATE(4168)] = 141347, + [SMALL_STATE(4169)] = 141357, + [SMALL_STATE(4170)] = 141367, + [SMALL_STATE(4171)] = 141377, + [SMALL_STATE(4172)] = 141387, + [SMALL_STATE(4173)] = 141397, + [SMALL_STATE(4174)] = 141407, + [SMALL_STATE(4175)] = 141417, + [SMALL_STATE(4176)] = 141427, + [SMALL_STATE(4177)] = 141437, + [SMALL_STATE(4178)] = 141447, + [SMALL_STATE(4179)] = 141457, + [SMALL_STATE(4180)] = 141467, + [SMALL_STATE(4181)] = 141477, + [SMALL_STATE(4182)] = 141487, + [SMALL_STATE(4183)] = 141497, + [SMALL_STATE(4184)] = 141507, + [SMALL_STATE(4185)] = 141517, + [SMALL_STATE(4186)] = 141527, + [SMALL_STATE(4187)] = 141537, + [SMALL_STATE(4188)] = 141547, + [SMALL_STATE(4189)] = 141557, + [SMALL_STATE(4190)] = 141567, + [SMALL_STATE(4191)] = 141577, + [SMALL_STATE(4192)] = 141587, + [SMALL_STATE(4193)] = 141597, + [SMALL_STATE(4194)] = 141607, + [SMALL_STATE(4195)] = 141617, + [SMALL_STATE(4196)] = 141627, + [SMALL_STATE(4197)] = 141637, + [SMALL_STATE(4198)] = 141647, + [SMALL_STATE(4199)] = 141657, + [SMALL_STATE(4200)] = 141667, + [SMALL_STATE(4201)] = 141677, + [SMALL_STATE(4202)] = 141687, + [SMALL_STATE(4203)] = 141697, + [SMALL_STATE(4204)] = 141707, + [SMALL_STATE(4205)] = 141717, + [SMALL_STATE(4206)] = 141727, + [SMALL_STATE(4207)] = 141737, + [SMALL_STATE(4208)] = 141747, + [SMALL_STATE(4209)] = 141757, + [SMALL_STATE(4210)] = 141767, + [SMALL_STATE(4211)] = 141777, + [SMALL_STATE(4212)] = 141787, + [SMALL_STATE(4213)] = 141797, + [SMALL_STATE(4214)] = 141807, + [SMALL_STATE(4215)] = 141817, + [SMALL_STATE(4216)] = 141827, + [SMALL_STATE(4217)] = 141837, + [SMALL_STATE(4218)] = 141847, + [SMALL_STATE(4219)] = 141857, + [SMALL_STATE(4220)] = 141867, + [SMALL_STATE(4221)] = 141877, + [SMALL_STATE(4222)] = 141887, + [SMALL_STATE(4223)] = 141897, + [SMALL_STATE(4224)] = 141907, + [SMALL_STATE(4225)] = 141917, + [SMALL_STATE(4226)] = 141927, + [SMALL_STATE(4227)] = 141937, + [SMALL_STATE(4228)] = 141947, + [SMALL_STATE(4229)] = 141957, + [SMALL_STATE(4230)] = 141967, + [SMALL_STATE(4231)] = 141977, + [SMALL_STATE(4232)] = 141987, + [SMALL_STATE(4233)] = 141997, + [SMALL_STATE(4234)] = 142007, + [SMALL_STATE(4235)] = 142017, + [SMALL_STATE(4236)] = 142027, + [SMALL_STATE(4237)] = 142037, + [SMALL_STATE(4238)] = 142047, + [SMALL_STATE(4239)] = 142057, + [SMALL_STATE(4240)] = 142067, + [SMALL_STATE(4241)] = 142077, + [SMALL_STATE(4242)] = 142087, + [SMALL_STATE(4243)] = 142097, + [SMALL_STATE(4244)] = 142107, + [SMALL_STATE(4245)] = 142117, + [SMALL_STATE(4246)] = 142127, + [SMALL_STATE(4247)] = 142137, + [SMALL_STATE(4248)] = 142147, + [SMALL_STATE(4249)] = 142157, + [SMALL_STATE(4250)] = 142167, + [SMALL_STATE(4251)] = 142177, + [SMALL_STATE(4252)] = 142187, + [SMALL_STATE(4253)] = 142197, + [SMALL_STATE(4254)] = 142207, + [SMALL_STATE(4255)] = 142217, + [SMALL_STATE(4256)] = 142227, + [SMALL_STATE(4257)] = 142237, + [SMALL_STATE(4258)] = 142247, + [SMALL_STATE(4259)] = 142257, + [SMALL_STATE(4260)] = 142267, + [SMALL_STATE(4261)] = 142277, + [SMALL_STATE(4262)] = 142287, + [SMALL_STATE(4263)] = 142297, + [SMALL_STATE(4264)] = 142307, + [SMALL_STATE(4265)] = 142317, + [SMALL_STATE(4266)] = 142327, + [SMALL_STATE(4267)] = 142337, + [SMALL_STATE(4268)] = 142347, + [SMALL_STATE(4269)] = 142357, + [SMALL_STATE(4270)] = 142367, + [SMALL_STATE(4271)] = 142377, + [SMALL_STATE(4272)] = 142387, + [SMALL_STATE(4273)] = 142397, + [SMALL_STATE(4274)] = 142407, + [SMALL_STATE(4275)] = 142417, + [SMALL_STATE(4276)] = 142427, + [SMALL_STATE(4277)] = 142437, + [SMALL_STATE(4278)] = 142447, + [SMALL_STATE(4279)] = 142457, + [SMALL_STATE(4280)] = 142467, + [SMALL_STATE(4281)] = 142477, + [SMALL_STATE(4282)] = 142487, + [SMALL_STATE(4283)] = 142497, + [SMALL_STATE(4284)] = 142507, + [SMALL_STATE(4285)] = 142517, + [SMALL_STATE(4286)] = 142527, + [SMALL_STATE(4287)] = 142537, + [SMALL_STATE(4288)] = 142547, + [SMALL_STATE(4289)] = 142557, + [SMALL_STATE(4290)] = 142567, + [SMALL_STATE(4291)] = 142577, + [SMALL_STATE(4292)] = 142587, + [SMALL_STATE(4293)] = 142597, + [SMALL_STATE(4294)] = 142607, + [SMALL_STATE(4295)] = 142617, + [SMALL_STATE(4296)] = 142627, + [SMALL_STATE(4297)] = 142637, + [SMALL_STATE(4298)] = 142647, + [SMALL_STATE(4299)] = 142657, + [SMALL_STATE(4300)] = 142667, + [SMALL_STATE(4301)] = 142677, + [SMALL_STATE(4302)] = 142687, + [SMALL_STATE(4303)] = 142697, + [SMALL_STATE(4304)] = 142707, + [SMALL_STATE(4305)] = 142717, + [SMALL_STATE(4306)] = 142727, + [SMALL_STATE(4307)] = 142737, + [SMALL_STATE(4308)] = 142747, + [SMALL_STATE(4309)] = 142757, + [SMALL_STATE(4310)] = 142767, + [SMALL_STATE(4311)] = 142777, + [SMALL_STATE(4312)] = 142787, + [SMALL_STATE(4313)] = 142797, + [SMALL_STATE(4314)] = 142807, + [SMALL_STATE(4315)] = 142817, + [SMALL_STATE(4316)] = 142827, + [SMALL_STATE(4317)] = 142837, + [SMALL_STATE(4318)] = 142847, + [SMALL_STATE(4319)] = 142857, + [SMALL_STATE(4320)] = 142867, + [SMALL_STATE(4321)] = 142877, + [SMALL_STATE(4322)] = 142887, + [SMALL_STATE(4323)] = 142897, + [SMALL_STATE(4324)] = 142907, + [SMALL_STATE(4325)] = 142917, + [SMALL_STATE(4326)] = 142927, + [SMALL_STATE(4327)] = 142937, + [SMALL_STATE(4328)] = 142947, + [SMALL_STATE(4329)] = 142957, + [SMALL_STATE(4330)] = 142967, + [SMALL_STATE(4331)] = 142977, + [SMALL_STATE(4332)] = 142987, + [SMALL_STATE(4333)] = 142997, + [SMALL_STATE(4334)] = 143007, + [SMALL_STATE(4335)] = 143017, + [SMALL_STATE(4336)] = 143027, + [SMALL_STATE(4337)] = 143037, + [SMALL_STATE(4338)] = 143047, + [SMALL_STATE(4339)] = 143057, + [SMALL_STATE(4340)] = 143067, + [SMALL_STATE(4341)] = 143077, + [SMALL_STATE(4342)] = 143087, + [SMALL_STATE(4343)] = 143097, + [SMALL_STATE(4344)] = 143107, + [SMALL_STATE(4345)] = 143117, + [SMALL_STATE(4346)] = 143127, + [SMALL_STATE(4347)] = 143137, + [SMALL_STATE(4348)] = 143147, + [SMALL_STATE(4349)] = 143157, + [SMALL_STATE(4350)] = 143167, + [SMALL_STATE(4351)] = 143177, + [SMALL_STATE(4352)] = 143187, + [SMALL_STATE(4353)] = 143197, + [SMALL_STATE(4354)] = 143207, + [SMALL_STATE(4355)] = 143217, + [SMALL_STATE(4356)] = 143227, + [SMALL_STATE(4357)] = 143237, + [SMALL_STATE(4358)] = 143247, + [SMALL_STATE(4359)] = 143257, + [SMALL_STATE(4360)] = 143267, + [SMALL_STATE(4361)] = 143277, + [SMALL_STATE(4362)] = 143287, + [SMALL_STATE(4363)] = 143297, + [SMALL_STATE(4364)] = 143307, + [SMALL_STATE(4365)] = 143317, + [SMALL_STATE(4366)] = 143327, + [SMALL_STATE(4367)] = 143337, + [SMALL_STATE(4368)] = 143347, + [SMALL_STATE(4369)] = 143357, + [SMALL_STATE(4370)] = 143367, + [SMALL_STATE(4371)] = 143377, + [SMALL_STATE(4372)] = 143387, + [SMALL_STATE(4373)] = 143397, + [SMALL_STATE(4374)] = 143407, + [SMALL_STATE(4375)] = 143417, + [SMALL_STATE(4376)] = 143427, + [SMALL_STATE(4377)] = 143437, + [SMALL_STATE(4378)] = 143447, + [SMALL_STATE(4379)] = 143457, + [SMALL_STATE(4380)] = 143467, + [SMALL_STATE(4381)] = 143477, + [SMALL_STATE(4382)] = 143487, + [SMALL_STATE(4383)] = 143497, + [SMALL_STATE(4384)] = 143507, + [SMALL_STATE(4385)] = 143517, + [SMALL_STATE(4386)] = 143527, + [SMALL_STATE(4387)] = 143537, + [SMALL_STATE(4388)] = 143547, + [SMALL_STATE(4389)] = 143557, + [SMALL_STATE(4390)] = 143567, + [SMALL_STATE(4391)] = 143577, + [SMALL_STATE(4392)] = 143587, + [SMALL_STATE(4393)] = 143597, + [SMALL_STATE(4394)] = 143607, + [SMALL_STATE(4395)] = 143617, + [SMALL_STATE(4396)] = 143627, + [SMALL_STATE(4397)] = 143637, + [SMALL_STATE(4398)] = 143647, + [SMALL_STATE(4399)] = 143657, + [SMALL_STATE(4400)] = 143667, + [SMALL_STATE(4401)] = 143677, + [SMALL_STATE(4402)] = 143687, + [SMALL_STATE(4403)] = 143697, + [SMALL_STATE(4404)] = 143707, + [SMALL_STATE(4405)] = 143717, + [SMALL_STATE(4406)] = 143727, + [SMALL_STATE(4407)] = 143737, + [SMALL_STATE(4408)] = 143747, + [SMALL_STATE(4409)] = 143757, + [SMALL_STATE(4410)] = 143767, + [SMALL_STATE(4411)] = 143777, + [SMALL_STATE(4412)] = 143787, + [SMALL_STATE(4413)] = 143797, + [SMALL_STATE(4414)] = 143807, + [SMALL_STATE(4415)] = 143817, + [SMALL_STATE(4416)] = 143827, + [SMALL_STATE(4417)] = 143837, + [SMALL_STATE(4418)] = 143847, + [SMALL_STATE(4419)] = 143857, + [SMALL_STATE(4420)] = 143867, + [SMALL_STATE(4421)] = 143877, + [SMALL_STATE(4422)] = 143887, + [SMALL_STATE(4423)] = 143897, + [SMALL_STATE(4424)] = 143907, + [SMALL_STATE(4425)] = 143917, + [SMALL_STATE(4426)] = 143927, + [SMALL_STATE(4427)] = 143937, + [SMALL_STATE(4428)] = 143947, + [SMALL_STATE(4429)] = 143957, + [SMALL_STATE(4430)] = 143967, + [SMALL_STATE(4431)] = 143977, + [SMALL_STATE(4432)] = 143987, + [SMALL_STATE(4433)] = 143997, + [SMALL_STATE(4434)] = 144007, + [SMALL_STATE(4435)] = 144017, + [SMALL_STATE(4436)] = 144027, + [SMALL_STATE(4437)] = 144037, + [SMALL_STATE(4438)] = 144047, + [SMALL_STATE(4439)] = 144057, + [SMALL_STATE(4440)] = 144067, + [SMALL_STATE(4441)] = 144077, + [SMALL_STATE(4442)] = 144087, + [SMALL_STATE(4443)] = 144097, + [SMALL_STATE(4444)] = 144107, + [SMALL_STATE(4445)] = 144117, + [SMALL_STATE(4446)] = 144127, + [SMALL_STATE(4447)] = 144137, + [SMALL_STATE(4448)] = 144147, + [SMALL_STATE(4449)] = 144157, + [SMALL_STATE(4450)] = 144167, + [SMALL_STATE(4451)] = 144177, + [SMALL_STATE(4452)] = 144187, + [SMALL_STATE(4453)] = 144197, + [SMALL_STATE(4454)] = 144207, + [SMALL_STATE(4455)] = 144217, + [SMALL_STATE(4456)] = 144227, + [SMALL_STATE(4457)] = 144237, + [SMALL_STATE(4458)] = 144247, + [SMALL_STATE(4459)] = 144257, + [SMALL_STATE(4460)] = 144267, + [SMALL_STATE(4461)] = 144277, + [SMALL_STATE(4462)] = 144287, + [SMALL_STATE(4463)] = 144297, + [SMALL_STATE(4464)] = 144307, + [SMALL_STATE(4465)] = 144317, + [SMALL_STATE(4466)] = 144327, + [SMALL_STATE(4467)] = 144337, + [SMALL_STATE(4468)] = 144347, + [SMALL_STATE(4469)] = 144357, + [SMALL_STATE(4470)] = 144367, + [SMALL_STATE(4471)] = 144377, + [SMALL_STATE(4472)] = 144387, + [SMALL_STATE(4473)] = 144397, + [SMALL_STATE(4474)] = 144407, + [SMALL_STATE(4475)] = 144417, + [SMALL_STATE(4476)] = 144427, + [SMALL_STATE(4477)] = 144437, + [SMALL_STATE(4478)] = 144447, + [SMALL_STATE(4479)] = 144457, + [SMALL_STATE(4480)] = 144467, + [SMALL_STATE(4481)] = 144477, + [SMALL_STATE(4482)] = 144487, + [SMALL_STATE(4483)] = 144497, + [SMALL_STATE(4484)] = 144507, + [SMALL_STATE(4485)] = 144517, + [SMALL_STATE(4486)] = 144527, + [SMALL_STATE(4487)] = 144537, + [SMALL_STATE(4488)] = 144547, + [SMALL_STATE(4489)] = 144557, + [SMALL_STATE(4490)] = 144567, + [SMALL_STATE(4491)] = 144577, + [SMALL_STATE(4492)] = 144587, + [SMALL_STATE(4493)] = 144597, + [SMALL_STATE(4494)] = 144607, + [SMALL_STATE(4495)] = 144617, + [SMALL_STATE(4496)] = 144627, + [SMALL_STATE(4497)] = 144637, + [SMALL_STATE(4498)] = 144647, + [SMALL_STATE(4499)] = 144657, + [SMALL_STATE(4500)] = 144667, + [SMALL_STATE(4501)] = 144677, + [SMALL_STATE(4502)] = 144687, + [SMALL_STATE(4503)] = 144697, + [SMALL_STATE(4504)] = 144707, + [SMALL_STATE(4505)] = 144717, + [SMALL_STATE(4506)] = 144727, + [SMALL_STATE(4507)] = 144737, + [SMALL_STATE(4508)] = 144747, + [SMALL_STATE(4509)] = 144757, + [SMALL_STATE(4510)] = 144767, + [SMALL_STATE(4511)] = 144777, + [SMALL_STATE(4512)] = 144787, + [SMALL_STATE(4513)] = 144797, + [SMALL_STATE(4514)] = 144807, + [SMALL_STATE(4515)] = 144817, + [SMALL_STATE(4516)] = 144827, + [SMALL_STATE(4517)] = 144837, + [SMALL_STATE(4518)] = 144847, + [SMALL_STATE(4519)] = 144857, + [SMALL_STATE(4520)] = 144867, + [SMALL_STATE(4521)] = 144877, + [SMALL_STATE(4522)] = 144887, + [SMALL_STATE(4523)] = 144897, + [SMALL_STATE(4524)] = 144907, + [SMALL_STATE(4525)] = 144917, + [SMALL_STATE(4526)] = 144927, + [SMALL_STATE(4527)] = 144937, + [SMALL_STATE(4528)] = 144947, + [SMALL_STATE(4529)] = 144957, + [SMALL_STATE(4530)] = 144967, + [SMALL_STATE(4531)] = 144977, + [SMALL_STATE(4532)] = 144987, + [SMALL_STATE(4533)] = 144997, + [SMALL_STATE(4534)] = 145007, + [SMALL_STATE(4535)] = 145017, + [SMALL_STATE(4536)] = 145027, + [SMALL_STATE(4537)] = 145037, + [SMALL_STATE(4538)] = 145047, + [SMALL_STATE(4539)] = 145057, + [SMALL_STATE(4540)] = 145067, + [SMALL_STATE(4541)] = 145077, + [SMALL_STATE(4542)] = 145087, + [SMALL_STATE(4543)] = 145097, + [SMALL_STATE(4544)] = 145107, + [SMALL_STATE(4545)] = 145117, + [SMALL_STATE(4546)] = 145127, + [SMALL_STATE(4547)] = 145137, + [SMALL_STATE(4548)] = 145147, + [SMALL_STATE(4549)] = 145157, + [SMALL_STATE(4550)] = 145167, + [SMALL_STATE(4551)] = 145177, + [SMALL_STATE(4552)] = 145187, + [SMALL_STATE(4553)] = 145197, + [SMALL_STATE(4554)] = 145207, + [SMALL_STATE(4555)] = 145217, + [SMALL_STATE(4556)] = 145227, + [SMALL_STATE(4557)] = 145237, + [SMALL_STATE(4558)] = 145247, + [SMALL_STATE(4559)] = 145257, + [SMALL_STATE(4560)] = 145267, + [SMALL_STATE(4561)] = 145277, + [SMALL_STATE(4562)] = 145287, + [SMALL_STATE(4563)] = 145297, + [SMALL_STATE(4564)] = 145307, + [SMALL_STATE(4565)] = 145317, + [SMALL_STATE(4566)] = 145327, + [SMALL_STATE(4567)] = 145337, + [SMALL_STATE(4568)] = 145347, + [SMALL_STATE(4569)] = 145357, + [SMALL_STATE(4570)] = 145367, + [SMALL_STATE(4571)] = 145377, + [SMALL_STATE(4572)] = 145387, + [SMALL_STATE(4573)] = 145397, + [SMALL_STATE(4574)] = 145407, + [SMALL_STATE(4575)] = 145417, + [SMALL_STATE(4576)] = 145427, + [SMALL_STATE(4577)] = 145437, + [SMALL_STATE(4578)] = 145447, + [SMALL_STATE(4579)] = 145457, + [SMALL_STATE(4580)] = 145467, + [SMALL_STATE(4581)] = 145477, + [SMALL_STATE(4582)] = 145487, + [SMALL_STATE(4583)] = 145497, + [SMALL_STATE(4584)] = 145507, + [SMALL_STATE(4585)] = 145517, + [SMALL_STATE(4586)] = 145527, + [SMALL_STATE(4587)] = 145537, + [SMALL_STATE(4588)] = 145547, + [SMALL_STATE(4589)] = 145557, + [SMALL_STATE(4590)] = 145567, + [SMALL_STATE(4591)] = 145577, + [SMALL_STATE(4592)] = 145587, + [SMALL_STATE(4593)] = 145597, + [SMALL_STATE(4594)] = 145607, + [SMALL_STATE(4595)] = 145617, + [SMALL_STATE(4596)] = 145627, + [SMALL_STATE(4597)] = 145637, + [SMALL_STATE(4598)] = 145647, + [SMALL_STATE(4599)] = 145657, + [SMALL_STATE(4600)] = 145667, + [SMALL_STATE(4601)] = 145677, + [SMALL_STATE(4602)] = 145687, + [SMALL_STATE(4603)] = 145697, + [SMALL_STATE(4604)] = 145707, + [SMALL_STATE(4605)] = 145717, + [SMALL_STATE(4606)] = 145727, + [SMALL_STATE(4607)] = 145737, + [SMALL_STATE(4608)] = 145747, + [SMALL_STATE(4609)] = 145757, + [SMALL_STATE(4610)] = 145767, + [SMALL_STATE(4611)] = 145777, + [SMALL_STATE(4612)] = 145787, + [SMALL_STATE(4613)] = 145797, + [SMALL_STATE(4614)] = 145807, + [SMALL_STATE(4615)] = 145817, + [SMALL_STATE(4616)] = 145827, + [SMALL_STATE(4617)] = 145837, + [SMALL_STATE(4618)] = 145847, + [SMALL_STATE(4619)] = 145857, + [SMALL_STATE(4620)] = 145867, + [SMALL_STATE(4621)] = 145877, + [SMALL_STATE(4622)] = 145887, + [SMALL_STATE(4623)] = 145897, + [SMALL_STATE(4624)] = 145907, + [SMALL_STATE(4625)] = 145917, + [SMALL_STATE(4626)] = 145927, + [SMALL_STATE(4627)] = 145937, + [SMALL_STATE(4628)] = 145947, + [SMALL_STATE(4629)] = 145957, + [SMALL_STATE(4630)] = 145967, + [SMALL_STATE(4631)] = 145977, + [SMALL_STATE(4632)] = 145987, + [SMALL_STATE(4633)] = 145997, + [SMALL_STATE(4634)] = 146007, + [SMALL_STATE(4635)] = 146017, + [SMALL_STATE(4636)] = 146027, + [SMALL_STATE(4637)] = 146037, + [SMALL_STATE(4638)] = 146047, + [SMALL_STATE(4639)] = 146057, + [SMALL_STATE(4640)] = 146067, + [SMALL_STATE(4641)] = 146077, + [SMALL_STATE(4642)] = 146087, + [SMALL_STATE(4643)] = 146097, + [SMALL_STATE(4644)] = 146107, + [SMALL_STATE(4645)] = 146117, + [SMALL_STATE(4646)] = 146127, + [SMALL_STATE(4647)] = 146137, + [SMALL_STATE(4648)] = 146147, + [SMALL_STATE(4649)] = 146157, + [SMALL_STATE(4650)] = 146167, + [SMALL_STATE(4651)] = 146177, + [SMALL_STATE(4652)] = 146187, + [SMALL_STATE(4653)] = 146197, + [SMALL_STATE(4654)] = 146207, + [SMALL_STATE(4655)] = 146217, + [SMALL_STATE(4656)] = 146227, + [SMALL_STATE(4657)] = 146237, + [SMALL_STATE(4658)] = 146247, + [SMALL_STATE(4659)] = 146257, + [SMALL_STATE(4660)] = 146267, + [SMALL_STATE(4661)] = 146277, + [SMALL_STATE(4662)] = 146287, + [SMALL_STATE(4663)] = 146297, + [SMALL_STATE(4664)] = 146307, + [SMALL_STATE(4665)] = 146317, + [SMALL_STATE(4666)] = 146327, + [SMALL_STATE(4667)] = 146337, + [SMALL_STATE(4668)] = 146347, + [SMALL_STATE(4669)] = 146357, + [SMALL_STATE(4670)] = 146367, + [SMALL_STATE(4671)] = 146377, + [SMALL_STATE(4672)] = 146387, + [SMALL_STATE(4673)] = 146397, + [SMALL_STATE(4674)] = 146407, + [SMALL_STATE(4675)] = 146417, + [SMALL_STATE(4676)] = 146427, + [SMALL_STATE(4677)] = 146437, + [SMALL_STATE(4678)] = 146447, + [SMALL_STATE(4679)] = 146457, + [SMALL_STATE(4680)] = 146467, + [SMALL_STATE(4681)] = 146477, + [SMALL_STATE(4682)] = 146487, + [SMALL_STATE(4683)] = 146497, + [SMALL_STATE(4684)] = 146507, + [SMALL_STATE(4685)] = 146517, + [SMALL_STATE(4686)] = 146527, + [SMALL_STATE(4687)] = 146531, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blade, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2378), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3206), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3035), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3151), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), - [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), - [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), - [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(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), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), + [61] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3641), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), + [69] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), + [71] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [77] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3667), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3666), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3665), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [89] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [91] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3703), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3622), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1199), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3620), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), + [175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3674), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3671), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3663), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3662), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3661), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3658), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3688), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3649), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3631), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2976), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2975), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2974), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2971), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 1), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2942), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), + [335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2936), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2931), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), + [353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2608), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2606), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3556), + [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), + [457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body, 2), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3117), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3090), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3087), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1055), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), + [551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3013), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3015), + [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3046), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3056), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3770), + [639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), + [643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3019), + [665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2986), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2984), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(986), + [720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2676), + [723] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2675), + [726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2544), + [729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3750), + [732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3749), + [735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2889), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2896), + [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(193), + [744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(192), + [747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2897), + [750] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2898), + [753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2899), + [756] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2900), + [759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2901), + [762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(806), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(499), + [768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2903), + [771] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2904), + [774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2905), + [777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(485), + [780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(39), + [783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(43), + [786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(147), + [789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2911), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2912), + [795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2913), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2914), + [801] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2916), + [804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2917), + [809] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2929), + [812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2938), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2938), + [818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3777), + [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(505), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2946), + [827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2947), + [830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2948), + [833] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2949), + [836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2950), + [839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2951), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2952), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(691), + [848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(691), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2573), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), + [865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3095), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), + [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), + [909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3115), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [939] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(914), + [942] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2633), + [945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2632), + [948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2551), + [951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3743), + [954] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3742), + [957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2953), + [960] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2954), + [963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(178), + [966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(177), + [969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2957), + [972] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2958), + [975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2959), + [978] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2960), + [981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2961), + [984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(878), + [987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(490), + [990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2962), + [993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2963), + [996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2966), + [999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(475), + [1002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(44), + [1005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(48), + [1008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(150), + [1011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2978), + [1014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2987), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2995), + [1020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2996), + [1023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2997), + [1026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2998), + [1029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2999), + [1032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3000), + [1035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3000), + [1038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3771), + [1041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(492), + [1044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3002), + [1047] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3003), + [1050] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3006), + [1053] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3007), + [1056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3008), + [1059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3009), + [1062] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3010), + [1065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(688), + [1068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(688), + [1071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(842), + [1074] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2599), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2598), + [1080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2554), + [1083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3735), + [1086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3734), + [1089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3011), + [1092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3012), + [1095] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(232), + [1098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(223), + [1101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3013), + [1104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3014), + [1107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3015), + [1110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3016), + [1113] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2895), + [1116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(949), + [1119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(493), + [1122] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3036), + [1125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3046), + [1128] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3047), + [1131] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(487), + [1134] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(51), + [1137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(58), + [1140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(160), + [1143] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3048), + [1146] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3049), + [1149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3050), + [1152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3051), + [1155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3052), + [1158] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3055), + [1161] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3056), + [1164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3057), + [1167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3057), + [1170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3761), + [1173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(501), + [1176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3059), + [1179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3060), + [1182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3062), + [1185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3063), + [1188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3076), + [1191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3085), + [1194] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3093), + [1197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(683), + [1200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(683), + [1203] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(767), + [1206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2573), + [1209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2647), + [1212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2552), + [1215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3729), + [1218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3728), + [1221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3094), + [1224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3095), + [1227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(188), + [1230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(187), + [1233] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3096), + [1236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3097), + [1239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3098), + [1242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3099), + [1245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3100), + [1248] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1020), + [1251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(497), + [1254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3105), + [1257] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3106), + [1260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3107), + [1263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(484), + [1266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(59), + [1269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(60), + [1272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(162), + [1275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3108), + [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3109), + [1281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3112), + [1284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3113), + [1287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3114), + [1290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3115), + [1293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3116), + [1296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3125), + [1299] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3125), + [1302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3752), + [1305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(500), + [1308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3142), + [1311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3143), + [1314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3144), + [1317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3145), + [1320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3146), + [1323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3147), + [1326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3045), + [1329] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(679), + [1332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(679), + [1335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [1337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), + [1339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [1343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [1345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [1347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [1349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [1351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [1353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [1355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [1357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [1359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2924), + [1361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [1363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [1365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [1369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), + [1375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [1381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [1383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [1385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [1389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [1391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2892), + [1393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [1395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2890), + [1397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), + [1399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [1401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [1403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), + [1405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [1407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [1409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [1411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [1413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [1415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [1417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [1419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [1421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), + [1423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [1425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [1427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [1429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [1433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), + [1435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [1437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [1439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), + [1441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [1443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [1445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [1447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [1449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3175), + [1451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [1453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [1455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [1457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [1459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [1461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [1463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), + [1465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [1467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [1469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [1471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [1473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [1475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [1479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [1481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [1483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3141), + [1485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [1487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [1489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [1491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [1493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3137), + [1495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [1497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [1499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3135), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [1505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [1507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [1509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), + [1511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [1513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [1515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [1517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [1519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [1521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1058), + [1524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2718), + [1527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2711), + [1530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2535), + [1533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3756), + [1536] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3754), + [1539] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2926), + [1542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2925), + [1545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(206), + [1548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(205), + [1551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2924), + [1554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2923), + [1557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2922), + [1560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2921), + [1563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2920), + [1566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(733), + [1569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(502), + [1572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2919), + [1575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2918), + [1578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2915), + [1581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(483), + [1584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(8), + [1587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(35), + [1590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(141), + [1593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2894), + [1596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2893), + [1599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2892), + [1602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2891), + [1605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2890), + [1608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2888), + [1611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2887), + [1614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2886), + [1617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2886), + [1620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3787), + [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(498), + [1626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2884), + [1629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2883), + [1632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2882), + [1635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2881), + [1638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2880), + [1641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2879), + [1644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3332), + [1647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(764), + [1650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(764), + [1653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1066), + [1656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2578), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2575), + [1662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2553), + [1665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3779), + [1668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3782), + [1671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3177), + [1674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3176), + [1677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(278), + [1680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(277), + [1683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3175), + [1686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3173), + [1689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3172), + [1692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3171), + [1695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3170), + [1698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(903), + [1701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(491), + [1704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3169), + [1707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3168), + [1710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3167), + [1713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(482), + [1716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(14), + [1719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(11), + [1722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(154), + [1725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3163), + [1728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3160), + [1731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3159), + [1734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3141), + [1737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3140), + [1740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3139), + [1743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3138), + [1746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3137), + [1749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3137), + [1752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3751), + [1755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(503), + [1758] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3135), + [1761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3133), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3132), + [1767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3131), + [1770] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3130), + [1773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3129), + [1776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3128), + [1779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1329), + [1782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1329), + [1785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [1787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1262), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2644), + [1793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2645), + [1796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2548), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3770), + [1802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3769), + [1805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3026), + [1808] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3025), + [1811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(241), + [1814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(239), + [1817] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3024), + [1820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3023), + [1823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3022), + [1826] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3021), + [1829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3020), + [1832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(588), + [1835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(512), + [1838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3019), + [1841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3018), + [1844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3017), + [1847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(479), + [1850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(4), + [1853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(33), + [1856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(168), + [1859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2994), + [1862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2993), + [1865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2992), + [1868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2991), + [1871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2990), + [1874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2989), + [1877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2988), + [1880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2986), + [1883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2986), + [1886] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3772), + [1889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(495), + [1892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2984), + [1895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2983), + [1898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2982), + [1901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2981), + [1904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2980), + [1907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2979), + [1910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2977), + [1913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(911), + [1916] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(911), + [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 1), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [1927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [1933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [1937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [1939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [1941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [1953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [1959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2963), + [1961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2978), + [1973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2996), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [1985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [1987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3000), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [1991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [1993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3007), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [2003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3009), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), + [2007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [2015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [2017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2609), + [2019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [2021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [2023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [2025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [2027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [2029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), + [2035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [2037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [2041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1151), + [2045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [2047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3068), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [2053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [2055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [2065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [2073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [2075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3037), + [2079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3765), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [2085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [2091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [2095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2381), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [2109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [2113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2419), + [2115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [2117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [2119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2676), + [2125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), + [2129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [2133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), + [2137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [2143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [2147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [2157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2914), + [2177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2916), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [2183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), + [2185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2938), + [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2947), + [2195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), + [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if_statement_directive_body_with_optional_parameter, 2), + [2217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1132), + [2220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2680), + [2223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2674), + [2226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2558), + [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3784), + [2232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3783), + [2235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3127), + [2238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3126), + [2241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(265), + [2244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(264), + [2247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3124), + [2250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3123), + [2253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3122), + [2256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3121), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3120), + [2262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(623), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(496), + [2268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3119), + [2271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3118), + [2274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3117), + [2277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(478), + [2280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(10), + [2283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(9), + [2286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(156), + [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3111), + [2292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3110), + [2295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3092), + [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3091), + [2301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3090), + [2304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3089), + [2307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3088), + [2310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3087), + [2313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3087), + [2316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3758), + [2319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(510), + [2322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3084), + [2325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3083), + [2328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3082), + [2331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3081), + [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3080), + [2337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3079), + [2340] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3078), + [2343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1055), + [2346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1055), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [2353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(578), + [2358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2608), + [2361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2606), + [2364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(2559), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3714), + [2370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3715), + [2373] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3578), + [2376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3577), + [2379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(466), + [2382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(469), + [2385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3576), + [2388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3574), + [2391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3573), + [2394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3572), + [2397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3571), + [2400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(1085), + [2403] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(507), + [2406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3570), + [2409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3569), + [2412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3568), + [2415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(486), + [2418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(62), + [2421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(64), + [2424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(166), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), + [2429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3563), + [2432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3562), + [2435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3561), + [2438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3560), + [2441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3559), + [2444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3558), + [2447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3557), + [2450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3556), + [2453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3556), + [2456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3700), + [2459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(488), + [2462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3552), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3551), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3533), + [2471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3532), + [2474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3531), + [2477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3530), + [2480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(3529), + [2483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(785), + [2486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 2), SHIFT_REPEAT(785), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1326), + [2492] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2729), + [2495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2727), + [2498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2533), + [2501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3763), + [2504] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3762), + [2507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2976), + [2510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2975), + [2513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(226), + [2516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(224), + [2519] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2974), + [2522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2973), + [2525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2972), + [2528] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2971), + [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2970), + [2534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(660), + [2537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(506), + [2540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2969), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2968), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2967), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(476), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(27), + [2555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(61), + [2558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(137), + [2561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2944), + [2564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2943), + [2567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2942), + [2570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2941), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2940), + [2576] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2939), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2937), + [2582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2936), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2936), + [2588] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3778), + [2591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(508), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2934), + [2597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2933), + [2600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2932), + [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2931), + [2606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2930), + [2609] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2928), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2927), + [2615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(839), + [2618] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(839), + [2621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(945), + [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2701), + [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2702), + [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2538), + [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3695), + [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3696), + [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3678), + [2644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3677), + [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(432), + [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(433), + [2653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3676), + [2656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3675), + [2659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3674), + [2662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3672), + [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3671), + [2668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1327), + [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(504), + [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3670), + [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3669), + [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3668), + [2683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(481), + [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(37), + [2689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(38), + [2692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(140), + [2695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3663), + [2698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3662), + [2701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3661), + [2704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3660), + [2707] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3659), + [2710] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3658), + [2713] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3657), + [2716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3656), + [2719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3656), + [2722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3688), + [2725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(489), + [2728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3654), + [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3653), + [2734] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3650), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3649), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3631), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3630), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3629), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(639), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(639), + [2755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [2759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1198), + [2762] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2607), + [2765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2609), + [2768] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2563), + [2771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3776), + [2774] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3775), + [2777] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3077), + [2780] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3075), + [2783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(254), + [2786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(253), + [2789] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3074), + [2792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3073), + [2795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3072), + [2798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3071), + [2801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3070), + [2804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1151), + [2807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(494), + [2810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3069), + [2813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3068), + [2816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3067), + [2819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(477), + [2822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(34), + [2825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(5), + [2828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(163), + [2831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3061), + [2834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3043), + [2837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3042), + [2840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3041), + [2843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3040), + [2846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3039), + [2849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3038), + [2852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3037), + [2855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3037), + [2858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3765), + [2861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(513), + [2864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3034), + [2867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3033), + [2870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3032), + [2873] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3031), + [2876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3030), + [2879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3029), + [2882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3028), + [2885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(983), + [2888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(983), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [2895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(643), + [2898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2684), + [2901] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2679), + [2904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(2543), + [2907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3703), + [2910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3704), + [2913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3628), + [2916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3627), + [2919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(449), + [2922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(451), + [2925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3626), + [2928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3625), + [2931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3623), + [2934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3622), + [2937] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3621), + [2940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(1199), + [2943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(511), + [2946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3620), + [2949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3619), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3618), + [2955] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(480), + [2958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(49), + [2961] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(50), + [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(145), + [2967] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3613), + [2970] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3612), + [2973] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3611), + [2976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3610), + [2979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3609), + [2982] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3608), + [2985] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3607), + [2988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3606), + [2991] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3606), + [2994] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3694), + [2997] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(509), + [3000] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3604), + [3003] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3601), + [3006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3600), + [3009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3582), + [3012] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3581), + [3015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3580), + [3018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(3579), + [3021] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(712), + [3024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 2), SHIFT_REPEAT(712), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2639), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [3039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [3045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), + [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), + [3061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [3071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), + [3083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), + [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2910), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2908), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [3111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2262), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2640), + [3119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), + [3121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), + [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3336), + [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [3137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3338), + [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), + [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3351), + [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [3149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [3169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), + [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), + [3177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), + [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), + [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2447), + [3203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [3207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3687), + [3211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), + [3215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2945), + [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [3219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2956), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), + [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3004), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), + [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [3241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [3255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [3261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [3263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3102), + [3265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [3267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [3269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [3271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3104), + [3273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [3275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [3277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [3279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [3281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [3283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [3285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [3287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), + [3289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [3291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [3293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [3295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [3299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [3301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [3303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [3305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), + [3309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [3311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [3313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [3319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [3323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [3329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [3331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [3333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [3335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [3337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [3339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [3341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [3343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [3345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), + [3347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [3353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [3355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [3357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [3359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 1), + [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [3365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3475), + [3367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [3369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [3371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), + [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [3389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3454), + [3405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), + [3409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [3411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), + [3423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [3425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [3435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2070), + [3438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2686), + [3441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2681), + [3444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2542), + [3447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3693), + [3450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3692), + [3453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3599), + [3456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3602), + [3459] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(439), + [3462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(440), + [3465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3614), + [3468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3615), + [3471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3616), + [3474] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3617), + [3477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3624), + [3480] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3632), + [3483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3633), + [3486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3634), + [3489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(529), + [3492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(45), + [3495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(46), + [3498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(149), + [3501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3635), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3636), + [3507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3637), + [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3638), + [3513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3639), + [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3640), + [3519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3643), + [3522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3644), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3644), + [3528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3689), + [3531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(673), + [3534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3646), + [3537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3647), + [3540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3648), + [3543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3652), + [3546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3596), + [3549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3683), + [3552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3664), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), + [3557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2259), + [3560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2259), + [3563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2008), + [3566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2720), + [3569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2721), + [3572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2534), + [3575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3698), + [3578] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3697), + [3581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3538), + [3584] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3541), + [3587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(408), + [3590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(409), + [3593] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3542), + [3596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3547), + [3599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3548), + [3602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3549), + [3605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3550), + [3608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3553), + [3611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3554), + [3614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3564), + [3617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(528), + [3620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(36), + [3623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(41), + [3626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(153), + [3629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3565), + [3632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3566), + [3635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3567), + [3638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3575), + [3641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3583), + [3644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3584), + [3647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3585), + [3650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3586), + [3653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3586), + [3656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3699), + [3659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(675), + [3662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3588), + [3665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3589), + [3668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3590), + [3671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3591), + [3674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3594), + [3677] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3595), + [3680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3534), + [3683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2256), + [3686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2256), + [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [3691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), + [3693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [3699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), + [3703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [3705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [3707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [3709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [3715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3465), + [3719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [3721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), + [3723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [3731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [3741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [3743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3706), + [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_body_with_parameter, 2), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), + [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), + [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), + [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), + [3771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2263), + [3773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2263), + [3775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [3781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2132), + [3784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2639), + [3787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2637), + [3790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2550), + [3793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3690), + [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3691), + [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3655), + [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3645), + [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(460), + [3808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(461), + [3811] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3605), + [3814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3598), + [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3597), + [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3593), + [3823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3352), + [3826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3296), + [3829] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3286), + [3832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3241), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(530), + [3838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(54), + [3841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(55), + [3844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(157), + [3847] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3240), + [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3236), + [3853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3200), + [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3197), + [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3196), + [3862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3186), + [3865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3001), + [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2910), + [3871] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2910), + [3874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3780), + [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), + [3879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(667), + [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2909), + [3885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2908), + [3888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2907), + [3891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2906), + [3894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3215), + [3897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3419), + [3900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3437), + [3903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2262), + [3906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2262), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [3911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [3927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [3929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1894), + [3932] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2640), + [3935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2642), + [3938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2549), + [3941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3684), + [3944] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3685), + [3947] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3299), + [3950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3336), + [3953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(416), + [3956] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(417), + [3959] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3338), + [3962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3347), + [3965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3348), + [3968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3351), + [3971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3386), + [3974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3392), + [3977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3394), + [3980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3396), + [3983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(517), + [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(20), + [3989] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(25), + [3992] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(138), + [3995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3436), + [3998] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3446), + [4001] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3453), + [4004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3494), + [4007] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3495), + [4010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3498), + [4013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3503), + [4016] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3515), + [4019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3515), + [4022] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3705), + [4025] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1134), + [4028] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3539), + [4031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3540), + [4034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3543), + [4037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3587), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3592), + [4043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3680), + [4046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3679), + [4049] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2474), + [4052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2474), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1293), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2447), + [4094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2631), + [4097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2726), + [4100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2539), + [4103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3687), + [4106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3785), + [4109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2955), + [4112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2945), + [4115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(402), + [4118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(404), + [4121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2935), + [4124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2956), + [4127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2964), + [4130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2965), + [4133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2985), + [4136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3004), + [4139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3005), + [4142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3027), + [4145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(518), + [4148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(28), + [4151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(47), + [4154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(167), + [4157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3044), + [4160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3053), + [4163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3058), + [4166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3064), + [4169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3065), + [4172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3086), + [4175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3101), + [4178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3102), + [4181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3102), + [4184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3755), + [4187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1200), + [4190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3103), + [4193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3104), + [4196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3134), + [4199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3136), + [4202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3157), + [4205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3158), + [4208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3298), + [4211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2458), + [4214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2458), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [4225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [4243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [4275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [4283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [4289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [4303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [4325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1622), + [4328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2658), + [4331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2659), + [4334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2546), + [4337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3747), + [4340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3748), + [4343] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3377), + [4346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3376), + [4349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(336), + [4352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(335), + [4355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3375), + [4358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3374), + [4361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3373), + [4364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3372), + [4367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3371), + [4370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3369), + [4373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3368), + [4376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3367), + [4379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(522), + [4382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(29), + [4385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3), + [4388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(142), + [4391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3363), + [4394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3362), + [4397] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3361), + [4400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3360), + [4403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3359), + [4406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3356), + [4409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3355), + [4412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3337), + [4415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3337), + [4418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3727), + [4421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(784), + [4424] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3335), + [4427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3334), + [4430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3333), + [4433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2878), + [4436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3331), + [4439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3329), + [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3328), + [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1382), + [4448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1382), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2693), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3275), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), + [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3268), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3738), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), + [4553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2268), + [4562] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2581), + [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2584), + [4568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2556), + [4571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3767), + [4574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3766), + [4577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3035), + [4580] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3054), + [4583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(329), + [4586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(330), + [4589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3151), + [4592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3152), + [4595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3201), + [4598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3211), + [4601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3249), + [4604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3250), + [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3259), + [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3295), + [4613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(516), + [4616] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(22), + [4619] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(23), + [4622] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(151), + [4625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3397), + [4628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3398), + [4631] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3428), + [4634] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3445), + [4637] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3544), + [4640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3555), + [4643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3641), + [4646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3642), + [4649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3642), + [4652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3686), + [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(1328), + [4658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3673), + [4661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3681), + [4664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3682), + [4667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3667), + [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3666), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3665), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(3535), + [4679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2326), + [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 2), SHIFT_REPEAT(2326), + [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2612), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3736), + [4701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [4705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [4709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [4711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [4713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), + [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [4723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3418), + [4725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [4727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [4731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [4733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [4737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [4741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3410), + [4743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [4745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [4747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [4749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), + [4751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [4753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [4755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [4757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [4771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [4783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1946), + [4786] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2687), + [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2688), + [4792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2541), + [4795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3702), + [4798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3701), + [4801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3415), + [4804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3416), + [4807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(388), + [4810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(389), + [4813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3438), + [4816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3442), + [4819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3443), + [4822] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3444), + [4825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3449), + [4828] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3450), + [4831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3451), + [4834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3452), + [4837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(527), + [4840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(30), + [4843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2), + [4846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(152), + [4849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3456), + [4852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3464), + [4855] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3477), + [4858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3485), + [4861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3487), + [4864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3491), + [4867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3492), + [4870] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3493), + [4873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3493), + [4876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3708), + [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(677), + [4882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3499), + [4885] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3500), + [4888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3501), + [4891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3526), + [4894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3407), + [4897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3536), + [4900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3537), + [4903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2197), + [4906] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2197), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [4925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [4931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3632), + [4943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3634), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3635), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3636), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), + [4963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), + [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3647), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3648), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3652), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3664), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [5009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2470), + [5012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2643), + [5015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2660), + [5018] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2545), + [5021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3722), + [5024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3723), + [5027] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3528), + [5030] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3527), + [5033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(385), + [5036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(382), + [5039] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3525), + [5042] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3524), + [5045] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3523), + [5048] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3522), + [5051] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3521), + [5054] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3520), + [5057] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3519), + [5060] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3518), + [5063] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(532), + [5066] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(31), + [5069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(32), + [5072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(165), + [5075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3513), + [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3512), + [5081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3511), + [5084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3510), + [5087] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3509), + [5090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3508), + [5093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3507), + [5096] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3506), + [5099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3506), + [5102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3707), + [5105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(566), + [5108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3502), + [5111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3484), + [5114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3483), + [5117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3482), + [5120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3481), + [5123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3480), + [5126] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3479), + [5129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1561), + [5132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1561), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), + [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2194), + [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2605), + [5179] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2604), + [5182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2557), + [5185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3739), + [5188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3740), + [5191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3439), + [5194] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3440), + [5197] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(364), + [5200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(360), + [5203] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3441), + [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3447), + [5209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3448), + [5212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3455), + [5215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3465), + [5218] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3466), + [5221] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3468), + [5224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3486), + [5227] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(531), + [5230] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(56), + [5233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(57), + [5236] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(159), + [5239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3488), + [5242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3489), + [5245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3490), + [5248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3496), + [5251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3497), + [5254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3504), + [5257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3505), + [5260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3514), + [5263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3514), + [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3706), + [5269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(663), + [5272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3516), + [5275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3517), + [5278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3406), + [5281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3545), + [5284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3546), + [5287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3603), + [5290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3651), + [5293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2263), + [5296] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2263), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), + [5335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1884), + [5338] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2648), + [5341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2649), + [5344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2547), + [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3710), + [5350] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3709), + [5353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3346), + [5356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3349), + [5359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(341), + [5362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(170), + [5365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3350), + [5368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3353), + [5371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3354), + [5374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3357), + [5377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3358), + [5380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3364), + [5383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3365), + [5386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3281), + [5389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(526), + [5392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(17), + [5395] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(18), + [5398] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(146), + [5401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3370), + [5404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3379), + [5407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3387), + [5410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3388), + [5413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3389), + [5416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3390), + [5419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3391), + [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3393), + [5425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3393), + [5428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3719), + [5431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(681), + [5434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3395), + [5437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3400), + [5440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3401), + [5443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3402), + [5446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3403), + [5449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3366), + [5452] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3414), + [5455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2135), + [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2135), + [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), + [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [5467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), + [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3698), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3542), + [5483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), + [5509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), + [5511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3583), + [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), + [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), + [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3586), + [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), + [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), + [5533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3591), + [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), + [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), + [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2256), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [5551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1822), + [5554] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2623), + [5557] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2624), + [5560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2532), + [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3713), + [5566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3712), + [5569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3291), + [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3292), + [5575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(302), + [5578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(303), + [5581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3293), + [5584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3294), + [5587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3297), + [5590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3300), + [5593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3301), + [5596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3302), + [5599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3303), + [5602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3304), + [5605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(514), + [5608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(12), + [5611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(13), + [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(135), + [5617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3305), + [5620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3308), + [5623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3309), + [5626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3314), + [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3315), + [5632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3316), + [5635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3321), + [5638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3330), + [5641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3330), + [5644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3726), + [5647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(685), + [5650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3339), + [5653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3340), + [5656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3341), + [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3342), + [5662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3343), + [5665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3344), + [5668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3345), + [5671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2073), + [5674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2073), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3702), + [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), + [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3416), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [5703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [5721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [5727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [5729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [5731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [5733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [5737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [5753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), + [5759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), + [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3748), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3376), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [5785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3375), + [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [5795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3369), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3363), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3362), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3337), + [5825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3337), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3333), + [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3331), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [5845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [5849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), + [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1760), + [5860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2582), + [5863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2583), + [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2555), + [5869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3718), + [5872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3717), + [5875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3148), + [5878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3214), + [5881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(273), + [5884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(274), + [5887] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3216), + [5890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3223), + [5893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3232), + [5896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3242), + [5899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3243), + [5902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3244), + [5905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3245), + [5908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3246), + [5911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(525), + [5914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(7), + [5917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(6), + [5920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(155), + [5923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3247), + [5926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3248), + [5929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3251), + [5932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3252), + [5935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3253), + [5938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3254), + [5941] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3255), + [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3256), + [5947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3256), + [5950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3733), + [5953] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(689), + [5956] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3260), + [5959] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3264), + [5962] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3265), + [5965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2877), + [5968] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3210), + [5971] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3289), + [5974] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3290), + [5977] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2011), + [5980] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2011), + [5983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [5999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3357), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3358), + [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3364), + [6017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3365), + [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), + [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3388), + [6037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3393), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3395), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3401), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [6065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [6079] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1698), + [6082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2722), + [6085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2710), + [6088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2537), + [6091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3725), + [6094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3724), + [6097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3149), + [6100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3150), + [6103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(171), + [6106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(218), + [6109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3153), + [6112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3154), + [6115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3155), + [6118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3156), + [6121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3161), + [6124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3162), + [6127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3164), + [6130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3165), + [6133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(524), + [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(65), + [6139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(63), + [6142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(164), + [6145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3166), + [6148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3174), + [6151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3183), + [6154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3191), + [6157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3192), + [6160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3193), + [6163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3194), + [6166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3195), + [6169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3195), + [6172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3744), + [6175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(692), + [6178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3198), + [6181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3199), + [6184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3203), + [6187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3204), + [6190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3205), + [6193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3206), + [6196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3207), + [6199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1949), + [6202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1949), + [6205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2343), + [6208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2571), + [6211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2572), + [6214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2562), + [6217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3730), + [6220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3731), + [6223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3478), + [6226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3476), + [6229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(348), + [6232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(346), + [6235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3475), + [6238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3474), + [6241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3473), + [6244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3472), + [6247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3471), + [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3470), + [6253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3469), + [6256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3467), + [6259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(515), + [6262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(53), + [6265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(52), + [6268] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(136), + [6271] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3463), + [6274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3462), + [6277] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3461), + [6280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3460), + [6283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3459), + [6286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3458), + [6289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3457), + [6292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3454), + [6295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3454), + [6298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3711), + [6301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(638), + [6304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3435), + [6307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3434), + [6310] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3433), + [6313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3432), + [6316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3431), + [6319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3430), + [6322] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3429), + [6325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1500), + [6328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1500), + [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2623), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [6341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [6345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), + [6357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), + [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [6365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3314), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [6397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3339), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [6411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2073), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), + [6435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [6441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [6453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), + [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), + [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3185), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [6495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [6509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1441), + [6512] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2635), + [6515] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2627), + [6518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2561), + [6521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3773), + [6524] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3774), + [6527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3227), + [6530] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3226), + [6533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(291), + [6536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(290), + [6539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3225), + [6542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3224), + [6545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3222), + [6548] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3221), + [6551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3220), + [6554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3219), + [6557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3218), + [6560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3217), + [6563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(519), + [6566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(16), + [6569] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(15), + [6572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(148), + [6575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3213), + [6578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3212), + [6581] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3209), + [6584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3208), + [6587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3190), + [6590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3189), + [6593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3188), + [6596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3187), + [6599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3187), + [6602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3746), + [6605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(999), + [6608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3185), + [6611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3184), + [6614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3182), + [6617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3181), + [6620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3180), + [6623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3179), + [6626] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3178), + [6629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1376), + [6632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1376), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), + [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), + [6715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), + [6729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1501), + [6732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2696), + [6735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2693), + [6738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2540), + [6741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3768), + [6744] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3764), + [6747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3277), + [6750] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3276), + [6753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(309), + [6756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(308), + [6759] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3275), + [6762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3274), + [6765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3273), + [6768] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3271), + [6771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3270), + [6774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3269), + [6777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3268), + [6780] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3267), + [6783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(520), + [6786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(21), + [6789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(19), + [6792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(144), + [6795] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3263), + [6798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3262), + [6801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3261), + [6804] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3258), + [6807] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3257), + [6810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3239), + [6813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3238), + [6816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3237), + [6819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3237), + [6822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3738), + [6825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(928), + [6828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3235), + [6831] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3234), + [6834] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3233), + [6837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3231), + [6840] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3230), + [6843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3229), + [6846] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3228), + [6849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1375), + [6852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1375), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [6857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3725), + [6865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), + [6869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), + [6881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), + [6887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [6935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [6977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_blade, 1), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2067), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2433), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2438), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3325), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [7025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3319), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [7051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3287), + [7059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3287), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3285), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [7109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1682), + [7112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2612), + [7115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2613), + [7118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2560), + [7121] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3736), + [7124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3737), + [7127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3427), + [7130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3426), + [7133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(420), + [7136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(413), + [7139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3425), + [7142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3424), + [7145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3423), + [7148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3422), + [7151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3421), + [7154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3420), + [7157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3418), + [7160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3417), + [7163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(523), + [7166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(42), + [7169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(40), + [7172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(143), + [7175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3413), + [7178] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3412), + [7181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3411), + [7184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3410), + [7187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3409), + [7190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3408), + [7193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3405), + [7196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3404), + [7199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3404), + [7202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3721), + [7205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(711), + [7208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3385), + [7211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3384), + [7214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3383), + [7217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3382), + [7220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3381), + [7223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3380), + [7226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3378), + [7229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1440), + [7232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1440), + [7235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [7247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [7257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1562), + [7260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2707), + [7263] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2708), + [7266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(2536), + [7269] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3753), + [7272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3757), + [7275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3327), + [7278] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3326), + [7281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(324), + [7284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(323), + [7287] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3325), + [7290] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3324), + [7293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3323), + [7296] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3322), + [7299] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3320), + [7302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3319), + [7305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3318), + [7308] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3317), + [7311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(521), + [7314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(26), + [7317] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(24), + [7320] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(139), + [7323] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3313), + [7326] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3312), + [7329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3311), + [7332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3310), + [7335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3307), + [7338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3306), + [7341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3288), + [7344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3287), + [7347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3287), + [7350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3732), + [7353] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(857), + [7356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3285), + [7359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3284), + [7362] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3283), + [7365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3282), + [7368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3280), + [7371] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3279), + [7374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(3278), + [7377] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1380), + [7380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__directive_body, 2), SHIFT_REPEAT(1380), + [7383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [7387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [7389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [7393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 1, .production_id = 1), + [7395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 1, .production_id = 1), + [7397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), + [7401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [7403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 1), + [7405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 1), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), + [7409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2741), + [7413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), + [7415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), + [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__if, 3), + [7429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__if, 3), + [7431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_livewire, 1), + [7433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_livewire, 1), + [7435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 2), + [7437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 2), + [7439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unless, 3), + [7441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unless, 3), + [7443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__isset, 3), + [7445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__isset, 3), + [7447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__empty, 3), + [7449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__empty, 3), + [7451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_keyword, 2), + [7453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_keyword, 2), + [7455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__auth, 3), + [7457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__auth, 3), + [7459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2), + [7461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 2), + [7463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__guest, 3), + [7465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__guest, 3), + [7467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__production, 3), + [7469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__production, 3), + [7471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env, 3), + [7473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__env, 3), + [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__hasSection, 3), + [7477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__hasSection, 3), + [7479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__sectionMissing, 3), + [7481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__sectionMissing, 3), + [7483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__error, 3), + [7485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__error, 3), + [7487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__can, 3), + [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__can, 3), + [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cannot, 3), + [7493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cannot, 3), + [7495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__canany, 3), + [7497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__canany, 3), + [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__custom, 3), + [7501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__custom, 3), + [7503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 3), + [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 3), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for, 3), + [7509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for, 3), + [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__foreach, 3), + [7513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__foreach, 3), + [7515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__forelse, 3), + [7517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__forelse, 3), + [7519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__while, 3), + [7521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__while, 3), + [7523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__persist, 3), + [7525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__persist, 3), + [7527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__teleport, 3), + [7529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__teleport, 3), + [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__volt, 3), + [7533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__volt, 3), + [7535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_raw, 2, .production_id = 1), + [7537] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_raw, 2, .production_id = 1), + [7539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 4), + [7541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 4), + [7543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 5), + [7545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 5), + [7547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch, 6), + [7549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch, 6), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 2), + [7555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 2), + [7557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 2), + [7559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 2), + [7561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition, 1, .production_id = 2), + [7563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__definition, 1, .production_id = 2), + [7565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop, 1), + [7567] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop, 1), + [7569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional, 1), + [7571] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional, 1), + [7573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stack, 1), + [7575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_stack, 1), + [7577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__nested_directive, 1), + [7579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__nested_directive, 1), + [7581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__raw, 1), + [7583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__raw, 1), + [7585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_php_statement, 1), + [7587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_php_statement, 1), + [7589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__definition, 1), + [7591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__definition, 1), + [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword, 1), + [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_keyword, 1), + [7597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 1), + [7599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_repeat1, 1), + [7601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prependOnce, 3), + [7603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prependOnce, 3), + [7605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__prepend, 3), + [7607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__prepend, 3), + [7609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushIf, 3), + [7611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushIf, 3), + [7613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pushOnce, 3), + [7615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pushOnce, 3), + [7617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__push, 3), + [7619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__push, 3), + [7621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 3), + [7623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 3), + [7625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 3), + [7627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 3), + [7629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_section, 3), + [7631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_section, 3), + [7633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment, 3), + [7635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment, 3), + [7637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multi_line_raw, 3), + [7639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__multi_line_raw, 3), + [7641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unescaped, 3), + [7643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unescaped, 3), + [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__escaped, 3), + [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__escaped, 3), + [7649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_operator, 2, .production_id = 1), + [7651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_operator, 2, .production_id = 1), + [7653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_verbatim, 2), + [7655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_verbatim, 2), + [7657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_once, 2), + [7659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_once, 2), + [7661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inline_directive, 2), + [7663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inline_directive, 2), + [7665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [7667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_text, 1), + [7669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_text, 1), + [7671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 3), + [7673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 3), + [7675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__directive_parameter, 2), + [7677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__directive_parameter, 2), + [7679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2860), + [7681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [7683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [7685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [7689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [7691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), + [7695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), + [7699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2770), + [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), + [7703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), + [7705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), + [7707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [7709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [7711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 1), + [7713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__if_statement_directive_body_with_no_parameter, 1), + [7715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__directive_body, 1), + [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__directive_body, 1), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_blade_repeat1, 1), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_blade_repeat1, 1), + [7725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2870), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [7731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [7733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [7735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [7739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [7743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [7745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), + [7779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [7781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [7797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [7803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [7829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [7833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2376), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [7839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2384), + [7843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [7845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [7847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [7851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [7857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [7859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 2), + [7861] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2872), + [7864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2872), + [7867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [7869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [7871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [7873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [7875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [7877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [7879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [7881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), + [7883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 2), + [7887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 2), SHIFT_REPEAT(2871), + [7890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 2), SHIFT_REPEAT(2871), + [7893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2208), + [7895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [7897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), + [7899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [7903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [7909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [7911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [7915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), + [7923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [7929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1835), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [7941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [7943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [7945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [7947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [7957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7961] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2870), + [7964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2870), + [7967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [7983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [7985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [7997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [7999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [8001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [8027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [8029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2093), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [8037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [8061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [8063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [8065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [8067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [8075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [8081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [8083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [8091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1349), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [8135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [8139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2873), + [8142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 2), SHIFT_REPEAT(2873), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [8151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [8159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [8161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [8163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [8165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [8167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), + [8169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [8171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [8175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [8177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1063), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [8189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [8191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [8197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [8199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [8203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2432), + [8205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [8209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [8211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [8213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2260), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2058), + [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [8231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1970), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [8241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [8251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [8257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [8259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [8263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2455), + [8265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [8271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [8273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [8275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [8277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [8281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [8283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [8287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [8293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [8305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [8311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), + [8313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [8317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [8319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [8321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [8323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3066), + [8325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [8327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), + [8329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [8331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), + [8333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [8335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [8337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [8343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [8345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [8355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [8357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), + [8359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), + [8363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 2), SHIFT_REPEAT(3272), + [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [8372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 2), + [8374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 2), SHIFT_REPEAT(3399), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [8379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [8381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2261), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [8385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [8395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [8397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1818), + [8399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [8403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), + [8411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [8413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [8415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1194), + [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [8429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), + [8435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [8437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [8439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 2), SHIFT_REPEAT(3066), + [8442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [8448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), + [8450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [8452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [8468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2463), + [8476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [8480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2190), + [8482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [8486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [8488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [8492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), + [8494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [8498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [8500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [8502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2359), + [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [8510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [8512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__escaped_repeat1, 1, .production_id = 3), + [8516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__escaped_repeat1, 1, .production_id = 3), + [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comment_repeat1, 1), + [8520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comment_repeat1, 1), + [8522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1), + [8524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__case, 3), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_repeat1, 1), + [8530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [8534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__directive_parameter_repeat1, 1), + [8536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 3), + [8538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__text_with_parenthesis, 4), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), + [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [8552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [8554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), + [8570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2226), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2188), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2187), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2186), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), + [8610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [8612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [8614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2180), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [8632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [8640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2162), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), + [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), + [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2109), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2064), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2044), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), + [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2038), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), + [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), + [8928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1790), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [9220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [9284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1370), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1401), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1403), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1405), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1409), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1456), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1519), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2396), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2411), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(582), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2428), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2380), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2348), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [10218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [10220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), + [10222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), + [10224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), + [10226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [10228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [10230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [10232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [10234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [10236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [10242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2310), + [10244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), + [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [10248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [10250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [10252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [10254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), + [10258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), + [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [10264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), + [10266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [10268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [10270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [10272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [10274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [10276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [10278] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [10282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), + [10284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), + [10286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [10288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [10290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [10292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [10294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [10296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [10298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [10304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [10306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [10308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), + [10312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), + [10316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [10320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [10322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [10324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [10326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [10328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [10330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [10332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [10334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), + [10336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 3), + [10338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), }; #ifdef __cplusplus