dust/tree-sitter-dust/src/parser.c
2023-11-14 22:26:32 -05:00

22217 lines
497 KiB
C

#include <tree_sitter/parser.h>
#if defined(__GNUC__) || defined(__clang__)
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wmissing-field-initializers"
#endif
#define LANGUAGE_VERSION 14
#define STATE_COUNT 484
#define LARGE_STATE_COUNT 2
#define SYMBOL_COUNT 134
#define ALIAS_COUNT 0
#define TOKEN_COUNT 88
#define EXTERNAL_TOKEN_COUNT 0
#define FIELD_COUNT 6
#define MAX_ALIAS_SEQUENCE_LENGTH 7
#define PRODUCTION_ID_COUNT 5
enum {
sym_identifier = 1,
sym__comment = 2,
anon_sym_async = 3,
anon_sym_LBRACE = 4,
anon_sym_RBRACE = 5,
anon_sym_SEMI = 6,
anon_sym_DASH_GT = 7,
anon_sym_LPAREN = 8,
anon_sym_RPAREN = 9,
anon_sym_COMMA = 10,
sym_integer = 11,
sym_float = 12,
sym_string = 13,
anon_sym_true = 14,
anon_sym_false = 15,
anon_sym_LBRACK = 16,
anon_sym_RBRACK = 17,
anon_sym_EQ = 18,
anon_sym_COLON = 19,
anon_sym_DOT_DOT = 20,
anon_sym_PLUS = 21,
anon_sym_DASH = 22,
anon_sym_STAR = 23,
anon_sym_SLASH = 24,
anon_sym_PERCENT = 25,
anon_sym_EQ_EQ = 26,
anon_sym_BANG_EQ = 27,
anon_sym_AMP_AMP = 28,
anon_sym_PIPE_PIPE = 29,
anon_sym_GT = 30,
anon_sym_LT = 31,
anon_sym_GT_EQ = 32,
anon_sym_LT_EQ = 33,
anon_sym_PLUS_EQ = 34,
anon_sym_DASH_EQ = 35,
anon_sym_if = 36,
anon_sym_elseif = 37,
anon_sym_else = 38,
anon_sym_match = 39,
anon_sym_EQ_GT = 40,
anon_sym_while = 41,
anon_sym_for = 42,
anon_sym_asyncfor = 43,
anon_sym_in = 44,
anon_sym_transform = 45,
anon_sym_filter = 46,
anon_sym_find = 47,
anon_sym_remove = 48,
anon_sym_from = 49,
anon_sym_reduce = 50,
anon_sym_to = 51,
anon_sym_select = 52,
anon_sym_insert = 53,
anon_sym_into = 54,
anon_sym_PIPE = 55,
anon_sym_table = 56,
anon_sym_assert = 57,
anon_sym_assert_equal = 58,
anon_sym_context = 59,
anon_sym_download = 60,
anon_sym_help = 61,
anon_sym_length = 62,
anon_sym_output = 63,
anon_sym_output_error = 64,
anon_sym_type = 65,
anon_sym_append = 66,
anon_sym_metadata = 67,
anon_sym_move = 68,
anon_sym_read = 69,
anon_sym_workdir = 70,
anon_sym_write = 71,
anon_sym_from_json = 72,
anon_sym_to_json = 73,
anon_sym_to_string = 74,
anon_sym_to_float = 75,
anon_sym_bash = 76,
anon_sym_fish = 77,
anon_sym_raw = 78,
anon_sym_sh = 79,
anon_sym_zsh = 80,
anon_sym_random = 81,
anon_sym_random_boolean = 82,
anon_sym_random_float = 83,
anon_sym_random_integer = 84,
anon_sym_columns = 85,
anon_sym_rows = 86,
anon_sym_reverse = 87,
sym_root = 88,
sym_block = 89,
sym_statement = 90,
sym_yield = 91,
sym_expression = 92,
sym__expression_kind = 93,
aux_sym__expression_list = 94,
sym_value = 95,
sym_boolean = 96,
sym_list = 97,
sym_map = 98,
sym_index = 99,
sym_math = 100,
sym_math_operator = 101,
sym_logic = 102,
sym_logic_operator = 103,
sym_assignment = 104,
sym_index_assignment = 105,
sym_assignment_operator = 106,
sym_if_else = 107,
sym_if = 108,
sym_else_if = 109,
sym_else = 110,
sym_match = 111,
sym_while = 112,
sym_for = 113,
sym_transform = 114,
sym_filter = 115,
sym_find = 116,
sym_remove = 117,
sym_reduce = 118,
sym_select = 119,
sym_insert = 120,
sym_identifier_list = 121,
sym_table = 122,
sym_function = 123,
sym_function_call = 124,
sym__context_defined_function = 125,
sym_built_in_function = 126,
sym__built_in_function_name = 127,
aux_sym_root_repeat1 = 128,
aux_sym_list_repeat1 = 129,
aux_sym_map_repeat1 = 130,
aux_sym_if_else_repeat1 = 131,
aux_sym_match_repeat1 = 132,
aux_sym_identifier_list_repeat1 = 133,
};
static const char * const ts_symbol_names[] = {
[ts_builtin_sym_end] = "end",
[sym_identifier] = "identifier",
[sym__comment] = "_comment",
[anon_sym_async] = "async",
[anon_sym_LBRACE] = "{",
[anon_sym_RBRACE] = "}",
[anon_sym_SEMI] = ";",
[anon_sym_DASH_GT] = "->",
[anon_sym_LPAREN] = "(",
[anon_sym_RPAREN] = ")",
[anon_sym_COMMA] = ",",
[sym_integer] = "integer",
[sym_float] = "float",
[sym_string] = "string",
[anon_sym_true] = "true",
[anon_sym_false] = "false",
[anon_sym_LBRACK] = "[",
[anon_sym_RBRACK] = "]",
[anon_sym_EQ] = "=",
[anon_sym_COLON] = ":",
[anon_sym_DOT_DOT] = "..",
[anon_sym_PLUS] = "+",
[anon_sym_DASH] = "-",
[anon_sym_STAR] = "*",
[anon_sym_SLASH] = "/",
[anon_sym_PERCENT] = "%",
[anon_sym_EQ_EQ] = "==",
[anon_sym_BANG_EQ] = "!=",
[anon_sym_AMP_AMP] = "&&",
[anon_sym_PIPE_PIPE] = "||",
[anon_sym_GT] = ">",
[anon_sym_LT] = "<",
[anon_sym_GT_EQ] = ">=",
[anon_sym_LT_EQ] = "<=",
[anon_sym_PLUS_EQ] = "+=",
[anon_sym_DASH_EQ] = "-=",
[anon_sym_if] = "if",
[anon_sym_elseif] = "else if",
[anon_sym_else] = "else",
[anon_sym_match] = "match",
[anon_sym_EQ_GT] = "=>",
[anon_sym_while] = "while",
[anon_sym_for] = "for",
[anon_sym_asyncfor] = "async for",
[anon_sym_in] = "in",
[anon_sym_transform] = "transform",
[anon_sym_filter] = "filter",
[anon_sym_find] = "find",
[anon_sym_remove] = "remove",
[anon_sym_from] = "from",
[anon_sym_reduce] = "reduce",
[anon_sym_to] = "to",
[anon_sym_select] = "select",
[anon_sym_insert] = "insert",
[anon_sym_into] = "into",
[anon_sym_PIPE] = "|",
[anon_sym_table] = "table",
[anon_sym_assert] = "assert",
[anon_sym_assert_equal] = "assert_equal",
[anon_sym_context] = "context",
[anon_sym_download] = "download",
[anon_sym_help] = "help",
[anon_sym_length] = "length",
[anon_sym_output] = "output",
[anon_sym_output_error] = "output_error",
[anon_sym_type] = "type",
[anon_sym_append] = "append",
[anon_sym_metadata] = "metadata",
[anon_sym_move] = "move",
[anon_sym_read] = "read",
[anon_sym_workdir] = "workdir",
[anon_sym_write] = "write",
[anon_sym_from_json] = "from_json",
[anon_sym_to_json] = "to_json",
[anon_sym_to_string] = "to_string",
[anon_sym_to_float] = "to_float",
[anon_sym_bash] = "bash",
[anon_sym_fish] = "fish",
[anon_sym_raw] = "raw",
[anon_sym_sh] = "sh",
[anon_sym_zsh] = "zsh",
[anon_sym_random] = "random",
[anon_sym_random_boolean] = "random_boolean",
[anon_sym_random_float] = "random_float",
[anon_sym_random_integer] = "random_integer",
[anon_sym_columns] = "columns",
[anon_sym_rows] = "rows",
[anon_sym_reverse] = "reverse",
[sym_root] = "root",
[sym_block] = "block",
[sym_statement] = "statement",
[sym_yield] = "yield",
[sym_expression] = "expression",
[sym__expression_kind] = "_expression_kind",
[aux_sym__expression_list] = "_expression_list",
[sym_value] = "value",
[sym_boolean] = "boolean",
[sym_list] = "list",
[sym_map] = "map",
[sym_index] = "index",
[sym_math] = "math",
[sym_math_operator] = "math_operator",
[sym_logic] = "logic",
[sym_logic_operator] = "logic_operator",
[sym_assignment] = "assignment",
[sym_index_assignment] = "index_assignment",
[sym_assignment_operator] = "assignment_operator",
[sym_if_else] = "if_else",
[sym_if] = "if",
[sym_else_if] = "else_if",
[sym_else] = "else",
[sym_match] = "match",
[sym_while] = "while",
[sym_for] = "for",
[sym_transform] = "transform",
[sym_filter] = "filter",
[sym_find] = "find",
[sym_remove] = "remove",
[sym_reduce] = "reduce",
[sym_select] = "select",
[sym_insert] = "insert",
[sym_identifier_list] = "identifier_list",
[sym_table] = "table",
[sym_function] = "function",
[sym_function_call] = "function_call",
[sym__context_defined_function] = "_context_defined_function",
[sym_built_in_function] = "built_in_function",
[sym__built_in_function_name] = "_built_in_function_name",
[aux_sym_root_repeat1] = "root_repeat1",
[aux_sym_list_repeat1] = "list_repeat1",
[aux_sym_map_repeat1] = "map_repeat1",
[aux_sym_if_else_repeat1] = "if_else_repeat1",
[aux_sym_match_repeat1] = "match_repeat1",
[aux_sym_identifier_list_repeat1] = "identifier_list_repeat1",
};
static const TSSymbol ts_symbol_map[] = {
[ts_builtin_sym_end] = ts_builtin_sym_end,
[sym_identifier] = sym_identifier,
[sym__comment] = sym__comment,
[anon_sym_async] = anon_sym_async,
[anon_sym_LBRACE] = anon_sym_LBRACE,
[anon_sym_RBRACE] = anon_sym_RBRACE,
[anon_sym_SEMI] = anon_sym_SEMI,
[anon_sym_DASH_GT] = anon_sym_DASH_GT,
[anon_sym_LPAREN] = anon_sym_LPAREN,
[anon_sym_RPAREN] = anon_sym_RPAREN,
[anon_sym_COMMA] = anon_sym_COMMA,
[sym_integer] = sym_integer,
[sym_float] = sym_float,
[sym_string] = sym_string,
[anon_sym_true] = anon_sym_true,
[anon_sym_false] = anon_sym_false,
[anon_sym_LBRACK] = anon_sym_LBRACK,
[anon_sym_RBRACK] = anon_sym_RBRACK,
[anon_sym_EQ] = anon_sym_EQ,
[anon_sym_COLON] = anon_sym_COLON,
[anon_sym_DOT_DOT] = anon_sym_DOT_DOT,
[anon_sym_PLUS] = anon_sym_PLUS,
[anon_sym_DASH] = anon_sym_DASH,
[anon_sym_STAR] = anon_sym_STAR,
[anon_sym_SLASH] = anon_sym_SLASH,
[anon_sym_PERCENT] = anon_sym_PERCENT,
[anon_sym_EQ_EQ] = anon_sym_EQ_EQ,
[anon_sym_BANG_EQ] = anon_sym_BANG_EQ,
[anon_sym_AMP_AMP] = anon_sym_AMP_AMP,
[anon_sym_PIPE_PIPE] = anon_sym_PIPE_PIPE,
[anon_sym_GT] = anon_sym_GT,
[anon_sym_LT] = anon_sym_LT,
[anon_sym_GT_EQ] = anon_sym_GT_EQ,
[anon_sym_LT_EQ] = anon_sym_LT_EQ,
[anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ,
[anon_sym_DASH_EQ] = anon_sym_DASH_EQ,
[anon_sym_if] = anon_sym_if,
[anon_sym_elseif] = anon_sym_elseif,
[anon_sym_else] = anon_sym_else,
[anon_sym_match] = anon_sym_match,
[anon_sym_EQ_GT] = anon_sym_EQ_GT,
[anon_sym_while] = anon_sym_while,
[anon_sym_for] = anon_sym_for,
[anon_sym_asyncfor] = anon_sym_asyncfor,
[anon_sym_in] = anon_sym_in,
[anon_sym_transform] = anon_sym_transform,
[anon_sym_filter] = anon_sym_filter,
[anon_sym_find] = anon_sym_find,
[anon_sym_remove] = anon_sym_remove,
[anon_sym_from] = anon_sym_from,
[anon_sym_reduce] = anon_sym_reduce,
[anon_sym_to] = anon_sym_to,
[anon_sym_select] = anon_sym_select,
[anon_sym_insert] = anon_sym_insert,
[anon_sym_into] = anon_sym_into,
[anon_sym_PIPE] = anon_sym_PIPE,
[anon_sym_table] = anon_sym_table,
[anon_sym_assert] = anon_sym_assert,
[anon_sym_assert_equal] = anon_sym_assert_equal,
[anon_sym_context] = anon_sym_context,
[anon_sym_download] = anon_sym_download,
[anon_sym_help] = anon_sym_help,
[anon_sym_length] = anon_sym_length,
[anon_sym_output] = anon_sym_output,
[anon_sym_output_error] = anon_sym_output_error,
[anon_sym_type] = anon_sym_type,
[anon_sym_append] = anon_sym_append,
[anon_sym_metadata] = anon_sym_metadata,
[anon_sym_move] = anon_sym_move,
[anon_sym_read] = anon_sym_read,
[anon_sym_workdir] = anon_sym_workdir,
[anon_sym_write] = anon_sym_write,
[anon_sym_from_json] = anon_sym_from_json,
[anon_sym_to_json] = anon_sym_to_json,
[anon_sym_to_string] = anon_sym_to_string,
[anon_sym_to_float] = anon_sym_to_float,
[anon_sym_bash] = anon_sym_bash,
[anon_sym_fish] = anon_sym_fish,
[anon_sym_raw] = anon_sym_raw,
[anon_sym_sh] = anon_sym_sh,
[anon_sym_zsh] = anon_sym_zsh,
[anon_sym_random] = anon_sym_random,
[anon_sym_random_boolean] = anon_sym_random_boolean,
[anon_sym_random_float] = anon_sym_random_float,
[anon_sym_random_integer] = anon_sym_random_integer,
[anon_sym_columns] = anon_sym_columns,
[anon_sym_rows] = anon_sym_rows,
[anon_sym_reverse] = anon_sym_reverse,
[sym_root] = sym_root,
[sym_block] = sym_block,
[sym_statement] = sym_statement,
[sym_yield] = sym_yield,
[sym_expression] = sym_expression,
[sym__expression_kind] = sym__expression_kind,
[aux_sym__expression_list] = aux_sym__expression_list,
[sym_value] = sym_value,
[sym_boolean] = sym_boolean,
[sym_list] = sym_list,
[sym_map] = sym_map,
[sym_index] = sym_index,
[sym_math] = sym_math,
[sym_math_operator] = sym_math_operator,
[sym_logic] = sym_logic,
[sym_logic_operator] = sym_logic_operator,
[sym_assignment] = sym_assignment,
[sym_index_assignment] = sym_index_assignment,
[sym_assignment_operator] = sym_assignment_operator,
[sym_if_else] = sym_if_else,
[sym_if] = sym_if,
[sym_else_if] = sym_else_if,
[sym_else] = sym_else,
[sym_match] = sym_match,
[sym_while] = sym_while,
[sym_for] = sym_for,
[sym_transform] = sym_transform,
[sym_filter] = sym_filter,
[sym_find] = sym_find,
[sym_remove] = sym_remove,
[sym_reduce] = sym_reduce,
[sym_select] = sym_select,
[sym_insert] = sym_insert,
[sym_identifier_list] = sym_identifier_list,
[sym_table] = sym_table,
[sym_function] = sym_function,
[sym_function_call] = sym_function_call,
[sym__context_defined_function] = sym__context_defined_function,
[sym_built_in_function] = sym_built_in_function,
[sym__built_in_function_name] = sym__built_in_function_name,
[aux_sym_root_repeat1] = aux_sym_root_repeat1,
[aux_sym_list_repeat1] = aux_sym_list_repeat1,
[aux_sym_map_repeat1] = aux_sym_map_repeat1,
[aux_sym_if_else_repeat1] = aux_sym_if_else_repeat1,
[aux_sym_match_repeat1] = aux_sym_match_repeat1,
[aux_sym_identifier_list_repeat1] = aux_sym_identifier_list_repeat1,
};
static const TSSymbolMetadata ts_symbol_metadata[] = {
[ts_builtin_sym_end] = {
.visible = false,
.named = true,
},
[sym_identifier] = {
.visible = true,
.named = true,
},
[sym__comment] = {
.visible = false,
.named = true,
},
[anon_sym_async] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACE] = {
.visible = true,
.named = false,
},
[anon_sym_SEMI] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_GT] = {
.visible = true,
.named = false,
},
[anon_sym_LPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_RPAREN] = {
.visible = true,
.named = false,
},
[anon_sym_COMMA] = {
.visible = true,
.named = false,
},
[sym_integer] = {
.visible = true,
.named = true,
},
[sym_float] = {
.visible = true,
.named = true,
},
[sym_string] = {
.visible = true,
.named = true,
},
[anon_sym_true] = {
.visible = true,
.named = false,
},
[anon_sym_false] = {
.visible = true,
.named = false,
},
[anon_sym_LBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_RBRACK] = {
.visible = true,
.named = false,
},
[anon_sym_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_COLON] = {
.visible = true,
.named = false,
},
[anon_sym_DOT_DOT] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS] = {
.visible = true,
.named = false,
},
[anon_sym_DASH] = {
.visible = true,
.named = false,
},
[anon_sym_STAR] = {
.visible = true,
.named = false,
},
[anon_sym_SLASH] = {
.visible = true,
.named = false,
},
[anon_sym_PERCENT] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_BANG_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_AMP_AMP] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_GT] = {
.visible = true,
.named = false,
},
[anon_sym_LT] = {
.visible = true,
.named = false,
},
[anon_sym_GT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_LT_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_PLUS_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_DASH_EQ] = {
.visible = true,
.named = false,
},
[anon_sym_if] = {
.visible = true,
.named = false,
},
[anon_sym_elseif] = {
.visible = true,
.named = false,
},
[anon_sym_else] = {
.visible = true,
.named = false,
},
[anon_sym_match] = {
.visible = true,
.named = false,
},
[anon_sym_EQ_GT] = {
.visible = true,
.named = false,
},
[anon_sym_while] = {
.visible = true,
.named = false,
},
[anon_sym_for] = {
.visible = true,
.named = false,
},
[anon_sym_asyncfor] = {
.visible = true,
.named = false,
},
[anon_sym_in] = {
.visible = true,
.named = false,
},
[anon_sym_transform] = {
.visible = true,
.named = false,
},
[anon_sym_filter] = {
.visible = true,
.named = false,
},
[anon_sym_find] = {
.visible = true,
.named = false,
},
[anon_sym_remove] = {
.visible = true,
.named = false,
},
[anon_sym_from] = {
.visible = true,
.named = false,
},
[anon_sym_reduce] = {
.visible = true,
.named = false,
},
[anon_sym_to] = {
.visible = true,
.named = false,
},
[anon_sym_select] = {
.visible = true,
.named = false,
},
[anon_sym_insert] = {
.visible = true,
.named = false,
},
[anon_sym_into] = {
.visible = true,
.named = false,
},
[anon_sym_PIPE] = {
.visible = true,
.named = false,
},
[anon_sym_table] = {
.visible = true,
.named = false,
},
[anon_sym_assert] = {
.visible = true,
.named = false,
},
[anon_sym_assert_equal] = {
.visible = true,
.named = false,
},
[anon_sym_context] = {
.visible = true,
.named = false,
},
[anon_sym_download] = {
.visible = true,
.named = false,
},
[anon_sym_help] = {
.visible = true,
.named = false,
},
[anon_sym_length] = {
.visible = true,
.named = false,
},
[anon_sym_output] = {
.visible = true,
.named = false,
},
[anon_sym_output_error] = {
.visible = true,
.named = false,
},
[anon_sym_type] = {
.visible = true,
.named = false,
},
[anon_sym_append] = {
.visible = true,
.named = false,
},
[anon_sym_metadata] = {
.visible = true,
.named = false,
},
[anon_sym_move] = {
.visible = true,
.named = false,
},
[anon_sym_read] = {
.visible = true,
.named = false,
},
[anon_sym_workdir] = {
.visible = true,
.named = false,
},
[anon_sym_write] = {
.visible = true,
.named = false,
},
[anon_sym_from_json] = {
.visible = true,
.named = false,
},
[anon_sym_to_json] = {
.visible = true,
.named = false,
},
[anon_sym_to_string] = {
.visible = true,
.named = false,
},
[anon_sym_to_float] = {
.visible = true,
.named = false,
},
[anon_sym_bash] = {
.visible = true,
.named = false,
},
[anon_sym_fish] = {
.visible = true,
.named = false,
},
[anon_sym_raw] = {
.visible = true,
.named = false,
},
[anon_sym_sh] = {
.visible = true,
.named = false,
},
[anon_sym_zsh] = {
.visible = true,
.named = false,
},
[anon_sym_random] = {
.visible = true,
.named = false,
},
[anon_sym_random_boolean] = {
.visible = true,
.named = false,
},
[anon_sym_random_float] = {
.visible = true,
.named = false,
},
[anon_sym_random_integer] = {
.visible = true,
.named = false,
},
[anon_sym_columns] = {
.visible = true,
.named = false,
},
[anon_sym_rows] = {
.visible = true,
.named = false,
},
[anon_sym_reverse] = {
.visible = true,
.named = false,
},
[sym_root] = {
.visible = true,
.named = true,
},
[sym_block] = {
.visible = true,
.named = true,
},
[sym_statement] = {
.visible = true,
.named = true,
},
[sym_yield] = {
.visible = true,
.named = true,
},
[sym_expression] = {
.visible = true,
.named = true,
},
[sym__expression_kind] = {
.visible = false,
.named = true,
},
[aux_sym__expression_list] = {
.visible = false,
.named = false,
},
[sym_value] = {
.visible = true,
.named = true,
},
[sym_boolean] = {
.visible = true,
.named = true,
},
[sym_list] = {
.visible = true,
.named = true,
},
[sym_map] = {
.visible = true,
.named = true,
},
[sym_index] = {
.visible = true,
.named = true,
},
[sym_math] = {
.visible = true,
.named = true,
},
[sym_math_operator] = {
.visible = true,
.named = true,
},
[sym_logic] = {
.visible = true,
.named = true,
},
[sym_logic_operator] = {
.visible = true,
.named = true,
},
[sym_assignment] = {
.visible = true,
.named = true,
},
[sym_index_assignment] = {
.visible = true,
.named = true,
},
[sym_assignment_operator] = {
.visible = true,
.named = true,
},
[sym_if_else] = {
.visible = true,
.named = true,
},
[sym_if] = {
.visible = true,
.named = true,
},
[sym_else_if] = {
.visible = true,
.named = true,
},
[sym_else] = {
.visible = true,
.named = true,
},
[sym_match] = {
.visible = true,
.named = true,
},
[sym_while] = {
.visible = true,
.named = true,
},
[sym_for] = {
.visible = true,
.named = true,
},
[sym_transform] = {
.visible = true,
.named = true,
},
[sym_filter] = {
.visible = true,
.named = true,
},
[sym_find] = {
.visible = true,
.named = true,
},
[sym_remove] = {
.visible = true,
.named = true,
},
[sym_reduce] = {
.visible = true,
.named = true,
},
[sym_select] = {
.visible = true,
.named = true,
},
[sym_insert] = {
.visible = true,
.named = true,
},
[sym_identifier_list] = {
.visible = true,
.named = true,
},
[sym_table] = {
.visible = true,
.named = true,
},
[sym_function] = {
.visible = true,
.named = true,
},
[sym_function_call] = {
.visible = true,
.named = true,
},
[sym__context_defined_function] = {
.visible = false,
.named = true,
},
[sym_built_in_function] = {
.visible = true,
.named = true,
},
[sym__built_in_function_name] = {
.visible = false,
.named = true,
},
[aux_sym_root_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_list_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_map_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_if_else_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_match_repeat1] = {
.visible = false,
.named = false,
},
[aux_sym_identifier_list_repeat1] = {
.visible = false,
.named = false,
},
};
enum {
field_body = 1,
field_collection = 2,
field_count = 3,
field_item_id = 4,
field_parameters = 5,
field_predicate = 6,
};
static const char * const ts_field_names[] = {
[0] = NULL,
[field_body] = "body",
[field_collection] = "collection",
[field_count] = "count",
[field_item_id] = "item_id",
[field_parameters] = "parameters",
[field_predicate] = "predicate",
};
static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = {
[1] = {.index = 0, .length = 1},
[2] = {.index = 1, .length = 2},
[3] = {.index = 3, .length = 3},
[4] = {.index = 6, .length = 4},
};
static const TSFieldMapEntry ts_field_map_entries[] = {
[0] =
{field_body, 1},
[1] =
{field_body, 2},
{field_parameters, 0},
[3] =
{field_collection, 3},
{field_item_id, 1},
{field_predicate, 4},
[6] =
{field_collection, 4},
{field_count, 1},
{field_item_id, 2},
{field_predicate, 5},
};
static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = {
[0] = {0},
};
static const uint16_t ts_non_terminal_alias_map[] = {
0,
};
static const TSStateId ts_primary_state_ids[STATE_COUNT] = {
[0] = 0,
[1] = 1,
[2] = 2,
[3] = 2,
[4] = 2,
[5] = 2,
[6] = 2,
[7] = 7,
[8] = 7,
[9] = 9,
[10] = 10,
[11] = 10,
[12] = 12,
[13] = 12,
[14] = 12,
[15] = 15,
[16] = 10,
[17] = 12,
[18] = 10,
[19] = 12,
[20] = 12,
[21] = 10,
[22] = 12,
[23] = 12,
[24] = 10,
[25] = 10,
[26] = 12,
[27] = 10,
[28] = 10,
[29] = 29,
[30] = 29,
[31] = 29,
[32] = 32,
[33] = 29,
[34] = 32,
[35] = 29,
[36] = 32,
[37] = 29,
[38] = 32,
[39] = 32,
[40] = 29,
[41] = 32,
[42] = 32,
[43] = 29,
[44] = 32,
[45] = 32,
[46] = 29,
[47] = 47,
[48] = 48,
[49] = 47,
[50] = 48,
[51] = 51,
[52] = 52,
[53] = 53,
[54] = 54,
[55] = 55,
[56] = 56,
[57] = 55,
[58] = 58,
[59] = 53,
[60] = 58,
[61] = 54,
[62] = 56,
[63] = 63,
[64] = 64,
[65] = 65,
[66] = 66,
[67] = 67,
[68] = 68,
[69] = 69,
[70] = 70,
[71] = 71,
[72] = 72,
[73] = 73,
[74] = 74,
[75] = 75,
[76] = 76,
[77] = 77,
[78] = 78,
[79] = 54,
[80] = 55,
[81] = 81,
[82] = 53,
[83] = 55,
[84] = 58,
[85] = 85,
[86] = 56,
[87] = 56,
[88] = 53,
[89] = 89,
[90] = 54,
[91] = 89,
[92] = 58,
[93] = 93,
[94] = 76,
[95] = 73,
[96] = 96,
[97] = 78,
[98] = 74,
[99] = 66,
[100] = 63,
[101] = 67,
[102] = 71,
[103] = 70,
[104] = 72,
[105] = 77,
[106] = 64,
[107] = 96,
[108] = 75,
[109] = 65,
[110] = 110,
[111] = 111,
[112] = 112,
[113] = 113,
[114] = 113,
[115] = 113,
[116] = 113,
[117] = 113,
[118] = 53,
[119] = 54,
[120] = 55,
[121] = 121,
[122] = 58,
[123] = 123,
[124] = 55,
[125] = 56,
[126] = 126,
[127] = 56,
[128] = 58,
[129] = 54,
[130] = 53,
[131] = 76,
[132] = 74,
[133] = 73,
[134] = 63,
[135] = 72,
[136] = 71,
[137] = 67,
[138] = 66,
[139] = 78,
[140] = 64,
[141] = 65,
[142] = 77,
[143] = 143,
[144] = 75,
[145] = 70,
[146] = 146,
[147] = 112,
[148] = 148,
[149] = 149,
[150] = 110,
[151] = 73,
[152] = 64,
[153] = 153,
[154] = 154,
[155] = 155,
[156] = 156,
[157] = 157,
[158] = 158,
[159] = 73,
[160] = 160,
[161] = 161,
[162] = 162,
[163] = 163,
[164] = 164,
[165] = 165,
[166] = 160,
[167] = 167,
[168] = 168,
[169] = 169,
[170] = 170,
[171] = 171,
[172] = 172,
[173] = 173,
[174] = 160,
[175] = 175,
[176] = 172,
[177] = 64,
[178] = 172,
[179] = 160,
[180] = 160,
[181] = 181,
[182] = 158,
[183] = 172,
[184] = 184,
[185] = 172,
[186] = 186,
[187] = 187,
[188] = 188,
[189] = 189,
[190] = 190,
[191] = 191,
[192] = 192,
[193] = 189,
[194] = 194,
[195] = 195,
[196] = 196,
[197] = 197,
[198] = 197,
[199] = 55,
[200] = 197,
[201] = 192,
[202] = 202,
[203] = 203,
[204] = 202,
[205] = 192,
[206] = 192,
[207] = 189,
[208] = 208,
[209] = 194,
[210] = 54,
[211] = 56,
[212] = 212,
[213] = 203,
[214] = 189,
[215] = 215,
[216] = 216,
[217] = 217,
[218] = 218,
[219] = 208,
[220] = 197,
[221] = 194,
[222] = 197,
[223] = 189,
[224] = 192,
[225] = 194,
[226] = 189,
[227] = 194,
[228] = 189,
[229] = 53,
[230] = 208,
[231] = 197,
[232] = 197,
[233] = 192,
[234] = 58,
[235] = 194,
[236] = 194,
[237] = 190,
[238] = 238,
[239] = 215,
[240] = 208,
[241] = 196,
[242] = 195,
[243] = 191,
[244] = 216,
[245] = 194,
[246] = 197,
[247] = 189,
[248] = 208,
[249] = 217,
[250] = 250,
[251] = 218,
[252] = 197,
[253] = 238,
[254] = 194,
[255] = 255,
[256] = 192,
[257] = 189,
[258] = 192,
[259] = 192,
[260] = 192,
[261] = 55,
[262] = 212,
[263] = 255,
[264] = 250,
[265] = 189,
[266] = 197,
[267] = 194,
[268] = 54,
[269] = 56,
[270] = 53,
[271] = 54,
[272] = 58,
[273] = 273,
[274] = 58,
[275] = 56,
[276] = 55,
[277] = 55,
[278] = 53,
[279] = 78,
[280] = 85,
[281] = 66,
[282] = 76,
[283] = 58,
[284] = 65,
[285] = 54,
[286] = 56,
[287] = 70,
[288] = 53,
[289] = 77,
[290] = 64,
[291] = 75,
[292] = 67,
[293] = 74,
[294] = 63,
[295] = 71,
[296] = 73,
[297] = 72,
[298] = 74,
[299] = 68,
[300] = 73,
[301] = 63,
[302] = 65,
[303] = 66,
[304] = 69,
[305] = 67,
[306] = 76,
[307] = 64,
[308] = 77,
[309] = 71,
[310] = 72,
[311] = 78,
[312] = 75,
[313] = 70,
[314] = 89,
[315] = 89,
[316] = 93,
[317] = 317,
[318] = 318,
[319] = 319,
[320] = 320,
[321] = 318,
[322] = 322,
[323] = 323,
[324] = 319,
[325] = 325,
[326] = 326,
[327] = 327,
[328] = 317,
[329] = 322,
[330] = 327,
[331] = 331,
[332] = 323,
[333] = 325,
[334] = 326,
[335] = 331,
[336] = 320,
[337] = 337,
[338] = 338,
[339] = 338,
[340] = 337,
[341] = 341,
[342] = 342,
[343] = 342,
[344] = 344,
[345] = 344,
[346] = 344,
[347] = 344,
[348] = 344,
[349] = 153,
[350] = 64,
[351] = 73,
[352] = 352,
[353] = 353,
[354] = 354,
[355] = 355,
[356] = 356,
[357] = 357,
[358] = 121,
[359] = 123,
[360] = 126,
[361] = 148,
[362] = 149,
[363] = 64,
[364] = 73,
[365] = 163,
[366] = 158,
[367] = 165,
[368] = 171,
[369] = 154,
[370] = 169,
[371] = 168,
[372] = 167,
[373] = 162,
[374] = 170,
[375] = 156,
[376] = 158,
[377] = 173,
[378] = 187,
[379] = 157,
[380] = 181,
[381] = 188,
[382] = 382,
[383] = 383,
[384] = 384,
[385] = 385,
[386] = 386,
[387] = 387,
[388] = 388,
[389] = 385,
[390] = 383,
[391] = 391,
[392] = 386,
[393] = 391,
[394] = 386,
[395] = 395,
[396] = 384,
[397] = 384,
[398] = 386,
[399] = 383,
[400] = 385,
[401] = 385,
[402] = 402,
[403] = 403,
[404] = 384,
[405] = 384,
[406] = 406,
[407] = 406,
[408] = 383,
[409] = 383,
[410] = 386,
[411] = 385,
[412] = 412,
[413] = 413,
[414] = 414,
[415] = 415,
[416] = 412,
[417] = 415,
[418] = 412,
[419] = 415,
[420] = 415,
[421] = 412,
[422] = 412,
[423] = 412,
[424] = 412,
[425] = 412,
[426] = 412,
[427] = 413,
[428] = 428,
[429] = 415,
[430] = 412,
[431] = 431,
[432] = 432,
[433] = 433,
[434] = 434,
[435] = 435,
[436] = 436,
[437] = 431,
[438] = 438,
[439] = 439,
[440] = 440,
[441] = 441,
[442] = 442,
[443] = 442,
[444] = 444,
[445] = 436,
[446] = 446,
[447] = 439,
[448] = 438,
[449] = 440,
[450] = 450,
[451] = 451,
[452] = 452,
[453] = 435,
[454] = 454,
[455] = 455,
[456] = 456,
[457] = 438,
[458] = 458,
[459] = 444,
[460] = 441,
[461] = 438,
[462] = 458,
[463] = 435,
[464] = 435,
[465] = 435,
[466] = 435,
[467] = 435,
[468] = 435,
[469] = 435,
[470] = 434,
[471] = 433,
[472] = 472,
[473] = 454,
[474] = 456,
[475] = 458,
[476] = 458,
[477] = 452,
[478] = 446,
[479] = 451,
[480] = 458,
[481] = 438,
[482] = 450,
[483] = 432,
};
static bool ts_lex(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (eof) ADVANCE(27);
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(66);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(34);
if (lookahead == ')') ADVANCE(35);
if (lookahead == '*') ADVANCE(64);
if (lookahead == '+') ADVANCE(59);
if (lookahead == ',') ADVANCE(36);
if (lookahead == '-') ADVANCE(62);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(65);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
if (lookahead == ':') ADVANCE(56);
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(72);
if (lookahead == '=') ADVANCE(54);
if (lookahead == '>') ADVANCE(71);
if (lookahead == '[') ADVANCE(51);
if (lookahead == ']') ADVANCE(52);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(44);
if (lookahead == 'e') ADVANCE(42);
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(81);
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 1:
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(66);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(34);
if (lookahead == ')') ADVANCE(35);
if (lookahead == '*') ADVANCE(64);
if (lookahead == '+') ADVANCE(58);
if (lookahead == ',') ADVANCE(36);
if (lookahead == '-') ADVANCE(63);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(65);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
if (lookahead == ':') ADVANCE(56);
if (lookahead == '<') ADVANCE(72);
if (lookahead == '=') ADVANCE(11);
if (lookahead == '>') ADVANCE(71);
if (lookahead == '[') ADVANCE(51);
if (lookahead == ']') ADVANCE(52);
if (lookahead == '`') ADVANCE(13);
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(81);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(1)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 2:
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(66);
if (lookahead == '&') ADVANCE(7);
if (lookahead == ')') ADVANCE(35);
if (lookahead == '*') ADVANCE(64);
if (lookahead == '+') ADVANCE(58);
if (lookahead == ',') ADVANCE(36);
if (lookahead == '-') ADVANCE(61);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(65);
if (lookahead == ':') ADVANCE(56);
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(72);
if (lookahead == '=') ADVANCE(11);
if (lookahead == '>') ADVANCE(71);
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(20);
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(2)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 3:
if (lookahead == '!') ADVANCE(10);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(66);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '*') ADVANCE(64);
if (lookahead == '+') ADVANCE(59);
if (lookahead == ',') ADVANCE(36);
if (lookahead == '-') ADVANCE(60);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(65);
if (lookahead == ':') ADVANCE(56);
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(72);
if (lookahead == '=') ADVANCE(53);
if (lookahead == '>') ADVANCE(71);
if (lookahead == '|') ADVANCE(20);
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(3)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 4:
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(34);
if (lookahead == ')') ADVANCE(35);
if (lookahead == ',') ADVANCE(36);
if (lookahead == '-') ADVANCE(21);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
if (lookahead == ';') ADVANCE(32);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '[') ADVANCE(51);
if (lookahead == ']') ADVANCE(52);
if (lookahead == '`') ADVANCE(13);
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(80);
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(4)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 5:
if (lookahead == '"') ADVANCE(50);
if (lookahead != 0) ADVANCE(5);
END_STATE();
case 6:
if (lookahead == '#') ADVANCE(19);
if (lookahead == ',') ADVANCE(36);
if (lookahead == ';') ADVANCE(32);
if (lookahead == 'e') ADVANCE(42);
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(6)
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 7:
if (lookahead == '&') ADVANCE(69);
END_STATE();
case 8:
if (lookahead == '\'') ADVANCE(50);
if (lookahead != 0) ADVANCE(8);
END_STATE();
case 9:
if (lookahead == '.') ADVANCE(57);
END_STATE();
case 10:
if (lookahead == '=') ADVANCE(68);
END_STATE();
case 11:
if (lookahead == '=') ADVANCE(67);
if (lookahead == '>') ADVANCE(78);
END_STATE();
case 12:
if (lookahead == '>') ADVANCE(78);
END_STATE();
case 13:
if (lookahead == '`') ADVANCE(50);
if (lookahead != 0) ADVANCE(13);
END_STATE();
case 14:
if (lookahead == 'f') ADVANCE(17);
END_STATE();
case 15:
if (lookahead == 'f') ADVANCE(77);
END_STATE();
case 16:
if (lookahead == 'i') ADVANCE(15);
END_STATE();
case 17:
if (lookahead == 'o') ADVANCE(18);
END_STATE();
case 18:
if (lookahead == 'r') ADVANCE(79);
END_STATE();
case 19:
if (lookahead == '|') ADVANCE(29);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(28);
if (lookahead != 0) ADVANCE(19);
END_STATE();
case 20:
if (lookahead == '|') ADVANCE(70);
END_STATE();
case 21:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
END_STATE();
case 22:
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
END_STATE();
case 23:
if (eof) ADVANCE(27);
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(66);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(34);
if (lookahead == '*') ADVANCE(64);
if (lookahead == '+') ADVANCE(59);
if (lookahead == '-') ADVANCE(62);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(65);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
if (lookahead == ':') ADVANCE(56);
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(72);
if (lookahead == '=') ADVANCE(54);
if (lookahead == '>') ADVANCE(71);
if (lookahead == '[') ADVANCE(51);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(44);
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(81);
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(23)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 24:
if (eof) ADVANCE(27);
if (lookahead == '!') ADVANCE(10);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '%') ADVANCE(66);
if (lookahead == '&') ADVANCE(7);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(34);
if (lookahead == '*') ADVANCE(64);
if (lookahead == '+') ADVANCE(58);
if (lookahead == '-') ADVANCE(63);
if (lookahead == '.') ADVANCE(9);
if (lookahead == '/') ADVANCE(65);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
if (lookahead == ':') ADVANCE(56);
if (lookahead == ';') ADVANCE(32);
if (lookahead == '<') ADVANCE(72);
if (lookahead == '=') ADVANCE(11);
if (lookahead == '>') ADVANCE(71);
if (lookahead == '[') ADVANCE(51);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(44);
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(81);
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(24)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 25:
if (eof) ADVANCE(27);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(34);
if (lookahead == '-') ADVANCE(21);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
if (lookahead == ';') ADVANCE(32);
if (lookahead == '=') ADVANCE(55);
if (lookahead == '[') ADVANCE(51);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(44);
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(80);
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(25)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 26:
if (eof) ADVANCE(27);
if (lookahead == '"') ADVANCE(5);
if (lookahead == '#') ADVANCE(19);
if (lookahead == '\'') ADVANCE(8);
if (lookahead == '(') ADVANCE(34);
if (lookahead == '-') ADVANCE(21);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
if (lookahead == ';') ADVANCE(32);
if (lookahead == '=') ADVANCE(12);
if (lookahead == '[') ADVANCE(51);
if (lookahead == '`') ADVANCE(13);
if (lookahead == 'a') ADVANCE(44);
if (lookahead == 'e') ADVANCE(42);
if (lookahead == '{') ADVANCE(30);
if (lookahead == '|') ADVANCE(80);
if (lookahead == '}') ADVANCE(31);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(26)
if (('A' <= lookahead && lookahead <= 'Z') ||
('_' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 27:
ACCEPT_TOKEN(ts_builtin_sym_end);
END_STATE();
case 28:
ACCEPT_TOKEN(sym__comment);
END_STATE();
case 29:
ACCEPT_TOKEN(sym__comment);
if (lookahead == '|') ADVANCE(29);
if (lookahead == '\n' ||
lookahead == '#') ADVANCE(28);
if (lookahead != 0) ADVANCE(19);
END_STATE();
case 30:
ACCEPT_TOKEN(anon_sym_LBRACE);
END_STATE();
case 31:
ACCEPT_TOKEN(anon_sym_RBRACE);
END_STATE();
case 32:
ACCEPT_TOKEN(anon_sym_SEMI);
END_STATE();
case 33:
ACCEPT_TOKEN(anon_sym_DASH_GT);
END_STATE();
case 34:
ACCEPT_TOKEN(anon_sym_LPAREN);
END_STATE();
case 35:
ACCEPT_TOKEN(anon_sym_RPAREN);
END_STATE();
case 36:
ACCEPT_TOKEN(anon_sym_COMMA);
END_STATE();
case 37:
ACCEPT_TOKEN(sym_identifier);
END_STATE();
case 38:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(16);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 39:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == ' ') ADVANCE(14);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 40:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'c') ADVANCE(39);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 41:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'e') ADVANCE(38);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 42:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'l') ADVANCE(45);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 43:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'n') ADVANCE(40);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 44:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(46);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 45:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 's') ADVANCE(41);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 46:
ACCEPT_TOKEN(sym_identifier);
if (lookahead == 'y') ADVANCE(43);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 47:
ACCEPT_TOKEN(sym_identifier);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(37);
if (('A' <= lookahead && lookahead <= 'Z') ||
lookahead == '_' ||
('a' <= lookahead && lookahead <= 'z')) ADVANCE(47);
END_STATE();
case 48:
ACCEPT_TOKEN(sym_integer);
if (lookahead == '.') ADVANCE(22);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
END_STATE();
case 49:
ACCEPT_TOKEN(sym_float);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(49);
END_STATE();
case 50:
ACCEPT_TOKEN(sym_string);
END_STATE();
case 51:
ACCEPT_TOKEN(anon_sym_LBRACK);
END_STATE();
case 52:
ACCEPT_TOKEN(anon_sym_RBRACK);
END_STATE();
case 53:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(67);
END_STATE();
case 54:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '=') ADVANCE(67);
if (lookahead == '>') ADVANCE(78);
END_STATE();
case 55:
ACCEPT_TOKEN(anon_sym_EQ);
if (lookahead == '>') ADVANCE(78);
END_STATE();
case 56:
ACCEPT_TOKEN(anon_sym_COLON);
END_STATE();
case 57:
ACCEPT_TOKEN(anon_sym_DOT_DOT);
END_STATE();
case 58:
ACCEPT_TOKEN(anon_sym_PLUS);
END_STATE();
case 59:
ACCEPT_TOKEN(anon_sym_PLUS);
if (lookahead == '=') ADVANCE(75);
END_STATE();
case 60:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '=') ADVANCE(76);
if (lookahead == '>') ADVANCE(33);
END_STATE();
case 61:
ACCEPT_TOKEN(anon_sym_DASH);
if (lookahead == '>') ADVANCE(33);
END_STATE();
case 62:
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
if (lookahead == '=') ADVANCE(76);
if (lookahead == '>') ADVANCE(33);
END_STATE();
case 63:
ACCEPT_TOKEN(anon_sym_DASH);
if (('0' <= lookahead && lookahead <= '9')) ADVANCE(48);
if (lookahead == '>') ADVANCE(33);
END_STATE();
case 64:
ACCEPT_TOKEN(anon_sym_STAR);
END_STATE();
case 65:
ACCEPT_TOKEN(anon_sym_SLASH);
END_STATE();
case 66:
ACCEPT_TOKEN(anon_sym_PERCENT);
END_STATE();
case 67:
ACCEPT_TOKEN(anon_sym_EQ_EQ);
END_STATE();
case 68:
ACCEPT_TOKEN(anon_sym_BANG_EQ);
END_STATE();
case 69:
ACCEPT_TOKEN(anon_sym_AMP_AMP);
END_STATE();
case 70:
ACCEPT_TOKEN(anon_sym_PIPE_PIPE);
END_STATE();
case 71:
ACCEPT_TOKEN(anon_sym_GT);
if (lookahead == '=') ADVANCE(73);
END_STATE();
case 72:
ACCEPT_TOKEN(anon_sym_LT);
if (lookahead == '=') ADVANCE(74);
END_STATE();
case 73:
ACCEPT_TOKEN(anon_sym_GT_EQ);
END_STATE();
case 74:
ACCEPT_TOKEN(anon_sym_LT_EQ);
END_STATE();
case 75:
ACCEPT_TOKEN(anon_sym_PLUS_EQ);
END_STATE();
case 76:
ACCEPT_TOKEN(anon_sym_DASH_EQ);
END_STATE();
case 77:
ACCEPT_TOKEN(anon_sym_elseif);
END_STATE();
case 78:
ACCEPT_TOKEN(anon_sym_EQ_GT);
END_STATE();
case 79:
ACCEPT_TOKEN(anon_sym_asyncfor);
END_STATE();
case 80:
ACCEPT_TOKEN(anon_sym_PIPE);
END_STATE();
case 81:
ACCEPT_TOKEN(anon_sym_PIPE);
if (lookahead == '|') ADVANCE(70);
END_STATE();
default:
return false;
}
}
static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) {
START_LEXER();
eof = lexer->eof(lexer);
switch (state) {
case 0:
if (lookahead == 'a') ADVANCE(1);
if (lookahead == 'b') ADVANCE(2);
if (lookahead == 'c') ADVANCE(3);
if (lookahead == 'd') ADVANCE(4);
if (lookahead == 'e') ADVANCE(5);
if (lookahead == 'f') ADVANCE(6);
if (lookahead == 'h') ADVANCE(7);
if (lookahead == 'i') ADVANCE(8);
if (lookahead == 'l') ADVANCE(9);
if (lookahead == 'm') ADVANCE(10);
if (lookahead == 'o') ADVANCE(11);
if (lookahead == 'r') ADVANCE(12);
if (lookahead == 's') ADVANCE(13);
if (lookahead == 't') ADVANCE(14);
if (lookahead == 'w') ADVANCE(15);
if (lookahead == 'z') ADVANCE(16);
if (lookahead == '\t' ||
lookahead == '\n' ||
lookahead == '\r' ||
lookahead == ' ') SKIP(0)
END_STATE();
case 1:
if (lookahead == 'p') ADVANCE(17);
if (lookahead == 's') ADVANCE(18);
END_STATE();
case 2:
if (lookahead == 'a') ADVANCE(19);
END_STATE();
case 3:
if (lookahead == 'o') ADVANCE(20);
END_STATE();
case 4:
if (lookahead == 'o') ADVANCE(21);
END_STATE();
case 5:
if (lookahead == 'l') ADVANCE(22);
END_STATE();
case 6:
if (lookahead == 'a') ADVANCE(23);
if (lookahead == 'i') ADVANCE(24);
if (lookahead == 'o') ADVANCE(25);
if (lookahead == 'r') ADVANCE(26);
END_STATE();
case 7:
if (lookahead == 'e') ADVANCE(27);
END_STATE();
case 8:
if (lookahead == 'f') ADVANCE(28);
if (lookahead == 'n') ADVANCE(29);
END_STATE();
case 9:
if (lookahead == 'e') ADVANCE(30);
END_STATE();
case 10:
if (lookahead == 'a') ADVANCE(31);
if (lookahead == 'e') ADVANCE(32);
if (lookahead == 'o') ADVANCE(33);
END_STATE();
case 11:
if (lookahead == 'u') ADVANCE(34);
END_STATE();
case 12:
if (lookahead == 'a') ADVANCE(35);
if (lookahead == 'e') ADVANCE(36);
if (lookahead == 'o') ADVANCE(37);
END_STATE();
case 13:
if (lookahead == 'e') ADVANCE(38);
if (lookahead == 'h') ADVANCE(39);
END_STATE();
case 14:
if (lookahead == 'a') ADVANCE(40);
if (lookahead == 'o') ADVANCE(41);
if (lookahead == 'r') ADVANCE(42);
if (lookahead == 'y') ADVANCE(43);
END_STATE();
case 15:
if (lookahead == 'h') ADVANCE(44);
if (lookahead == 'o') ADVANCE(45);
if (lookahead == 'r') ADVANCE(46);
END_STATE();
case 16:
if (lookahead == 's') ADVANCE(47);
END_STATE();
case 17:
if (lookahead == 'p') ADVANCE(48);
END_STATE();
case 18:
if (lookahead == 's') ADVANCE(49);
if (lookahead == 'y') ADVANCE(50);
END_STATE();
case 19:
if (lookahead == 's') ADVANCE(51);
END_STATE();
case 20:
if (lookahead == 'l') ADVANCE(52);
if (lookahead == 'n') ADVANCE(53);
END_STATE();
case 21:
if (lookahead == 'w') ADVANCE(54);
END_STATE();
case 22:
if (lookahead == 's') ADVANCE(55);
END_STATE();
case 23:
if (lookahead == 'l') ADVANCE(56);
END_STATE();
case 24:
if (lookahead == 'l') ADVANCE(57);
if (lookahead == 'n') ADVANCE(58);
if (lookahead == 's') ADVANCE(59);
END_STATE();
case 25:
if (lookahead == 'r') ADVANCE(60);
END_STATE();
case 26:
if (lookahead == 'o') ADVANCE(61);
END_STATE();
case 27:
if (lookahead == 'l') ADVANCE(62);
END_STATE();
case 28:
ACCEPT_TOKEN(anon_sym_if);
END_STATE();
case 29:
ACCEPT_TOKEN(anon_sym_in);
if (lookahead == 's') ADVANCE(63);
if (lookahead == 't') ADVANCE(64);
END_STATE();
case 30:
if (lookahead == 'n') ADVANCE(65);
END_STATE();
case 31:
if (lookahead == 't') ADVANCE(66);
END_STATE();
case 32:
if (lookahead == 't') ADVANCE(67);
END_STATE();
case 33:
if (lookahead == 'v') ADVANCE(68);
END_STATE();
case 34:
if (lookahead == 't') ADVANCE(69);
END_STATE();
case 35:
if (lookahead == 'n') ADVANCE(70);
if (lookahead == 'w') ADVANCE(71);
END_STATE();
case 36:
if (lookahead == 'a') ADVANCE(72);
if (lookahead == 'd') ADVANCE(73);
if (lookahead == 'm') ADVANCE(74);
if (lookahead == 'v') ADVANCE(75);
END_STATE();
case 37:
if (lookahead == 'w') ADVANCE(76);
END_STATE();
case 38:
if (lookahead == 'l') ADVANCE(77);
END_STATE();
case 39:
ACCEPT_TOKEN(anon_sym_sh);
END_STATE();
case 40:
if (lookahead == 'b') ADVANCE(78);
END_STATE();
case 41:
ACCEPT_TOKEN(anon_sym_to);
if (lookahead == '_') ADVANCE(79);
END_STATE();
case 42:
if (lookahead == 'a') ADVANCE(80);
if (lookahead == 'u') ADVANCE(81);
END_STATE();
case 43:
if (lookahead == 'p') ADVANCE(82);
END_STATE();
case 44:
if (lookahead == 'i') ADVANCE(83);
END_STATE();
case 45:
if (lookahead == 'r') ADVANCE(84);
END_STATE();
case 46:
if (lookahead == 'i') ADVANCE(85);
END_STATE();
case 47:
if (lookahead == 'h') ADVANCE(86);
END_STATE();
case 48:
if (lookahead == 'e') ADVANCE(87);
END_STATE();
case 49:
if (lookahead == 'e') ADVANCE(88);
END_STATE();
case 50:
if (lookahead == 'n') ADVANCE(89);
END_STATE();
case 51:
if (lookahead == 'h') ADVANCE(90);
END_STATE();
case 52:
if (lookahead == 'u') ADVANCE(91);
END_STATE();
case 53:
if (lookahead == 't') ADVANCE(92);
END_STATE();
case 54:
if (lookahead == 'n') ADVANCE(93);
END_STATE();
case 55:
if (lookahead == 'e') ADVANCE(94);
END_STATE();
case 56:
if (lookahead == 's') ADVANCE(95);
END_STATE();
case 57:
if (lookahead == 't') ADVANCE(96);
END_STATE();
case 58:
if (lookahead == 'd') ADVANCE(97);
END_STATE();
case 59:
if (lookahead == 'h') ADVANCE(98);
END_STATE();
case 60:
ACCEPT_TOKEN(anon_sym_for);
END_STATE();
case 61:
if (lookahead == 'm') ADVANCE(99);
END_STATE();
case 62:
if (lookahead == 'p') ADVANCE(100);
END_STATE();
case 63:
if (lookahead == 'e') ADVANCE(101);
END_STATE();
case 64:
if (lookahead == 'o') ADVANCE(102);
END_STATE();
case 65:
if (lookahead == 'g') ADVANCE(103);
END_STATE();
case 66:
if (lookahead == 'c') ADVANCE(104);
END_STATE();
case 67:
if (lookahead == 'a') ADVANCE(105);
END_STATE();
case 68:
if (lookahead == 'e') ADVANCE(106);
END_STATE();
case 69:
if (lookahead == 'p') ADVANCE(107);
END_STATE();
case 70:
if (lookahead == 'd') ADVANCE(108);
END_STATE();
case 71:
ACCEPT_TOKEN(anon_sym_raw);
END_STATE();
case 72:
if (lookahead == 'd') ADVANCE(109);
END_STATE();
case 73:
if (lookahead == 'u') ADVANCE(110);
END_STATE();
case 74:
if (lookahead == 'o') ADVANCE(111);
END_STATE();
case 75:
if (lookahead == 'e') ADVANCE(112);
END_STATE();
case 76:
if (lookahead == 's') ADVANCE(113);
END_STATE();
case 77:
if (lookahead == 'e') ADVANCE(114);
END_STATE();
case 78:
if (lookahead == 'l') ADVANCE(115);
END_STATE();
case 79:
if (lookahead == 'f') ADVANCE(116);
if (lookahead == 'j') ADVANCE(117);
if (lookahead == 's') ADVANCE(118);
END_STATE();
case 80:
if (lookahead == 'n') ADVANCE(119);
END_STATE();
case 81:
if (lookahead == 'e') ADVANCE(120);
END_STATE();
case 82:
if (lookahead == 'e') ADVANCE(121);
END_STATE();
case 83:
if (lookahead == 'l') ADVANCE(122);
END_STATE();
case 84:
if (lookahead == 'k') ADVANCE(123);
END_STATE();
case 85:
if (lookahead == 't') ADVANCE(124);
END_STATE();
case 86:
ACCEPT_TOKEN(anon_sym_zsh);
END_STATE();
case 87:
if (lookahead == 'n') ADVANCE(125);
END_STATE();
case 88:
if (lookahead == 'r') ADVANCE(126);
END_STATE();
case 89:
if (lookahead == 'c') ADVANCE(127);
END_STATE();
case 90:
ACCEPT_TOKEN(anon_sym_bash);
END_STATE();
case 91:
if (lookahead == 'm') ADVANCE(128);
END_STATE();
case 92:
if (lookahead == 'e') ADVANCE(129);
END_STATE();
case 93:
if (lookahead == 'l') ADVANCE(130);
END_STATE();
case 94:
ACCEPT_TOKEN(anon_sym_else);
END_STATE();
case 95:
if (lookahead == 'e') ADVANCE(131);
END_STATE();
case 96:
if (lookahead == 'e') ADVANCE(132);
END_STATE();
case 97:
ACCEPT_TOKEN(anon_sym_find);
END_STATE();
case 98:
ACCEPT_TOKEN(anon_sym_fish);
END_STATE();
case 99:
ACCEPT_TOKEN(anon_sym_from);
if (lookahead == '_') ADVANCE(133);
END_STATE();
case 100:
ACCEPT_TOKEN(anon_sym_help);
END_STATE();
case 101:
if (lookahead == 'r') ADVANCE(134);
END_STATE();
case 102:
ACCEPT_TOKEN(anon_sym_into);
END_STATE();
case 103:
if (lookahead == 't') ADVANCE(135);
END_STATE();
case 104:
if (lookahead == 'h') ADVANCE(136);
END_STATE();
case 105:
if (lookahead == 'd') ADVANCE(137);
END_STATE();
case 106:
ACCEPT_TOKEN(anon_sym_move);
END_STATE();
case 107:
if (lookahead == 'u') ADVANCE(138);
END_STATE();
case 108:
if (lookahead == 'o') ADVANCE(139);
END_STATE();
case 109:
ACCEPT_TOKEN(anon_sym_read);
END_STATE();
case 110:
if (lookahead == 'c') ADVANCE(140);
END_STATE();
case 111:
if (lookahead == 'v') ADVANCE(141);
END_STATE();
case 112:
if (lookahead == 'r') ADVANCE(142);
END_STATE();
case 113:
ACCEPT_TOKEN(anon_sym_rows);
END_STATE();
case 114:
if (lookahead == 'c') ADVANCE(143);
END_STATE();
case 115:
if (lookahead == 'e') ADVANCE(144);
END_STATE();
case 116:
if (lookahead == 'l') ADVANCE(145);
END_STATE();
case 117:
if (lookahead == 's') ADVANCE(146);
END_STATE();
case 118:
if (lookahead == 't') ADVANCE(147);
END_STATE();
case 119:
if (lookahead == 's') ADVANCE(148);
END_STATE();
case 120:
ACCEPT_TOKEN(anon_sym_true);
END_STATE();
case 121:
ACCEPT_TOKEN(anon_sym_type);
END_STATE();
case 122:
if (lookahead == 'e') ADVANCE(149);
END_STATE();
case 123:
if (lookahead == 'd') ADVANCE(150);
END_STATE();
case 124:
if (lookahead == 'e') ADVANCE(151);
END_STATE();
case 125:
if (lookahead == 'd') ADVANCE(152);
END_STATE();
case 126:
if (lookahead == 't') ADVANCE(153);
END_STATE();
case 127:
ACCEPT_TOKEN(anon_sym_async);
END_STATE();
case 128:
if (lookahead == 'n') ADVANCE(154);
END_STATE();
case 129:
if (lookahead == 'x') ADVANCE(155);
END_STATE();
case 130:
if (lookahead == 'o') ADVANCE(156);
END_STATE();
case 131:
ACCEPT_TOKEN(anon_sym_false);
END_STATE();
case 132:
if (lookahead == 'r') ADVANCE(157);
END_STATE();
case 133:
if (lookahead == 'j') ADVANCE(158);
END_STATE();
case 134:
if (lookahead == 't') ADVANCE(159);
END_STATE();
case 135:
if (lookahead == 'h') ADVANCE(160);
END_STATE();
case 136:
ACCEPT_TOKEN(anon_sym_match);
END_STATE();
case 137:
if (lookahead == 'a') ADVANCE(161);
END_STATE();
case 138:
if (lookahead == 't') ADVANCE(162);
END_STATE();
case 139:
if (lookahead == 'm') ADVANCE(163);
END_STATE();
case 140:
if (lookahead == 'e') ADVANCE(164);
END_STATE();
case 141:
if (lookahead == 'e') ADVANCE(165);
END_STATE();
case 142:
if (lookahead == 's') ADVANCE(166);
END_STATE();
case 143:
if (lookahead == 't') ADVANCE(167);
END_STATE();
case 144:
ACCEPT_TOKEN(anon_sym_table);
END_STATE();
case 145:
if (lookahead == 'o') ADVANCE(168);
END_STATE();
case 146:
if (lookahead == 'o') ADVANCE(169);
END_STATE();
case 147:
if (lookahead == 'r') ADVANCE(170);
END_STATE();
case 148:
if (lookahead == 'f') ADVANCE(171);
END_STATE();
case 149:
ACCEPT_TOKEN(anon_sym_while);
END_STATE();
case 150:
if (lookahead == 'i') ADVANCE(172);
END_STATE();
case 151:
ACCEPT_TOKEN(anon_sym_write);
END_STATE();
case 152:
ACCEPT_TOKEN(anon_sym_append);
END_STATE();
case 153:
ACCEPT_TOKEN(anon_sym_assert);
if (lookahead == '_') ADVANCE(173);
END_STATE();
case 154:
if (lookahead == 's') ADVANCE(174);
END_STATE();
case 155:
if (lookahead == 't') ADVANCE(175);
END_STATE();
case 156:
if (lookahead == 'a') ADVANCE(176);
END_STATE();
case 157:
ACCEPT_TOKEN(anon_sym_filter);
END_STATE();
case 158:
if (lookahead == 's') ADVANCE(177);
END_STATE();
case 159:
ACCEPT_TOKEN(anon_sym_insert);
END_STATE();
case 160:
ACCEPT_TOKEN(anon_sym_length);
END_STATE();
case 161:
if (lookahead == 't') ADVANCE(178);
END_STATE();
case 162:
ACCEPT_TOKEN(anon_sym_output);
if (lookahead == '_') ADVANCE(179);
END_STATE();
case 163:
ACCEPT_TOKEN(anon_sym_random);
if (lookahead == '_') ADVANCE(180);
END_STATE();
case 164:
ACCEPT_TOKEN(anon_sym_reduce);
END_STATE();
case 165:
ACCEPT_TOKEN(anon_sym_remove);
END_STATE();
case 166:
if (lookahead == 'e') ADVANCE(181);
END_STATE();
case 167:
ACCEPT_TOKEN(anon_sym_select);
END_STATE();
case 168:
if (lookahead == 'a') ADVANCE(182);
END_STATE();
case 169:
if (lookahead == 'n') ADVANCE(183);
END_STATE();
case 170:
if (lookahead == 'i') ADVANCE(184);
END_STATE();
case 171:
if (lookahead == 'o') ADVANCE(185);
END_STATE();
case 172:
if (lookahead == 'r') ADVANCE(186);
END_STATE();
case 173:
if (lookahead == 'e') ADVANCE(187);
END_STATE();
case 174:
ACCEPT_TOKEN(anon_sym_columns);
END_STATE();
case 175:
ACCEPT_TOKEN(anon_sym_context);
END_STATE();
case 176:
if (lookahead == 'd') ADVANCE(188);
END_STATE();
case 177:
if (lookahead == 'o') ADVANCE(189);
END_STATE();
case 178:
if (lookahead == 'a') ADVANCE(190);
END_STATE();
case 179:
if (lookahead == 'e') ADVANCE(191);
END_STATE();
case 180:
if (lookahead == 'b') ADVANCE(192);
if (lookahead == 'f') ADVANCE(193);
if (lookahead == 'i') ADVANCE(194);
END_STATE();
case 181:
ACCEPT_TOKEN(anon_sym_reverse);
END_STATE();
case 182:
if (lookahead == 't') ADVANCE(195);
END_STATE();
case 183:
ACCEPT_TOKEN(anon_sym_to_json);
END_STATE();
case 184:
if (lookahead == 'n') ADVANCE(196);
END_STATE();
case 185:
if (lookahead == 'r') ADVANCE(197);
END_STATE();
case 186:
ACCEPT_TOKEN(anon_sym_workdir);
END_STATE();
case 187:
if (lookahead == 'q') ADVANCE(198);
END_STATE();
case 188:
ACCEPT_TOKEN(anon_sym_download);
END_STATE();
case 189:
if (lookahead == 'n') ADVANCE(199);
END_STATE();
case 190:
ACCEPT_TOKEN(anon_sym_metadata);
END_STATE();
case 191:
if (lookahead == 'r') ADVANCE(200);
END_STATE();
case 192:
if (lookahead == 'o') ADVANCE(201);
END_STATE();
case 193:
if (lookahead == 'l') ADVANCE(202);
END_STATE();
case 194:
if (lookahead == 'n') ADVANCE(203);
END_STATE();
case 195:
ACCEPT_TOKEN(anon_sym_to_float);
END_STATE();
case 196:
if (lookahead == 'g') ADVANCE(204);
END_STATE();
case 197:
if (lookahead == 'm') ADVANCE(205);
END_STATE();
case 198:
if (lookahead == 'u') ADVANCE(206);
END_STATE();
case 199:
ACCEPT_TOKEN(anon_sym_from_json);
END_STATE();
case 200:
if (lookahead == 'r') ADVANCE(207);
END_STATE();
case 201:
if (lookahead == 'o') ADVANCE(208);
END_STATE();
case 202:
if (lookahead == 'o') ADVANCE(209);
END_STATE();
case 203:
if (lookahead == 't') ADVANCE(210);
END_STATE();
case 204:
ACCEPT_TOKEN(anon_sym_to_string);
END_STATE();
case 205:
ACCEPT_TOKEN(anon_sym_transform);
END_STATE();
case 206:
if (lookahead == 'a') ADVANCE(211);
END_STATE();
case 207:
if (lookahead == 'o') ADVANCE(212);
END_STATE();
case 208:
if (lookahead == 'l') ADVANCE(213);
END_STATE();
case 209:
if (lookahead == 'a') ADVANCE(214);
END_STATE();
case 210:
if (lookahead == 'e') ADVANCE(215);
END_STATE();
case 211:
if (lookahead == 'l') ADVANCE(216);
END_STATE();
case 212:
if (lookahead == 'r') ADVANCE(217);
END_STATE();
case 213:
if (lookahead == 'e') ADVANCE(218);
END_STATE();
case 214:
if (lookahead == 't') ADVANCE(219);
END_STATE();
case 215:
if (lookahead == 'g') ADVANCE(220);
END_STATE();
case 216:
ACCEPT_TOKEN(anon_sym_assert_equal);
END_STATE();
case 217:
ACCEPT_TOKEN(anon_sym_output_error);
END_STATE();
case 218:
if (lookahead == 'a') ADVANCE(221);
END_STATE();
case 219:
ACCEPT_TOKEN(anon_sym_random_float);
END_STATE();
case 220:
if (lookahead == 'e') ADVANCE(222);
END_STATE();
case 221:
if (lookahead == 'n') ADVANCE(223);
END_STATE();
case 222:
if (lookahead == 'r') ADVANCE(224);
END_STATE();
case 223:
ACCEPT_TOKEN(anon_sym_random_boolean);
END_STATE();
case 224:
ACCEPT_TOKEN(anon_sym_random_integer);
END_STATE();
default:
return false;
}
}
static const TSLexMode ts_lex_modes[STATE_COUNT] = {
[0] = {.lex_state = 0},
[1] = {.lex_state = 25},
[2] = {.lex_state = 4},
[3] = {.lex_state = 4},
[4] = {.lex_state = 4},
[5] = {.lex_state = 4},
[6] = {.lex_state = 4},
[7] = {.lex_state = 25},
[8] = {.lex_state = 25},
[9] = {.lex_state = 25},
[10] = {.lex_state = 25},
[11] = {.lex_state = 25},
[12] = {.lex_state = 25},
[13] = {.lex_state = 25},
[14] = {.lex_state = 25},
[15] = {.lex_state = 25},
[16] = {.lex_state = 25},
[17] = {.lex_state = 25},
[18] = {.lex_state = 25},
[19] = {.lex_state = 25},
[20] = {.lex_state = 25},
[21] = {.lex_state = 25},
[22] = {.lex_state = 25},
[23] = {.lex_state = 25},
[24] = {.lex_state = 25},
[25] = {.lex_state = 25},
[26] = {.lex_state = 25},
[27] = {.lex_state = 25},
[28] = {.lex_state = 25},
[29] = {.lex_state = 25},
[30] = {.lex_state = 25},
[31] = {.lex_state = 25},
[32] = {.lex_state = 25},
[33] = {.lex_state = 25},
[34] = {.lex_state = 25},
[35] = {.lex_state = 25},
[36] = {.lex_state = 25},
[37] = {.lex_state = 25},
[38] = {.lex_state = 25},
[39] = {.lex_state = 25},
[40] = {.lex_state = 25},
[41] = {.lex_state = 25},
[42] = {.lex_state = 25},
[43] = {.lex_state = 25},
[44] = {.lex_state = 25},
[45] = {.lex_state = 25},
[46] = {.lex_state = 25},
[47] = {.lex_state = 25},
[48] = {.lex_state = 25},
[49] = {.lex_state = 25},
[50] = {.lex_state = 25},
[51] = {.lex_state = 25},
[52] = {.lex_state = 25},
[53] = {.lex_state = 23},
[54] = {.lex_state = 23},
[55] = {.lex_state = 23},
[56] = {.lex_state = 23},
[57] = {.lex_state = 23},
[58] = {.lex_state = 23},
[59] = {.lex_state = 23},
[60] = {.lex_state = 23},
[61] = {.lex_state = 23},
[62] = {.lex_state = 23},
[63] = {.lex_state = 23},
[64] = {.lex_state = 23},
[65] = {.lex_state = 23},
[66] = {.lex_state = 23},
[67] = {.lex_state = 23},
[68] = {.lex_state = 23},
[69] = {.lex_state = 23},
[70] = {.lex_state = 23},
[71] = {.lex_state = 23},
[72] = {.lex_state = 23},
[73] = {.lex_state = 23},
[74] = {.lex_state = 23},
[75] = {.lex_state = 23},
[76] = {.lex_state = 23},
[77] = {.lex_state = 23},
[78] = {.lex_state = 23},
[79] = {.lex_state = 24},
[80] = {.lex_state = 24},
[81] = {.lex_state = 23},
[82] = {.lex_state = 24},
[83] = {.lex_state = 24},
[84] = {.lex_state = 24},
[85] = {.lex_state = 24},
[86] = {.lex_state = 24},
[87] = {.lex_state = 24},
[88] = {.lex_state = 24},
[89] = {.lex_state = 24},
[90] = {.lex_state = 24},
[91] = {.lex_state = 24},
[92] = {.lex_state = 24},
[93] = {.lex_state = 24},
[94] = {.lex_state = 24},
[95] = {.lex_state = 24},
[96] = {.lex_state = 1},
[97] = {.lex_state = 24},
[98] = {.lex_state = 24},
[99] = {.lex_state = 24},
[100] = {.lex_state = 24},
[101] = {.lex_state = 24},
[102] = {.lex_state = 24},
[103] = {.lex_state = 24},
[104] = {.lex_state = 24},
[105] = {.lex_state = 24},
[106] = {.lex_state = 24},
[107] = {.lex_state = 1},
[108] = {.lex_state = 24},
[109] = {.lex_state = 24},
[110] = {.lex_state = 25},
[111] = {.lex_state = 1},
[112] = {.lex_state = 25},
[113] = {.lex_state = 4},
[114] = {.lex_state = 4},
[115] = {.lex_state = 4},
[116] = {.lex_state = 4},
[117] = {.lex_state = 4},
[118] = {.lex_state = 1},
[119] = {.lex_state = 1},
[120] = {.lex_state = 1},
[121] = {.lex_state = 26},
[122] = {.lex_state = 1},
[123] = {.lex_state = 26},
[124] = {.lex_state = 1},
[125] = {.lex_state = 1},
[126] = {.lex_state = 26},
[127] = {.lex_state = 1},
[128] = {.lex_state = 1},
[129] = {.lex_state = 1},
[130] = {.lex_state = 1},
[131] = {.lex_state = 1},
[132] = {.lex_state = 1},
[133] = {.lex_state = 1},
[134] = {.lex_state = 1},
[135] = {.lex_state = 1},
[136] = {.lex_state = 1},
[137] = {.lex_state = 1},
[138] = {.lex_state = 1},
[139] = {.lex_state = 1},
[140] = {.lex_state = 1},
[141] = {.lex_state = 1},
[142] = {.lex_state = 1},
[143] = {.lex_state = 1},
[144] = {.lex_state = 1},
[145] = {.lex_state = 1},
[146] = {.lex_state = 1},
[147] = {.lex_state = 4},
[148] = {.lex_state = 26},
[149] = {.lex_state = 26},
[150] = {.lex_state = 4},
[151] = {.lex_state = 26},
[152] = {.lex_state = 26},
[153] = {.lex_state = 25},
[154] = {.lex_state = 25},
[155] = {.lex_state = 4},
[156] = {.lex_state = 25},
[157] = {.lex_state = 25},
[158] = {.lex_state = 25},
[159] = {.lex_state = 25},
[160] = {.lex_state = 4},
[161] = {.lex_state = 4},
[162] = {.lex_state = 25},
[163] = {.lex_state = 25},
[164] = {.lex_state = 4},
[165] = {.lex_state = 25},
[166] = {.lex_state = 4},
[167] = {.lex_state = 25},
[168] = {.lex_state = 25},
[169] = {.lex_state = 25},
[170] = {.lex_state = 25},
[171] = {.lex_state = 25},
[172] = {.lex_state = 4},
[173] = {.lex_state = 25},
[174] = {.lex_state = 4},
[175] = {.lex_state = 4},
[176] = {.lex_state = 4},
[177] = {.lex_state = 25},
[178] = {.lex_state = 4},
[179] = {.lex_state = 4},
[180] = {.lex_state = 4},
[181] = {.lex_state = 25},
[182] = {.lex_state = 25},
[183] = {.lex_state = 4},
[184] = {.lex_state = 4},
[185] = {.lex_state = 4},
[186] = {.lex_state = 4},
[187] = {.lex_state = 25},
[188] = {.lex_state = 25},
[189] = {.lex_state = 4},
[190] = {.lex_state = 4},
[191] = {.lex_state = 4},
[192] = {.lex_state = 4},
[193] = {.lex_state = 4},
[194] = {.lex_state = 4},
[195] = {.lex_state = 4},
[196] = {.lex_state = 4},
[197] = {.lex_state = 4},
[198] = {.lex_state = 4},
[199] = {.lex_state = 2},
[200] = {.lex_state = 4},
[201] = {.lex_state = 4},
[202] = {.lex_state = 4},
[203] = {.lex_state = 4},
[204] = {.lex_state = 4},
[205] = {.lex_state = 4},
[206] = {.lex_state = 4},
[207] = {.lex_state = 4},
[208] = {.lex_state = 4},
[209] = {.lex_state = 4},
[210] = {.lex_state = 2},
[211] = {.lex_state = 2},
[212] = {.lex_state = 4},
[213] = {.lex_state = 4},
[214] = {.lex_state = 4},
[215] = {.lex_state = 4},
[216] = {.lex_state = 4},
[217] = {.lex_state = 4},
[218] = {.lex_state = 4},
[219] = {.lex_state = 4},
[220] = {.lex_state = 4},
[221] = {.lex_state = 4},
[222] = {.lex_state = 4},
[223] = {.lex_state = 4},
[224] = {.lex_state = 4},
[225] = {.lex_state = 4},
[226] = {.lex_state = 4},
[227] = {.lex_state = 4},
[228] = {.lex_state = 4},
[229] = {.lex_state = 2},
[230] = {.lex_state = 4},
[231] = {.lex_state = 4},
[232] = {.lex_state = 4},
[233] = {.lex_state = 4},
[234] = {.lex_state = 2},
[235] = {.lex_state = 4},
[236] = {.lex_state = 4},
[237] = {.lex_state = 4},
[238] = {.lex_state = 4},
[239] = {.lex_state = 4},
[240] = {.lex_state = 4},
[241] = {.lex_state = 4},
[242] = {.lex_state = 4},
[243] = {.lex_state = 4},
[244] = {.lex_state = 4},
[245] = {.lex_state = 4},
[246] = {.lex_state = 4},
[247] = {.lex_state = 4},
[248] = {.lex_state = 4},
[249] = {.lex_state = 4},
[250] = {.lex_state = 4},
[251] = {.lex_state = 4},
[252] = {.lex_state = 4},
[253] = {.lex_state = 4},
[254] = {.lex_state = 4},
[255] = {.lex_state = 4},
[256] = {.lex_state = 4},
[257] = {.lex_state = 4},
[258] = {.lex_state = 4},
[259] = {.lex_state = 4},
[260] = {.lex_state = 4},
[261] = {.lex_state = 2},
[262] = {.lex_state = 4},
[263] = {.lex_state = 4},
[264] = {.lex_state = 4},
[265] = {.lex_state = 4},
[266] = {.lex_state = 4},
[267] = {.lex_state = 4},
[268] = {.lex_state = 3},
[269] = {.lex_state = 2},
[270] = {.lex_state = 2},
[271] = {.lex_state = 2},
[272] = {.lex_state = 3},
[273] = {.lex_state = 25},
[274] = {.lex_state = 2},
[275] = {.lex_state = 3},
[276] = {.lex_state = 3},
[277] = {.lex_state = 3},
[278] = {.lex_state = 3},
[279] = {.lex_state = 2},
[280] = {.lex_state = 2},
[281] = {.lex_state = 2},
[282] = {.lex_state = 2},
[283] = {.lex_state = 3},
[284] = {.lex_state = 2},
[285] = {.lex_state = 3},
[286] = {.lex_state = 3},
[287] = {.lex_state = 2},
[288] = {.lex_state = 3},
[289] = {.lex_state = 2},
[290] = {.lex_state = 2},
[291] = {.lex_state = 2},
[292] = {.lex_state = 2},
[293] = {.lex_state = 2},
[294] = {.lex_state = 2},
[295] = {.lex_state = 2},
[296] = {.lex_state = 2},
[297] = {.lex_state = 2},
[298] = {.lex_state = 3},
[299] = {.lex_state = 3},
[300] = {.lex_state = 3},
[301] = {.lex_state = 3},
[302] = {.lex_state = 3},
[303] = {.lex_state = 3},
[304] = {.lex_state = 3},
[305] = {.lex_state = 3},
[306] = {.lex_state = 3},
[307] = {.lex_state = 3},
[308] = {.lex_state = 3},
[309] = {.lex_state = 3},
[310] = {.lex_state = 3},
[311] = {.lex_state = 3},
[312] = {.lex_state = 3},
[313] = {.lex_state = 3},
[314] = {.lex_state = 2},
[315] = {.lex_state = 2},
[316] = {.lex_state = 2},
[317] = {.lex_state = 2},
[318] = {.lex_state = 2},
[319] = {.lex_state = 2},
[320] = {.lex_state = 2},
[321] = {.lex_state = 2},
[322] = {.lex_state = 2},
[323] = {.lex_state = 2},
[324] = {.lex_state = 2},
[325] = {.lex_state = 2},
[326] = {.lex_state = 2},
[327] = {.lex_state = 2},
[328] = {.lex_state = 2},
[329] = {.lex_state = 2},
[330] = {.lex_state = 2},
[331] = {.lex_state = 2},
[332] = {.lex_state = 2},
[333] = {.lex_state = 2},
[334] = {.lex_state = 2},
[335] = {.lex_state = 2},
[336] = {.lex_state = 2},
[337] = {.lex_state = 2},
[338] = {.lex_state = 2},
[339] = {.lex_state = 2},
[340] = {.lex_state = 2},
[341] = {.lex_state = 2},
[342] = {.lex_state = 2},
[343] = {.lex_state = 2},
[344] = {.lex_state = 2},
[345] = {.lex_state = 2},
[346] = {.lex_state = 2},
[347] = {.lex_state = 2},
[348] = {.lex_state = 2},
[349] = {.lex_state = 4},
[350] = {.lex_state = 4},
[351] = {.lex_state = 4},
[352] = {.lex_state = 4},
[353] = {.lex_state = 4},
[354] = {.lex_state = 4},
[355] = {.lex_state = 4},
[356] = {.lex_state = 4},
[357] = {.lex_state = 4},
[358] = {.lex_state = 6},
[359] = {.lex_state = 6},
[360] = {.lex_state = 6},
[361] = {.lex_state = 6},
[362] = {.lex_state = 6},
[363] = {.lex_state = 6},
[364] = {.lex_state = 6},
[365] = {.lex_state = 4},
[366] = {.lex_state = 4},
[367] = {.lex_state = 4},
[368] = {.lex_state = 4},
[369] = {.lex_state = 4},
[370] = {.lex_state = 4},
[371] = {.lex_state = 4},
[372] = {.lex_state = 4},
[373] = {.lex_state = 4},
[374] = {.lex_state = 4},
[375] = {.lex_state = 4},
[376] = {.lex_state = 4},
[377] = {.lex_state = 4},
[378] = {.lex_state = 4},
[379] = {.lex_state = 4},
[380] = {.lex_state = 4},
[381] = {.lex_state = 4},
[382] = {.lex_state = 4},
[383] = {.lex_state = 4},
[384] = {.lex_state = 4},
[385] = {.lex_state = 4},
[386] = {.lex_state = 4},
[387] = {.lex_state = 4},
[388] = {.lex_state = 4},
[389] = {.lex_state = 4},
[390] = {.lex_state = 4},
[391] = {.lex_state = 4},
[392] = {.lex_state = 4},
[393] = {.lex_state = 4},
[394] = {.lex_state = 4},
[395] = {.lex_state = 4},
[396] = {.lex_state = 4},
[397] = {.lex_state = 4},
[398] = {.lex_state = 4},
[399] = {.lex_state = 4},
[400] = {.lex_state = 4},
[401] = {.lex_state = 4},
[402] = {.lex_state = 4},
[403] = {.lex_state = 4},
[404] = {.lex_state = 4},
[405] = {.lex_state = 4},
[406] = {.lex_state = 4},
[407] = {.lex_state = 4},
[408] = {.lex_state = 4},
[409] = {.lex_state = 4},
[410] = {.lex_state = 4},
[411] = {.lex_state = 4},
[412] = {.lex_state = 25},
[413] = {.lex_state = 25},
[414] = {.lex_state = 4},
[415] = {.lex_state = 0},
[416] = {.lex_state = 25},
[417] = {.lex_state = 0},
[418] = {.lex_state = 25},
[419] = {.lex_state = 0},
[420] = {.lex_state = 0},
[421] = {.lex_state = 25},
[422] = {.lex_state = 25},
[423] = {.lex_state = 25},
[424] = {.lex_state = 25},
[425] = {.lex_state = 25},
[426] = {.lex_state = 25},
[427] = {.lex_state = 25},
[428] = {.lex_state = 4},
[429] = {.lex_state = 0},
[430] = {.lex_state = 25},
[431] = {.lex_state = 4},
[432] = {.lex_state = 4},
[433] = {.lex_state = 4},
[434] = {.lex_state = 4},
[435] = {.lex_state = 0},
[436] = {.lex_state = 4},
[437] = {.lex_state = 4},
[438] = {.lex_state = 0},
[439] = {.lex_state = 4},
[440] = {.lex_state = 4},
[441] = {.lex_state = 4},
[442] = {.lex_state = 4},
[443] = {.lex_state = 4},
[444] = {.lex_state = 4},
[445] = {.lex_state = 4},
[446] = {.lex_state = 4},
[447] = {.lex_state = 4},
[448] = {.lex_state = 0},
[449] = {.lex_state = 4},
[450] = {.lex_state = 4},
[451] = {.lex_state = 4},
[452] = {.lex_state = 4},
[453] = {.lex_state = 0},
[454] = {.lex_state = 4},
[455] = {.lex_state = 25},
[456] = {.lex_state = 4},
[457] = {.lex_state = 0},
[458] = {.lex_state = 0},
[459] = {.lex_state = 4},
[460] = {.lex_state = 4},
[461] = {.lex_state = 0},
[462] = {.lex_state = 0},
[463] = {.lex_state = 0},
[464] = {.lex_state = 0},
[465] = {.lex_state = 0},
[466] = {.lex_state = 0},
[467] = {.lex_state = 0},
[468] = {.lex_state = 0},
[469] = {.lex_state = 0},
[470] = {.lex_state = 4},
[471] = {.lex_state = 4},
[472] = {.lex_state = 0},
[473] = {.lex_state = 4},
[474] = {.lex_state = 4},
[475] = {.lex_state = 0},
[476] = {.lex_state = 0},
[477] = {.lex_state = 4},
[478] = {.lex_state = 4},
[479] = {.lex_state = 4},
[480] = {.lex_state = 0},
[481] = {.lex_state = 0},
[482] = {.lex_state = 4},
[483] = {.lex_state = 4},
};
static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = {
[0] = {
[ts_builtin_sym_end] = ACTIONS(1),
[sym_identifier] = ACTIONS(1),
[sym__comment] = ACTIONS(3),
[anon_sym_async] = ACTIONS(1),
[anon_sym_LBRACE] = ACTIONS(1),
[anon_sym_RBRACE] = ACTIONS(1),
[anon_sym_SEMI] = ACTIONS(1),
[anon_sym_DASH_GT] = ACTIONS(1),
[anon_sym_LPAREN] = ACTIONS(1),
[anon_sym_RPAREN] = ACTIONS(1),
[anon_sym_COMMA] = ACTIONS(1),
[sym_integer] = ACTIONS(1),
[sym_float] = ACTIONS(1),
[sym_string] = ACTIONS(1),
[anon_sym_true] = ACTIONS(1),
[anon_sym_false] = ACTIONS(1),
[anon_sym_LBRACK] = ACTIONS(1),
[anon_sym_RBRACK] = ACTIONS(1),
[anon_sym_EQ] = ACTIONS(1),
[anon_sym_COLON] = ACTIONS(1),
[anon_sym_DOT_DOT] = ACTIONS(1),
[anon_sym_PLUS] = ACTIONS(1),
[anon_sym_DASH] = ACTIONS(1),
[anon_sym_STAR] = ACTIONS(1),
[anon_sym_SLASH] = ACTIONS(1),
[anon_sym_PERCENT] = ACTIONS(1),
[anon_sym_EQ_EQ] = ACTIONS(1),
[anon_sym_BANG_EQ] = ACTIONS(1),
[anon_sym_AMP_AMP] = ACTIONS(1),
[anon_sym_PIPE_PIPE] = ACTIONS(1),
[anon_sym_GT] = ACTIONS(1),
[anon_sym_LT] = ACTIONS(1),
[anon_sym_GT_EQ] = ACTIONS(1),
[anon_sym_LT_EQ] = ACTIONS(1),
[anon_sym_PLUS_EQ] = ACTIONS(1),
[anon_sym_DASH_EQ] = ACTIONS(1),
[anon_sym_if] = ACTIONS(1),
[anon_sym_elseif] = ACTIONS(1),
[anon_sym_else] = ACTIONS(1),
[anon_sym_match] = ACTIONS(1),
[anon_sym_EQ_GT] = ACTIONS(1),
[anon_sym_while] = ACTIONS(1),
[anon_sym_for] = ACTIONS(1),
[anon_sym_asyncfor] = ACTIONS(1),
[anon_sym_in] = ACTIONS(1),
[anon_sym_transform] = ACTIONS(1),
[anon_sym_filter] = ACTIONS(1),
[anon_sym_find] = ACTIONS(1),
[anon_sym_remove] = ACTIONS(1),
[anon_sym_from] = ACTIONS(1),
[anon_sym_reduce] = ACTIONS(1),
[anon_sym_to] = ACTIONS(1),
[anon_sym_select] = ACTIONS(1),
[anon_sym_insert] = ACTIONS(1),
[anon_sym_into] = ACTIONS(1),
[anon_sym_PIPE] = ACTIONS(1),
[anon_sym_table] = ACTIONS(1),
[anon_sym_assert] = ACTIONS(1),
[anon_sym_assert_equal] = ACTIONS(1),
[anon_sym_context] = ACTIONS(1),
[anon_sym_download] = ACTIONS(1),
[anon_sym_help] = ACTIONS(1),
[anon_sym_length] = ACTIONS(1),
[anon_sym_output] = ACTIONS(1),
[anon_sym_output_error] = ACTIONS(1),
[anon_sym_type] = ACTIONS(1),
[anon_sym_append] = ACTIONS(1),
[anon_sym_metadata] = ACTIONS(1),
[anon_sym_move] = ACTIONS(1),
[anon_sym_read] = ACTIONS(1),
[anon_sym_workdir] = ACTIONS(1),
[anon_sym_write] = ACTIONS(1),
[anon_sym_from_json] = ACTIONS(1),
[anon_sym_to_json] = ACTIONS(1),
[anon_sym_to_string] = ACTIONS(1),
[anon_sym_to_float] = ACTIONS(1),
[anon_sym_bash] = ACTIONS(1),
[anon_sym_fish] = ACTIONS(1),
[anon_sym_raw] = ACTIONS(1),
[anon_sym_sh] = ACTIONS(1),
[anon_sym_zsh] = ACTIONS(1),
[anon_sym_random] = ACTIONS(1),
[anon_sym_random_boolean] = ACTIONS(1),
[anon_sym_random_float] = ACTIONS(1),
[anon_sym_random_integer] = ACTIONS(1),
[anon_sym_columns] = ACTIONS(1),
[anon_sym_rows] = ACTIONS(1),
[anon_sym_reverse] = ACTIONS(1),
},
[1] = {
[sym_root] = STATE(472),
[sym_block] = STATE(182),
[sym_statement] = STATE(15),
[sym_yield] = STATE(97),
[sym_expression] = STATE(89),
[sym__expression_kind] = STATE(97),
[sym_value] = STATE(97),
[sym_boolean] = STATE(94),
[sym_list] = STATE(94),
[sym_map] = STATE(94),
[sym_index] = STATE(68),
[sym_math] = STATE(97),
[sym_logic] = STATE(97),
[sym_assignment] = STATE(182),
[sym_index_assignment] = STATE(182),
[sym_if_else] = STATE(182),
[sym_if] = STATE(123),
[sym_match] = STATE(182),
[sym_while] = STATE(182),
[sym_for] = STATE(182),
[sym_transform] = STATE(182),
[sym_filter] = STATE(182),
[sym_find] = STATE(182),
[sym_remove] = STATE(182),
[sym_reduce] = STATE(182),
[sym_select] = STATE(182),
[sym_insert] = STATE(182),
[sym_identifier_list] = STATE(476),
[sym_table] = STATE(94),
[sym_function] = STATE(94),
[sym_function_call] = STATE(97),
[aux_sym_root_repeat1] = STATE(15),
[sym_identifier] = ACTIONS(5),
[sym__comment] = ACTIONS(3),
[anon_sym_async] = ACTIONS(7),
[anon_sym_LBRACE] = ACTIONS(9),
[anon_sym_LPAREN] = ACTIONS(11),
[sym_integer] = ACTIONS(13),
[sym_float] = ACTIONS(15),
[sym_string] = ACTIONS(15),
[anon_sym_true] = ACTIONS(17),
[anon_sym_false] = ACTIONS(17),
[anon_sym_LBRACK] = ACTIONS(19),
[anon_sym_if] = ACTIONS(21),
[anon_sym_match] = ACTIONS(23),
[anon_sym_EQ_GT] = ACTIONS(25),
[anon_sym_while] = ACTIONS(27),
[anon_sym_for] = ACTIONS(29),
[anon_sym_asyncfor] = ACTIONS(31),
[anon_sym_transform] = ACTIONS(33),
[anon_sym_filter] = ACTIONS(35),
[anon_sym_find] = ACTIONS(37),
[anon_sym_remove] = ACTIONS(39),
[anon_sym_reduce] = ACTIONS(41),
[anon_sym_select] = ACTIONS(43),
[anon_sym_insert] = ACTIONS(45),
[anon_sym_PIPE] = ACTIONS(47),
[anon_sym_table] = ACTIONS(49),
},
};
static const uint16_t ts_small_parse_table[] = {
[0] = 18,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
STATE(184), 1,
sym__built_in_function_name,
STATE(341), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(457), 2,
sym__context_defined_function,
sym_built_in_function,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(344), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[98] = 18,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
STATE(184), 1,
sym__built_in_function_name,
STATE(341), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(461), 2,
sym__context_defined_function,
sym_built_in_function,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(347), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[196] = 18,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
STATE(184), 1,
sym__built_in_function_name,
STATE(341), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(448), 2,
sym__context_defined_function,
sym_built_in_function,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(345), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[294] = 18,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
STATE(184), 1,
sym__built_in_function_name,
STATE(341), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(481), 2,
sym__context_defined_function,
sym_built_in_function,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(348), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[392] = 18,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(51), 1,
sym_identifier,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
STATE(184), 1,
sym__built_in_function_name,
STATE(341), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(438), 2,
sym__context_defined_function,
sym_built_in_function,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(346), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[490] = 34,
ACTIONS(3), 1,
sym__comment,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(71), 1,
sym_identifier,
ACTIONS(73), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(392), 1,
aux_sym_map_repeat1,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(23), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[618] = 34,
ACTIONS(3), 1,
sym__comment,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(71), 1,
sym_identifier,
ACTIONS(75), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(398), 1,
aux_sym_map_repeat1,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(19), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[746] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(79), 1,
sym_identifier,
ACTIONS(82), 1,
anon_sym_async,
ACTIONS(85), 1,
anon_sym_LBRACE,
ACTIONS(88), 1,
anon_sym_LPAREN,
ACTIONS(91), 1,
sym_integer,
ACTIONS(100), 1,
anon_sym_LBRACK,
ACTIONS(103), 1,
anon_sym_if,
ACTIONS(106), 1,
anon_sym_match,
ACTIONS(109), 1,
anon_sym_EQ_GT,
ACTIONS(112), 1,
anon_sym_while,
ACTIONS(115), 1,
anon_sym_for,
ACTIONS(118), 1,
anon_sym_asyncfor,
ACTIONS(121), 1,
anon_sym_transform,
ACTIONS(124), 1,
anon_sym_filter,
ACTIONS(127), 1,
anon_sym_find,
ACTIONS(130), 1,
anon_sym_remove,
ACTIONS(133), 1,
anon_sym_reduce,
ACTIONS(136), 1,
anon_sym_select,
ACTIONS(139), 1,
anon_sym_insert,
ACTIONS(142), 1,
anon_sym_PIPE,
ACTIONS(145), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(77), 2,
ts_builtin_sym_end,
anon_sym_RBRACE,
ACTIONS(94), 2,
sym_float,
sym_string,
ACTIONS(97), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[872] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(148), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[997] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(150), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1122] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(152), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1247] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(154), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1372] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(156), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1497] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(158), 1,
ts_builtin_sym_end,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1622] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(160), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1747] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(162), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1872] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(164), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[1997] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(166), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2122] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(168), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2247] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(170), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2372] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(172), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2497] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(174), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2622] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(176), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2747] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(178), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2872] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(180), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[2997] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(182), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3122] = 33,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(184), 1,
anon_sym_RBRACE,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(9), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3247] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(24), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3369] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(28), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3491] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(18), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3613] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(20), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3735] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(25), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3857] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(26), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[3979] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(27), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4101] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(14), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4223] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(10), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4345] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(13), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4467] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(19), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4589] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(21), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4711] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(23), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4833] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(12), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[4955] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(16), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[5077] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(17), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[5199] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(22), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[5321] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(89), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(11), 2,
sym_statement,
aux_sym_root_repeat1,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(182), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[5443] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(91), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(187), 1,
sym_statement,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(158), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[5564] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(5), 1,
sym_identifier,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(9), 1,
anon_sym_LBRACE,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(21), 1,
anon_sym_if,
ACTIONS(23), 1,
anon_sym_match,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(27), 1,
anon_sym_while,
ACTIONS(29), 1,
anon_sym_for,
ACTIONS(31), 1,
anon_sym_asyncfor,
ACTIONS(33), 1,
anon_sym_transform,
ACTIONS(35), 1,
anon_sym_filter,
ACTIONS(37), 1,
anon_sym_find,
ACTIONS(39), 1,
anon_sym_remove,
ACTIONS(41), 1,
anon_sym_reduce,
ACTIONS(43), 1,
anon_sym_select,
ACTIONS(45), 1,
anon_sym_insert,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
STATE(68), 1,
sym_index,
STATE(91), 1,
sym_expression,
STATE(123), 1,
sym_if,
STATE(157), 1,
sym_statement,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(158), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[5685] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(186), 1,
sym_identifier,
ACTIONS(188), 1,
anon_sym_async,
ACTIONS(190), 1,
anon_sym_LBRACE,
ACTIONS(192), 1,
anon_sym_if,
ACTIONS(194), 1,
anon_sym_match,
ACTIONS(196), 1,
anon_sym_while,
ACTIONS(198), 1,
anon_sym_for,
ACTIONS(200), 1,
anon_sym_asyncfor,
ACTIONS(202), 1,
anon_sym_transform,
ACTIONS(204), 1,
anon_sym_filter,
ACTIONS(206), 1,
anon_sym_find,
ACTIONS(208), 1,
anon_sym_remove,
ACTIONS(210), 1,
anon_sym_reduce,
ACTIONS(212), 1,
anon_sym_select,
ACTIONS(214), 1,
anon_sym_insert,
STATE(299), 1,
sym_index,
STATE(315), 1,
sym_expression,
STATE(359), 1,
sym_if,
STATE(378), 1,
sym_statement,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(376), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[5806] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(186), 1,
sym_identifier,
ACTIONS(188), 1,
anon_sym_async,
ACTIONS(190), 1,
anon_sym_LBRACE,
ACTIONS(192), 1,
anon_sym_if,
ACTIONS(194), 1,
anon_sym_match,
ACTIONS(196), 1,
anon_sym_while,
ACTIONS(198), 1,
anon_sym_for,
ACTIONS(200), 1,
anon_sym_asyncfor,
ACTIONS(202), 1,
anon_sym_transform,
ACTIONS(204), 1,
anon_sym_filter,
ACTIONS(206), 1,
anon_sym_find,
ACTIONS(208), 1,
anon_sym_remove,
ACTIONS(210), 1,
anon_sym_reduce,
ACTIONS(212), 1,
anon_sym_select,
ACTIONS(214), 1,
anon_sym_insert,
STATE(299), 1,
sym_index,
STATE(315), 1,
sym_expression,
STATE(359), 1,
sym_if,
STATE(379), 1,
sym_statement,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(376), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[5927] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(186), 1,
sym_identifier,
ACTIONS(188), 1,
anon_sym_async,
ACTIONS(190), 1,
anon_sym_LBRACE,
ACTIONS(192), 1,
anon_sym_if,
ACTIONS(194), 1,
anon_sym_match,
ACTIONS(196), 1,
anon_sym_while,
ACTIONS(198), 1,
anon_sym_for,
ACTIONS(200), 1,
anon_sym_asyncfor,
ACTIONS(202), 1,
anon_sym_transform,
ACTIONS(204), 1,
anon_sym_filter,
ACTIONS(206), 1,
anon_sym_find,
ACTIONS(208), 1,
anon_sym_remove,
ACTIONS(210), 1,
anon_sym_reduce,
ACTIONS(212), 1,
anon_sym_select,
ACTIONS(214), 1,
anon_sym_insert,
STATE(299), 1,
sym_index,
STATE(314), 1,
sym_expression,
STATE(359), 1,
sym_if,
STATE(388), 1,
sym_statement,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(366), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[6048] = 32,
ACTIONS(3), 1,
sym__comment,
ACTIONS(216), 1,
sym_identifier,
ACTIONS(219), 1,
anon_sym_async,
ACTIONS(222), 1,
anon_sym_LBRACE,
ACTIONS(225), 1,
anon_sym_LPAREN,
ACTIONS(228), 1,
sym_integer,
ACTIONS(237), 1,
anon_sym_LBRACK,
ACTIONS(240), 1,
anon_sym_if,
ACTIONS(243), 1,
anon_sym_match,
ACTIONS(246), 1,
anon_sym_EQ_GT,
ACTIONS(249), 1,
anon_sym_while,
ACTIONS(252), 1,
anon_sym_for,
ACTIONS(255), 1,
anon_sym_asyncfor,
ACTIONS(258), 1,
anon_sym_transform,
ACTIONS(261), 1,
anon_sym_filter,
ACTIONS(264), 1,
anon_sym_find,
ACTIONS(267), 1,
anon_sym_remove,
ACTIONS(270), 1,
anon_sym_reduce,
ACTIONS(273), 1,
anon_sym_select,
ACTIONS(276), 1,
anon_sym_insert,
ACTIONS(279), 1,
anon_sym_PIPE,
ACTIONS(282), 1,
anon_sym_table,
STATE(299), 1,
sym_index,
STATE(314), 1,
sym_expression,
STATE(359), 1,
sym_if,
STATE(388), 1,
sym_statement,
STATE(458), 1,
sym_identifier_list,
ACTIONS(231), 2,
sym_float,
sym_string,
ACTIONS(234), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 6,
sym_yield,
sym__expression_kind,
sym_value,
sym_math,
sym_logic,
sym_function_call,
STATE(366), 14,
sym_block,
sym_assignment,
sym_index_assignment,
sym_if_else,
sym_match,
sym_while,
sym_for,
sym_transform,
sym_filter,
sym_find,
sym_remove,
sym_reduce,
sym_select,
sym_insert,
[6169] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(246), 1,
sym_math_operator,
STATE(247), 1,
sym_logic_operator,
ACTIONS(287), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(285), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[6230] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(293), 1,
anon_sym_DASH_GT,
ACTIONS(295), 1,
anon_sym_COLON,
STATE(246), 1,
sym_math_operator,
STATE(247), 1,
sym_logic_operator,
ACTIONS(297), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(289), 13,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(291), 19,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[6303] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(246), 1,
sym_math_operator,
STATE(247), 1,
sym_logic_operator,
ACTIONS(307), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(305), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[6364] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(293), 1,
anon_sym_DASH_GT,
ACTIONS(295), 1,
anon_sym_COLON,
STATE(246), 1,
sym_math_operator,
STATE(247), 1,
sym_logic_operator,
ACTIONS(297), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(309), 13,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(311), 19,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[6437] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(313), 1,
anon_sym_DOT_DOT,
STATE(246), 1,
sym_math_operator,
STATE(247), 1,
sym_logic_operator,
ACTIONS(305), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(307), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[6500] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(246), 1,
sym_math_operator,
STATE(247), 1,
sym_logic_operator,
ACTIONS(317), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(315), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[6561] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(207), 1,
sym_logic_operator,
STATE(252), 1,
sym_math_operator,
ACTIONS(285), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(287), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[6621] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(207), 1,
sym_logic_operator,
STATE(252), 1,
sym_math_operator,
ACTIONS(315), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(317), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[6681] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(293), 1,
anon_sym_DASH_GT,
ACTIONS(319), 1,
anon_sym_COLON,
STATE(207), 1,
sym_logic_operator,
STATE(252), 1,
sym_math_operator,
ACTIONS(297), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(289), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(291), 19,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[6753] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(293), 1,
anon_sym_DASH_GT,
ACTIONS(319), 1,
anon_sym_COLON,
STATE(207), 1,
sym_logic_operator,
STATE(252), 1,
sym_math_operator,
ACTIONS(297), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(309), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(311), 19,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[6825] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(323), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(321), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[6880] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(325), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[6935] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(331), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(329), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[6990] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(335), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(333), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7045] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(339), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(337), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7100] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(345), 1,
anon_sym_EQ,
STATE(47), 1,
sym_assignment_operator,
ACTIONS(347), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(341), 21,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(343), 22,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[7161] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(345), 1,
anon_sym_EQ,
STATE(48), 1,
sym_assignment_operator,
ACTIONS(347), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(341), 21,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(343), 22,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[7222] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(351), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(349), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7277] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(355), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(353), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7332] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(359), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(357), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7387] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(363), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(361), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7442] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(367), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(365), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7497] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(371), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(369), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7552] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(375), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(373), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7607] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(377), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7662] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(383), 23,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(381), 24,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7717] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(385), 1,
anon_sym_DASH_GT,
ACTIONS(387), 1,
anon_sym_COLON,
STATE(193), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(289), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(291), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[7787] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(193), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(307), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(305), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7845] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(389), 1,
anon_sym_EQ,
STATE(48), 1,
sym_assignment_operator,
ACTIONS(347), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(341), 20,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(343), 22,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[7905] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(193), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(287), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(285), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[7963] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(391), 1,
anon_sym_DOT_DOT,
STATE(193), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(307), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(305), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[8023] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(193), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(317), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(315), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[8081] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(7), 1,
anon_sym_async,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(385), 1,
anon_sym_DASH_GT,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(399), 1,
anon_sym_COLON,
STATE(162), 1,
sym_block,
STATE(214), 1,
sym_logic_operator,
STATE(231), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(393), 9,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(395), 17,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[8157] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(385), 1,
anon_sym_DASH_GT,
ACTIONS(387), 1,
anon_sym_COLON,
STATE(193), 1,
sym_logic_operator,
STATE(200), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(309), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(311), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[8227] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(385), 1,
anon_sym_DASH_GT,
ACTIONS(399), 1,
anon_sym_COLON,
STATE(214), 1,
sym_logic_operator,
STATE(231), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(309), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(311), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[8296] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(214), 1,
sym_logic_operator,
STATE(231), 1,
sym_math_operator,
ACTIONS(287), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(285), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[8353] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_COLON,
ACTIONS(385), 1,
anon_sym_DASH_GT,
ACTIONS(405), 1,
anon_sym_SEMI,
STATE(214), 1,
sym_logic_operator,
STATE(231), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(401), 9,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(403), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[8424] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(385), 1,
anon_sym_DASH_GT,
ACTIONS(399), 1,
anon_sym_COLON,
STATE(214), 1,
sym_logic_operator,
STATE(231), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(289), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(291), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[8493] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(319), 1,
anon_sym_COLON,
ACTIONS(385), 1,
anon_sym_DASH_GT,
STATE(214), 1,
sym_logic_operator,
STATE(231), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(401), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(403), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[8562] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(214), 1,
sym_logic_operator,
STATE(231), 1,
sym_math_operator,
ACTIONS(317), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(315), 22,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[8619] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(385), 1,
anon_sym_DASH_GT,
ACTIONS(399), 1,
anon_sym_COLON,
STATE(214), 1,
sym_logic_operator,
STATE(231), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(407), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
ACTIONS(409), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
[8688] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(375), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(373), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[8740] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(363), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(361), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[8792] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(411), 1,
sym_identifier,
ACTIONS(413), 1,
anon_sym_DASH_GT,
ACTIONS(415), 1,
anon_sym_COLON,
ACTIONS(417), 1,
anon_sym_PIPE,
STATE(112), 1,
aux_sym_match_repeat1,
STATE(222), 1,
sym_math_operator,
STATE(223), 1,
sym_logic_operator,
STATE(339), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[8886] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(383), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(381), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[8938] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(367), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(365), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[8990] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(335), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(333), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9042] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(323), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(321), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9094] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(339), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(337), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9146] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(355), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(353), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9198] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(351), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(349), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9250] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(359), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(357), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9302] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(377), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9354] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(325), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9406] = 24,
ACTIONS(3), 1,
sym__comment,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(411), 1,
sym_identifier,
ACTIONS(413), 1,
anon_sym_DASH_GT,
ACTIONS(415), 1,
anon_sym_COLON,
ACTIONS(417), 1,
anon_sym_PIPE,
STATE(147), 1,
aux_sym_match_repeat1,
STATE(222), 1,
sym_math_operator,
STATE(223), 1,
sym_logic_operator,
STATE(338), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[9500] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(371), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(369), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9552] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(331), 21,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(329), 23,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
anon_sym_asyncfor,
[9604] = 18,
ACTIONS(3), 1,
sym__comment,
ACTIONS(421), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
ACTIONS(429), 1,
anon_sym_LPAREN,
ACTIONS(432), 1,
sym_integer,
ACTIONS(441), 1,
anon_sym_LBRACK,
ACTIONS(444), 1,
anon_sym_EQ_GT,
ACTIONS(447), 1,
anon_sym_PIPE,
ACTIONS(450), 1,
anon_sym_table,
STATE(110), 1,
aux_sym_match_repeat1,
STATE(339), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(435), 2,
sym_float,
sym_string,
ACTIONS(438), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(419), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(424), 12,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
[9685] = 19,
ACTIONS(3), 1,
sym__comment,
ACTIONS(417), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(459), 1,
anon_sym_RPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
STATE(146), 1,
sym_expression,
STATE(164), 1,
aux_sym__expression_list,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(343), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(341), 12,
anon_sym_DASH_GT,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[9768] = 18,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(110), 1,
aux_sym_match_repeat1,
STATE(339), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(473), 4,
ts_builtin_sym_end,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_asyncfor,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
ACTIONS(475), 12,
anon_sym_async,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
[9849] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(477), 1,
sym_identifier,
STATE(184), 1,
sym__built_in_function_name,
STATE(448), 2,
sym__context_defined_function,
sym_built_in_function,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[9896] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(477), 1,
sym_identifier,
STATE(184), 1,
sym__built_in_function_name,
STATE(481), 2,
sym__context_defined_function,
sym_built_in_function,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[9943] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(477), 1,
sym_identifier,
STATE(184), 1,
sym__built_in_function_name,
STATE(438), 2,
sym__context_defined_function,
sym_built_in_function,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[9990] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(477), 1,
sym_identifier,
STATE(184), 1,
sym__built_in_function_name,
STATE(461), 2,
sym__context_defined_function,
sym_built_in_function,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[10037] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(477), 1,
sym_identifier,
STATE(184), 1,
sym__built_in_function_name,
STATE(457), 2,
sym__context_defined_function,
sym_built_in_function,
ACTIONS(69), 31,
anon_sym_assert,
anon_sym_assert_equal,
anon_sym_context,
anon_sym_download,
anon_sym_help,
anon_sym_length,
anon_sym_output,
anon_sym_output_error,
anon_sym_type,
anon_sym_append,
anon_sym_metadata,
anon_sym_move,
anon_sym_read,
anon_sym_workdir,
anon_sym_write,
anon_sym_from_json,
anon_sym_to_json,
anon_sym_to_string,
anon_sym_to_float,
anon_sym_bash,
anon_sym_fish,
anon_sym_raw,
anon_sym_sh,
anon_sym_zsh,
anon_sym_random,
anon_sym_random_boolean,
anon_sym_random_float,
anon_sym_random_integer,
anon_sym_columns,
anon_sym_rows,
anon_sym_reverse,
[10084] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(197), 1,
sym_math_operator,
STATE(257), 1,
sym_logic_operator,
ACTIONS(287), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(285), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10129] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(413), 1,
anon_sym_DASH_GT,
ACTIONS(479), 1,
anon_sym_COLON,
STATE(197), 1,
sym_math_operator,
STATE(257), 1,
sym_logic_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(291), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(289), 10,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
[10186] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(481), 1,
anon_sym_DOT_DOT,
STATE(197), 1,
sym_math_operator,
STATE(257), 1,
sym_logic_operator,
ACTIONS(307), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(305), 21,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10233] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(487), 1,
anon_sym_elseif,
ACTIONS(489), 1,
anon_sym_else,
STATE(165), 1,
sym_else,
STATE(126), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(483), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(485), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[10282] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(197), 1,
sym_math_operator,
STATE(257), 1,
sym_logic_operator,
ACTIONS(317), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(315), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10327] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(487), 1,
anon_sym_elseif,
ACTIONS(489), 1,
anon_sym_else,
STATE(181), 1,
sym_else,
STATE(121), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(491), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(493), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[10376] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(197), 1,
sym_math_operator,
STATE(257), 1,
sym_logic_operator,
ACTIONS(307), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(305), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10421] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(413), 1,
anon_sym_DASH_GT,
ACTIONS(479), 1,
anon_sym_COLON,
STATE(197), 1,
sym_math_operator,
STATE(257), 1,
sym_logic_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(311), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(309), 10,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
[10478] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(499), 1,
anon_sym_elseif,
STATE(126), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(495), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(497), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[10522] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(413), 1,
anon_sym_DASH_GT,
ACTIONS(415), 1,
anon_sym_COLON,
STATE(222), 1,
sym_math_operator,
STATE(223), 1,
sym_logic_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(311), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(309), 9,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_EQ_GT,
[10578] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(222), 1,
sym_math_operator,
STATE(223), 1,
sym_logic_operator,
ACTIONS(317), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(315), 21,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10622] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(413), 1,
anon_sym_DASH_GT,
ACTIONS(415), 1,
anon_sym_COLON,
STATE(222), 1,
sym_math_operator,
STATE(223), 1,
sym_logic_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(291), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(289), 9,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_EQ_GT,
[10678] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(222), 1,
sym_math_operator,
STATE(223), 1,
sym_logic_operator,
ACTIONS(287), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(285), 21,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10722] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(375), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(373), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10761] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(367), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(365), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10800] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(363), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(361), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10839] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(323), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(321), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10878] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(359), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(357), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10917] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(355), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(353), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10956] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(339), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(337), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[10995] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(335), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(333), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11034] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(383), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(381), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11073] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(325), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11112] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(331), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(329), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11151] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(377), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11190] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(413), 1,
anon_sym_DASH_GT,
ACTIONS(415), 1,
anon_sym_COLON,
ACTIONS(506), 1,
anon_sym_COMMA,
STATE(222), 1,
sym_math_operator,
STATE(223), 1,
sym_logic_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(502), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(504), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_EQ_GT,
[11247] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(371), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(369), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11286] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(351), 9,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(349), 22,
anon_sym_LBRACE,
anon_sym_DASH_GT,
anon_sym_LPAREN,
anon_sym_RPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[11325] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(413), 1,
anon_sym_DASH_GT,
ACTIONS(415), 1,
anon_sym_COLON,
ACTIONS(512), 1,
anon_sym_COMMA,
STATE(222), 1,
sym_math_operator,
STATE(223), 1,
sym_logic_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(508), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_PIPE,
anon_sym_table,
ACTIONS(510), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
[11382] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(150), 1,
aux_sym_match_repeat1,
STATE(338), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(473), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11448] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(514), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(516), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11486] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(518), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(520), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11524] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(421), 1,
sym_identifier,
ACTIONS(426), 1,
anon_sym_LBRACE,
ACTIONS(429), 1,
anon_sym_LPAREN,
ACTIONS(432), 1,
sym_integer,
ACTIONS(441), 1,
anon_sym_LBRACK,
ACTIONS(444), 1,
anon_sym_EQ_GT,
ACTIONS(447), 1,
anon_sym_PIPE,
ACTIONS(450), 1,
anon_sym_table,
STATE(150), 1,
aux_sym_match_repeat1,
STATE(338), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(435), 2,
sym_float,
sym_string,
ACTIONS(438), 2,
anon_sym_true,
anon_sym_false,
ACTIONS(419), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11590] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(361), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(363), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11628] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(325), 12,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_elseif,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(327), 18,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_else,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11666] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(522), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(524), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11702] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(528), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11738] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(530), 1,
anon_sym_RPAREN,
STATE(146), 1,
sym_expression,
STATE(186), 1,
aux_sym__expression_list,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[11802] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(532), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(534), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11838] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(536), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(538), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11874] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(401), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(403), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11910] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(361), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(363), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[11946] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(540), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(161), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12010] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(542), 1,
sym_identifier,
ACTIONS(545), 1,
anon_sym_LBRACE,
ACTIONS(548), 1,
anon_sym_LPAREN,
ACTIONS(551), 1,
sym_integer,
ACTIONS(560), 1,
anon_sym_LBRACK,
ACTIONS(563), 1,
anon_sym_RBRACK,
ACTIONS(565), 1,
anon_sym_EQ_GT,
ACTIONS(568), 1,
anon_sym_PIPE,
ACTIONS(571), 1,
anon_sym_table,
STATE(143), 1,
sym_expression,
STATE(161), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(554), 2,
sym_float,
sym_string,
ACTIONS(557), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12074] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(574), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(576), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12110] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(578), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(580), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12146] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(582), 1,
anon_sym_RPAREN,
STATE(146), 1,
sym_expression,
STATE(186), 1,
aux_sym__expression_list,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12210] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(584), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(586), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12246] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(588), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(161), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12310] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(590), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(592), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12346] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(594), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(596), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12382] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(598), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(600), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12418] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(604), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12454] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(606), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(608), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12490] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(610), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(166), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12554] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(612), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(614), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12590] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(616), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(161), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12654] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(459), 1,
anon_sym_RPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
STATE(146), 1,
sym_expression,
STATE(164), 1,
aux_sym__expression_list,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12718] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(618), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(174), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12782] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(325), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(327), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[12818] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(620), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(180), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12882] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(622), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(161), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[12946] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(624), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(161), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13010] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(483), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(485), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[13046] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(405), 1,
anon_sym_SEMI,
ACTIONS(401), 10,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(403), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[13084] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(626), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(179), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13148] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(628), 1,
anon_sym_RPAREN,
STATE(146), 1,
sym_expression,
STATE(155), 1,
aux_sym__expression_list,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13212] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
ACTIONS(630), 1,
anon_sym_RBRACK,
STATE(143), 1,
sym_expression,
STATE(160), 1,
aux_sym_list_repeat1,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13276] = 17,
ACTIONS(3), 1,
sym__comment,
ACTIONS(632), 1,
sym_identifier,
ACTIONS(635), 1,
anon_sym_LBRACE,
ACTIONS(638), 1,
anon_sym_LPAREN,
ACTIONS(641), 1,
anon_sym_RPAREN,
ACTIONS(643), 1,
sym_integer,
ACTIONS(652), 1,
anon_sym_LBRACK,
ACTIONS(655), 1,
anon_sym_EQ_GT,
ACTIONS(658), 1,
anon_sym_PIPE,
ACTIONS(661), 1,
anon_sym_table,
STATE(146), 1,
sym_expression,
STATE(186), 1,
aux_sym__expression_list,
STATE(480), 1,
sym_identifier_list,
ACTIONS(646), 2,
sym_float,
sym_string,
ACTIONS(649), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13340] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(664), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(666), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[13376] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(668), 11,
ts_builtin_sym_end,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(670), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[13412] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(271), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13470] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(319), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13528] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(329), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13586] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(411), 1,
sym_identifier,
ACTIONS(672), 1,
anon_sym_table,
STATE(199), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13644] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
ACTIONS(678), 1,
anon_sym_table,
STATE(79), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13702] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
ACTIONS(678), 1,
anon_sym_table,
STATE(86), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13760] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(280), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13818] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(316), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13876] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(680), 1,
anon_sym_table,
STATE(118), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13934] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(411), 1,
sym_identifier,
ACTIONS(672), 1,
anon_sym_table,
STATE(229), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[13992] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(682), 1,
anon_sym_DOT_DOT,
STATE(198), 1,
sym_math_operator,
STATE(228), 1,
sym_logic_operator,
ACTIONS(307), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(305), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[14032] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
ACTIONS(678), 1,
anon_sym_table,
STATE(82), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14090] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_LBRACE,
ACTIONS(688), 1,
anon_sym_LPAREN,
ACTIONS(690), 1,
sym_integer,
ACTIONS(696), 1,
anon_sym_LBRACK,
ACTIONS(698), 1,
anon_sym_EQ_GT,
ACTIONS(700), 1,
anon_sym_table,
STATE(57), 1,
sym_expression,
STATE(475), 1,
sym_identifier_list,
ACTIONS(692), 2,
sym_float,
sym_string,
ACTIONS(694), 2,
anon_sym_true,
anon_sym_false,
STATE(76), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(78), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14148] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(702), 1,
sym_identifier,
STATE(337), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14206] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(326), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14264] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(704), 1,
sym_identifier,
STATE(340), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14322] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
ACTIONS(678), 1,
anon_sym_table,
STATE(80), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14380] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(680), 1,
anon_sym_table,
STATE(120), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14438] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_LBRACE,
ACTIONS(688), 1,
anon_sym_LPAREN,
ACTIONS(690), 1,
sym_integer,
ACTIONS(696), 1,
anon_sym_LBRACK,
ACTIONS(698), 1,
anon_sym_EQ_GT,
ACTIONS(706), 1,
anon_sym_table,
STATE(61), 1,
sym_expression,
STATE(475), 1,
sym_identifier_list,
ACTIONS(692), 2,
sym_float,
sym_string,
ACTIONS(694), 2,
anon_sym_true,
anon_sym_false,
STATE(76), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(78), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14496] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
STATE(92), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14554] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_LBRACE,
ACTIONS(688), 1,
anon_sym_LPAREN,
ACTIONS(690), 1,
sym_integer,
ACTIONS(696), 1,
anon_sym_LBRACK,
ACTIONS(698), 1,
anon_sym_EQ_GT,
ACTIONS(706), 1,
anon_sym_table,
STATE(62), 1,
sym_expression,
STATE(475), 1,
sym_identifier_list,
ACTIONS(692), 2,
sym_float,
sym_string,
ACTIONS(694), 2,
anon_sym_true,
anon_sym_false,
STATE(76), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(78), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14612] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(710), 1,
anon_sym_COLON,
STATE(198), 1,
sym_math_operator,
STATE(228), 1,
sym_logic_operator,
ACTIONS(291), 2,
anon_sym_async,
sym_identifier,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(289), 7,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
[14662] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(710), 1,
anon_sym_COLON,
STATE(198), 1,
sym_math_operator,
STATE(228), 1,
sym_logic_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(311), 2,
anon_sym_async,
sym_identifier,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(309), 7,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_DOT_DOT,
anon_sym_EQ_GT,
[14712] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(335), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14770] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(334), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14828] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
STATE(90), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14886] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(330), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[14944] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(333), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15002] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(332), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15060] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(318), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15118] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
STATE(128), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15176] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(714), 1,
anon_sym_LBRACE,
ACTIONS(716), 1,
anon_sym_LPAREN,
ACTIONS(718), 1,
sym_integer,
ACTIONS(724), 1,
anon_sym_LBRACK,
ACTIONS(726), 1,
anon_sym_EQ_GT,
ACTIONS(728), 1,
anon_sym_table,
STATE(288), 1,
sym_expression,
STATE(462), 1,
sym_identifier_list,
ACTIONS(720), 2,
sym_float,
sym_string,
ACTIONS(722), 2,
anon_sym_true,
anon_sym_false,
STATE(306), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15234] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
STATE(127), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15292] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
STATE(130), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15350] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
STATE(129), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15408] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_LBRACE,
ACTIONS(688), 1,
anon_sym_LPAREN,
ACTIONS(690), 1,
sym_integer,
ACTIONS(696), 1,
anon_sym_LBRACK,
ACTIONS(698), 1,
anon_sym_EQ_GT,
ACTIONS(700), 1,
anon_sym_table,
STATE(55), 1,
sym_expression,
STATE(475), 1,
sym_identifier_list,
ACTIONS(692), 2,
sym_float,
sym_string,
ACTIONS(694), 2,
anon_sym_true,
anon_sym_false,
STATE(76), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(78), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15466] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
STATE(87), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15524] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(714), 1,
anon_sym_LBRACE,
ACTIONS(716), 1,
anon_sym_LPAREN,
ACTIONS(718), 1,
sym_integer,
ACTIONS(724), 1,
anon_sym_LBRACK,
ACTIONS(726), 1,
anon_sym_EQ_GT,
ACTIONS(728), 1,
anon_sym_table,
STATE(285), 1,
sym_expression,
STATE(462), 1,
sym_identifier_list,
ACTIONS(720), 2,
sym_float,
sym_string,
ACTIONS(722), 2,
anon_sym_true,
anon_sym_false,
STATE(306), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15582] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(411), 1,
sym_identifier,
ACTIONS(672), 1,
anon_sym_table,
STATE(211), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15640] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(411), 1,
sym_identifier,
ACTIONS(672), 1,
anon_sym_table,
STATE(210), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15698] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(198), 1,
sym_math_operator,
STATE(228), 1,
sym_logic_operator,
ACTIONS(287), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(285), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[15736] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(274), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15794] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
STATE(88), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15852] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(270), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15910] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
ACTIONS(678), 1,
anon_sym_table,
STATE(83), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[15968] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(198), 1,
sym_math_operator,
STATE(228), 1,
sym_logic_operator,
ACTIONS(317), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(315), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[16006] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(714), 1,
anon_sym_LBRACE,
ACTIONS(716), 1,
anon_sym_LPAREN,
ACTIONS(718), 1,
sym_integer,
ACTIONS(724), 1,
anon_sym_LBRACK,
ACTIONS(726), 1,
anon_sym_EQ_GT,
ACTIONS(728), 1,
anon_sym_table,
STATE(286), 1,
sym_expression,
STATE(462), 1,
sym_identifier_list,
ACTIONS(720), 2,
sym_float,
sym_string,
ACTIONS(722), 2,
anon_sym_true,
anon_sym_false,
STATE(306), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16064] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(269), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16122] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(324), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16180] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(317), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16238] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(327), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16296] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(714), 1,
anon_sym_LBRACE,
ACTIONS(716), 1,
anon_sym_LPAREN,
ACTIONS(718), 1,
sym_integer,
ACTIONS(724), 1,
anon_sym_LBRACK,
ACTIONS(726), 1,
anon_sym_EQ_GT,
ACTIONS(728), 1,
anon_sym_table,
STATE(283), 1,
sym_expression,
STATE(462), 1,
sym_identifier_list,
ACTIONS(720), 2,
sym_float,
sym_string,
ACTIONS(722), 2,
anon_sym_true,
anon_sym_false,
STATE(306), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16354] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
STATE(93), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16412] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(11), 1,
anon_sym_LPAREN,
ACTIONS(13), 1,
sym_integer,
ACTIONS(19), 1,
anon_sym_LBRACK,
ACTIONS(25), 1,
anon_sym_EQ_GT,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(49), 1,
anon_sym_table,
ACTIONS(674), 1,
sym_identifier,
ACTIONS(676), 1,
anon_sym_LBRACE,
STATE(85), 1,
sym_expression,
STATE(476), 1,
sym_identifier_list,
ACTIONS(15), 2,
sym_float,
sym_string,
ACTIONS(17), 2,
anon_sym_true,
anon_sym_false,
STATE(94), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(97), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16470] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(322), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16528] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(325), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16586] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_LBRACE,
ACTIONS(688), 1,
anon_sym_LPAREN,
ACTIONS(690), 1,
sym_integer,
ACTIONS(696), 1,
anon_sym_LBRACK,
ACTIONS(698), 1,
anon_sym_EQ_GT,
ACTIONS(700), 1,
anon_sym_table,
STATE(56), 1,
sym_expression,
STATE(475), 1,
sym_identifier_list,
ACTIONS(692), 2,
sym_float,
sym_string,
ACTIONS(694), 2,
anon_sym_true,
anon_sym_false,
STATE(76), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(78), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16644] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_LBRACE,
ACTIONS(688), 1,
anon_sym_LPAREN,
ACTIONS(690), 1,
sym_integer,
ACTIONS(696), 1,
anon_sym_LBRACK,
ACTIONS(698), 1,
anon_sym_EQ_GT,
ACTIONS(700), 1,
anon_sym_table,
STATE(53), 1,
sym_expression,
STATE(475), 1,
sym_identifier_list,
ACTIONS(692), 2,
sym_float,
sym_string,
ACTIONS(694), 2,
anon_sym_true,
anon_sym_false,
STATE(76), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(78), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16702] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_LBRACE,
ACTIONS(688), 1,
anon_sym_LPAREN,
ACTIONS(690), 1,
sym_integer,
ACTIONS(696), 1,
anon_sym_LBRACK,
ACTIONS(698), 1,
anon_sym_EQ_GT,
ACTIONS(700), 1,
anon_sym_table,
STATE(54), 1,
sym_expression,
STATE(475), 1,
sym_identifier_list,
ACTIONS(692), 2,
sym_float,
sym_string,
ACTIONS(694), 2,
anon_sym_true,
anon_sym_false,
STATE(76), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(78), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16760] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_LBRACE,
ACTIONS(688), 1,
anon_sym_LPAREN,
ACTIONS(690), 1,
sym_integer,
ACTIONS(696), 1,
anon_sym_LBRACK,
ACTIONS(698), 1,
anon_sym_EQ_GT,
ACTIONS(706), 1,
anon_sym_table,
STATE(60), 1,
sym_expression,
STATE(475), 1,
sym_identifier_list,
ACTIONS(692), 2,
sym_float,
sym_string,
ACTIONS(694), 2,
anon_sym_true,
anon_sym_false,
STATE(76), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(78), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16818] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(323), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16876] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
STATE(107), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16934] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(321), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[16992] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(684), 1,
sym_identifier,
ACTIONS(686), 1,
anon_sym_LBRACE,
ACTIONS(688), 1,
anon_sym_LPAREN,
ACTIONS(690), 1,
sym_integer,
ACTIONS(696), 1,
anon_sym_LBRACK,
ACTIONS(698), 1,
anon_sym_EQ_GT,
ACTIONS(706), 1,
anon_sym_table,
STATE(59), 1,
sym_expression,
STATE(475), 1,
sym_identifier_list,
ACTIONS(692), 2,
sym_float,
sym_string,
ACTIONS(694), 2,
anon_sym_true,
anon_sym_false,
STATE(76), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(78), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17050] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(328), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17108] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(680), 1,
anon_sym_table,
STATE(125), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17166] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(320), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17224] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(714), 1,
anon_sym_LBRACE,
ACTIONS(716), 1,
anon_sym_LPAREN,
ACTIONS(718), 1,
sym_integer,
ACTIONS(724), 1,
anon_sym_LBRACK,
ACTIONS(726), 1,
anon_sym_EQ_GT,
ACTIONS(730), 1,
anon_sym_table,
STATE(277), 1,
sym_expression,
STATE(462), 1,
sym_identifier_list,
ACTIONS(720), 2,
sym_float,
sym_string,
ACTIONS(722), 2,
anon_sym_true,
anon_sym_false,
STATE(306), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17282] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(680), 1,
anon_sym_table,
STATE(119), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17340] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(714), 1,
anon_sym_LBRACE,
ACTIONS(716), 1,
anon_sym_LPAREN,
ACTIONS(718), 1,
sym_integer,
ACTIONS(724), 1,
anon_sym_LBRACK,
ACTIONS(726), 1,
anon_sym_EQ_GT,
ACTIONS(730), 1,
anon_sym_table,
STATE(276), 1,
sym_expression,
STATE(462), 1,
sym_identifier_list,
ACTIONS(720), 2,
sym_float,
sym_string,
ACTIONS(722), 2,
anon_sym_true,
anon_sym_false,
STATE(306), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17398] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(411), 1,
sym_identifier,
ACTIONS(672), 1,
anon_sym_table,
STATE(261), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17456] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(680), 1,
anon_sym_table,
STATE(124), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17514] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(198), 1,
sym_math_operator,
STATE(228), 1,
sym_logic_operator,
ACTIONS(307), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(305), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[17552] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(331), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17610] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(53), 1,
anon_sym_LBRACE,
ACTIONS(55), 1,
anon_sym_LPAREN,
ACTIONS(57), 1,
sym_integer,
ACTIONS(63), 1,
anon_sym_LBRACK,
ACTIONS(65), 1,
anon_sym_EQ_GT,
ACTIONS(67), 1,
anon_sym_table,
ACTIONS(411), 1,
sym_identifier,
STATE(336), 1,
sym_expression,
STATE(458), 1,
sym_identifier_list,
ACTIONS(59), 2,
sym_float,
sym_string,
ACTIONS(61), 2,
anon_sym_true,
anon_sym_false,
STATE(282), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(279), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17668] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(453), 1,
sym_identifier,
ACTIONS(455), 1,
anon_sym_LBRACE,
ACTIONS(457), 1,
anon_sym_LPAREN,
ACTIONS(461), 1,
sym_integer,
ACTIONS(467), 1,
anon_sym_LBRACK,
ACTIONS(469), 1,
anon_sym_EQ_GT,
ACTIONS(471), 1,
anon_sym_table,
STATE(96), 1,
sym_expression,
STATE(480), 1,
sym_identifier_list,
ACTIONS(463), 2,
sym_float,
sym_string,
ACTIONS(465), 2,
anon_sym_true,
anon_sym_false,
STATE(131), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(139), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17726] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(714), 1,
anon_sym_LBRACE,
ACTIONS(716), 1,
anon_sym_LPAREN,
ACTIONS(718), 1,
sym_integer,
ACTIONS(724), 1,
anon_sym_LBRACK,
ACTIONS(726), 1,
anon_sym_EQ_GT,
ACTIONS(730), 1,
anon_sym_table,
STATE(268), 1,
sym_expression,
STATE(462), 1,
sym_identifier_list,
ACTIONS(720), 2,
sym_float,
sym_string,
ACTIONS(722), 2,
anon_sym_true,
anon_sym_false,
STATE(306), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17784] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(714), 1,
anon_sym_LBRACE,
ACTIONS(716), 1,
anon_sym_LPAREN,
ACTIONS(718), 1,
sym_integer,
ACTIONS(724), 1,
anon_sym_LBRACK,
ACTIONS(726), 1,
anon_sym_EQ_GT,
ACTIONS(730), 1,
anon_sym_table,
STATE(278), 1,
sym_expression,
STATE(462), 1,
sym_identifier_list,
ACTIONS(720), 2,
sym_float,
sym_string,
ACTIONS(722), 2,
anon_sym_true,
anon_sym_false,
STATE(306), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17842] = 15,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
ACTIONS(712), 1,
sym_identifier,
ACTIONS(714), 1,
anon_sym_LBRACE,
ACTIONS(716), 1,
anon_sym_LPAREN,
ACTIONS(718), 1,
sym_integer,
ACTIONS(724), 1,
anon_sym_LBRACK,
ACTIONS(726), 1,
anon_sym_EQ_GT,
ACTIONS(730), 1,
anon_sym_table,
STATE(275), 1,
sym_expression,
STATE(462), 1,
sym_identifier_list,
ACTIONS(720), 2,
sym_float,
sym_string,
ACTIONS(722), 2,
anon_sym_true,
anon_sym_false,
STATE(306), 5,
sym_boolean,
sym_list,
sym_map,
sym_table,
sym_function,
STATE(311), 7,
sym_yield,
sym__expression_kind,
sym_value,
sym_index,
sym_math,
sym_logic,
sym_function_call,
[17900] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(291), 1,
anon_sym_EQ,
ACTIONS(732), 1,
anon_sym_DASH_GT,
ACTIONS(734), 1,
anon_sym_COLON,
STATE(265), 1,
sym_logic_operator,
STATE(266), 1,
sym_math_operator,
ACTIONS(297), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(289), 7,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[17949] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(311), 2,
anon_sym_async,
sym_identifier,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(309), 6,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_EQ_GT,
[17998] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(287), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(285), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18035] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(291), 2,
anon_sym_async,
sym_identifier,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(289), 6,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_EQ_GT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[18084] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(265), 1,
sym_logic_operator,
STATE(266), 1,
sym_math_operator,
ACTIONS(317), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(315), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[18121] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(740), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_asyncfor,
anon_sym_PIPE,
ACTIONS(738), 17,
anon_sym_async,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_if,
anon_sym_match,
anon_sym_while,
anon_sym_for,
anon_sym_transform,
anon_sym_filter,
anon_sym_find,
anon_sym_remove,
anon_sym_reduce,
anon_sym_select,
anon_sym_insert,
anon_sym_table,
[18154] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(317), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(315), 18,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18191] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(311), 1,
anon_sym_EQ,
ACTIONS(732), 1,
anon_sym_DASH_GT,
ACTIONS(734), 1,
anon_sym_COLON,
STATE(265), 1,
sym_logic_operator,
STATE(266), 1,
sym_math_operator,
ACTIONS(297), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(309), 7,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_DOT_DOT,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[18240] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(265), 1,
sym_logic_operator,
STATE(266), 1,
sym_math_operator,
ACTIONS(307), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(305), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[18277] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(742), 1,
anon_sym_DOT_DOT,
STATE(265), 1,
sym_logic_operator,
STATE(266), 1,
sym_math_operator,
ACTIONS(307), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(305), 17,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[18316] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(265), 1,
sym_logic_operator,
STATE(266), 1,
sym_math_operator,
ACTIONS(287), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(285), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[18353] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(383), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(381), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18385] = 14,
ACTIONS(3), 1,
sym__comment,
ACTIONS(188), 1,
anon_sym_async,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(395), 1,
sym_identifier,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(744), 1,
anon_sym_LBRACE,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(373), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(393), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[18439] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(335), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(333), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18471] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(375), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(373), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18503] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(220), 1,
sym_math_operator,
STATE(226), 1,
sym_logic_operator,
ACTIONS(317), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(315), 17,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[18539] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(331), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(329), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18571] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(291), 1,
anon_sym_EQ,
ACTIONS(732), 1,
anon_sym_DASH_GT,
ACTIONS(746), 1,
anon_sym_COLON,
STATE(220), 1,
sym_math_operator,
STATE(226), 1,
sym_logic_operator,
ACTIONS(297), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(289), 6,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[18619] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(311), 1,
anon_sym_EQ,
ACTIONS(732), 1,
anon_sym_DASH_GT,
ACTIONS(746), 1,
anon_sym_COLON,
STATE(220), 1,
sym_math_operator,
STATE(226), 1,
sym_logic_operator,
ACTIONS(297), 2,
anon_sym_PLUS,
anon_sym_DASH,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 3,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
ACTIONS(309), 6,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[18667] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(351), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(349), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18699] = 5,
ACTIONS(3), 1,
sym__comment,
STATE(220), 1,
sym_math_operator,
STATE(226), 1,
sym_logic_operator,
ACTIONS(287), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(285), 17,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[18735] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(377), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18767] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(325), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18799] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(371), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(369), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18831] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(339), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(337), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18863] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(367), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(365), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18895] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(323), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(321), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18927] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(355), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(353), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18959] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(363), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(361), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[18991] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(359), 5,
anon_sym_async,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(357), 19,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_RPAREN,
anon_sym_COMMA,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_EQ_GT,
[19023] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(367), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(365), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19054] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(345), 1,
anon_sym_EQ,
STATE(49), 1,
sym_assignment_operator,
ACTIONS(347), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(343), 4,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(341), 15,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19091] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(363), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(361), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19122] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(323), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(321), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19153] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(331), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(329), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19184] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(335), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(333), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19215] = 6,
ACTIONS(3), 1,
sym__comment,
ACTIONS(345), 1,
anon_sym_EQ,
STATE(50), 1,
sym_assignment_operator,
ACTIONS(347), 2,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
ACTIONS(343), 4,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(341), 15,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19252] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(339), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(337), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19283] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(375), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(373), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19314] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(325), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19345] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(379), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(377), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19376] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(355), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(353), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19407] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(359), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(357), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19438] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(383), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(381), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19469] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(371), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(369), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19500] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(351), 5,
anon_sym_EQ,
anon_sym_PLUS,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(349), 18,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_DASH_GT,
anon_sym_COMMA,
sym_identifier,
anon_sym_COLON,
anon_sym_DOT_DOT,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
anon_sym_PLUS_EQ,
anon_sym_DASH_EQ,
[19531] = 11,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(746), 1,
anon_sym_COLON,
ACTIONS(748), 1,
anon_sym_SEMI,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(401), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19576] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(746), 1,
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(401), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19619] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(407), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19662] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(368), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19708] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(370), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19754] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(752), 1,
anon_sym_async,
STATE(154), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19800] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(754), 1,
anon_sym_async,
ACTIONS(756), 1,
anon_sym_LBRACE,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(362), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19846] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(752), 1,
anon_sym_async,
STATE(169), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19892] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(365), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19938] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(752), 1,
anon_sym_async,
STATE(168), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[19984] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(369), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20030] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(752), 1,
anon_sym_async,
STATE(167), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20076] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(752), 1,
anon_sym_async,
STATE(170), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20122] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(754), 1,
anon_sym_async,
ACTIONS(756), 1,
anon_sym_LBRACE,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(361), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20168] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(752), 1,
anon_sym_async,
STATE(171), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20214] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(752), 1,
anon_sym_async,
STATE(163), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20260] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(758), 1,
anon_sym_async,
ACTIONS(760), 1,
anon_sym_LBRACE,
STATE(148), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20306] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(752), 1,
anon_sym_async,
STATE(156), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20352] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(371), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20398] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(372), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20444] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(374), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20490] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
STATE(375), 1,
sym_block,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20536] = 12,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(758), 1,
anon_sym_async,
ACTIONS(760), 1,
anon_sym_LBRACE,
STATE(149), 1,
sym_block,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20582] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(762), 1,
sym_identifier,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20622] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(764), 1,
anon_sym_EQ_GT,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20662] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(766), 1,
anon_sym_EQ_GT,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20702] = 10,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
ACTIONS(768), 1,
sym_identifier,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20742] = 9,
ACTIONS(3), 1,
sym__comment,
ACTIONS(297), 1,
anon_sym_DASH,
ACTIONS(708), 1,
anon_sym_DASH_GT,
ACTIONS(736), 1,
anon_sym_COLON,
STATE(189), 1,
sym_logic_operator,
STATE(232), 1,
sym_math_operator,
ACTIONS(303), 2,
anon_sym_GT,
anon_sym_LT,
ACTIONS(299), 4,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
ACTIONS(301), 6,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20779] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(770), 1,
anon_sym_in,
ACTIONS(343), 4,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(341), 12,
anon_sym_DASH_GT,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20806] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(772), 1,
anon_sym_in,
ACTIONS(343), 4,
sym_identifier,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(341), 12,
anon_sym_DASH_GT,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20833] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(774), 1,
anon_sym_RPAREN,
ACTIONS(383), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(381), 12,
anon_sym_DASH_GT,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20859] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(776), 1,
anon_sym_RPAREN,
ACTIONS(383), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(381), 12,
anon_sym_DASH_GT,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20885] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(778), 1,
anon_sym_RPAREN,
ACTIONS(383), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(381), 12,
anon_sym_DASH_GT,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20911] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(780), 1,
anon_sym_RPAREN,
ACTIONS(383), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(381), 12,
anon_sym_DASH_GT,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20937] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(782), 1,
anon_sym_RPAREN,
ACTIONS(383), 3,
anon_sym_DASH,
anon_sym_GT,
anon_sym_LT,
ACTIONS(381), 12,
anon_sym_DASH_GT,
anon_sym_COLON,
anon_sym_PLUS,
anon_sym_STAR,
anon_sym_SLASH,
anon_sym_PERCENT,
anon_sym_EQ_EQ,
anon_sym_BANG_EQ,
anon_sym_AMP_AMP,
anon_sym_PIPE_PIPE,
anon_sym_GT_EQ,
anon_sym_LT_EQ,
[20963] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(524), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(522), 10,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[20986] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(325), 10,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[21009] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(363), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(361), 10,
anon_sym_LBRACE,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_LPAREN,
anon_sym_COMMA,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[21032] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(784), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(563), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_RBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[21053] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(786), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_from,
anon_sym_table,
ACTIONS(788), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[21074] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(790), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(641), 8,
anon_sym_LBRACE,
anon_sym_LPAREN,
anon_sym_RPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[21095] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(792), 6,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_from,
anon_sym_table,
ACTIONS(794), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[21116] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(796), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(798), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[21136] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(800), 5,
sym_identifier,
sym_integer,
anon_sym_true,
anon_sym_false,
anon_sym_table,
ACTIONS(802), 7,
anon_sym_LBRACE,
anon_sym_LPAREN,
sym_float,
sym_string,
anon_sym_LBRACK,
anon_sym_EQ_GT,
anon_sym_PIPE,
[21156] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(485), 1,
sym_identifier,
ACTIONS(804), 1,
anon_sym_elseif,
ACTIONS(806), 1,
anon_sym_else,
STATE(367), 1,
sym_else,
STATE(360), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(483), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[21181] = 7,
ACTIONS(3), 1,
sym__comment,
ACTIONS(493), 1,
sym_identifier,
ACTIONS(804), 1,
anon_sym_elseif,
ACTIONS(806), 1,
anon_sym_else,
STATE(380), 1,
sym_else,
STATE(358), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(491), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[21206] = 5,
ACTIONS(3), 1,
sym__comment,
ACTIONS(808), 1,
anon_sym_elseif,
ACTIONS(497), 2,
sym_identifier,
anon_sym_else,
STATE(360), 2,
sym_else_if,
aux_sym_if_else_repeat1,
ACTIONS(495), 3,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
[21226] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(516), 2,
sym_identifier,
anon_sym_else,
ACTIONS(514), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[21240] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(520), 2,
sym_identifier,
anon_sym_else,
ACTIONS(518), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[21254] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(327), 2,
sym_identifier,
anon_sym_else,
ACTIONS(325), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[21268] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(363), 2,
sym_identifier,
anon_sym_else,
ACTIONS(361), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
anon_sym_elseif,
[21282] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(578), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21292] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(748), 1,
anon_sym_SEMI,
ACTIONS(401), 3,
anon_sym_RBRACE,
anon_sym_COMMA,
sym_identifier,
[21304] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(584), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21314] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(606), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21324] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(526), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21334] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(598), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21344] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(594), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21354] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(590), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21364] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(574), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21374] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(602), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21384] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(532), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21394] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(401), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21404] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(612), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21414] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(664), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21424] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(536), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21434] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(483), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21444] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(668), 4,
anon_sym_RBRACE,
anon_sym_SEMI,
anon_sym_COMMA,
sym_identifier,
[21454] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(813), 1,
anon_sym_COMMA,
ACTIONS(811), 2,
sym_identifier,
anon_sym_PIPE,
[21465] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(75), 1,
anon_sym_RBRACE,
ACTIONS(815), 1,
sym_identifier,
STATE(398), 1,
aux_sym_map_repeat1,
[21478] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(817), 1,
anon_sym_async,
ACTIONS(819), 1,
anon_sym_LBRACE,
STATE(313), 1,
sym_block,
[21491] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(821), 1,
anon_sym_async,
ACTIONS(823), 1,
anon_sym_LBRACE,
STATE(134), 1,
sym_block,
[21504] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(815), 1,
sym_identifier,
ACTIONS(825), 1,
anon_sym_RBRACE,
STATE(387), 1,
aux_sym_map_repeat1,
[21517] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(827), 1,
sym_identifier,
ACTIONS(830), 1,
anon_sym_RBRACE,
STATE(387), 1,
aux_sym_map_repeat1,
[21530] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(834), 1,
anon_sym_COMMA,
ACTIONS(832), 2,
anon_sym_RBRACE,
sym_identifier,
[21541] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(836), 1,
anon_sym_async,
ACTIONS(838), 1,
anon_sym_LBRACE,
STATE(100), 1,
sym_block,
[21554] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(815), 1,
sym_identifier,
ACTIONS(840), 1,
anon_sym_RBRACE,
STATE(410), 1,
aux_sym_map_repeat1,
[21567] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(752), 1,
anon_sym_async,
STATE(153), 1,
sym_block,
[21580] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(815), 1,
sym_identifier,
ACTIONS(842), 1,
anon_sym_RBRACE,
STATE(387), 1,
aux_sym_map_repeat1,
[21593] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(844), 1,
anon_sym_async,
ACTIONS(846), 1,
anon_sym_LBRACE,
STATE(349), 1,
sym_block,
[21606] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(815), 1,
sym_identifier,
ACTIONS(848), 1,
anon_sym_RBRACE,
STATE(387), 1,
aux_sym_map_repeat1,
[21619] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(850), 1,
sym_identifier,
ACTIONS(852), 1,
anon_sym_PIPE,
STATE(402), 1,
aux_sym_identifier_list_repeat1,
[21632] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(821), 1,
anon_sym_async,
ACTIONS(823), 1,
anon_sym_LBRACE,
STATE(145), 1,
sym_block,
[21645] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(287), 1,
sym_block,
[21658] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(815), 1,
sym_identifier,
ACTIONS(854), 1,
anon_sym_RBRACE,
STATE(387), 1,
aux_sym_map_repeat1,
[21671] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(73), 1,
anon_sym_RBRACE,
ACTIONS(815), 1,
sym_identifier,
STATE(392), 1,
aux_sym_map_repeat1,
[21684] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(817), 1,
anon_sym_async,
ACTIONS(819), 1,
anon_sym_LBRACE,
STATE(301), 1,
sym_block,
[21697] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(294), 1,
sym_block,
[21710] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(850), 1,
sym_identifier,
ACTIONS(856), 1,
anon_sym_PIPE,
STATE(403), 1,
aux_sym_identifier_list_repeat1,
[21723] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(858), 1,
sym_identifier,
ACTIONS(861), 1,
anon_sym_PIPE,
STATE(403), 1,
aux_sym_identifier_list_repeat1,
[21736] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(863), 1,
anon_sym_async,
ACTIONS(865), 1,
anon_sym_LBRACE,
STATE(70), 1,
sym_block,
[21749] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(836), 1,
anon_sym_async,
ACTIONS(838), 1,
anon_sym_LBRACE,
STATE(103), 1,
sym_block,
[21762] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(744), 1,
anon_sym_LBRACE,
ACTIONS(750), 1,
anon_sym_async,
STATE(377), 1,
sym_block,
[21775] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(397), 1,
anon_sym_LBRACE,
ACTIONS(752), 1,
anon_sym_async,
STATE(173), 1,
sym_block,
[21788] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(815), 1,
sym_identifier,
ACTIONS(867), 1,
anon_sym_RBRACE,
STATE(394), 1,
aux_sym_map_repeat1,
[21801] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(815), 1,
sym_identifier,
ACTIONS(869), 1,
anon_sym_RBRACE,
STATE(386), 1,
aux_sym_map_repeat1,
[21814] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(815), 1,
sym_identifier,
ACTIONS(871), 1,
anon_sym_RBRACE,
STATE(387), 1,
aux_sym_map_repeat1,
[21827] = 4,
ACTIONS(3), 1,
sym__comment,
ACTIONS(863), 1,
anon_sym_async,
ACTIONS(865), 1,
anon_sym_LBRACE,
STATE(63), 1,
sym_block,
[21840] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(225), 1,
sym_identifier_list,
[21850] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(479), 1,
sym_identifier_list,
[21860] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(861), 2,
sym_identifier,
anon_sym_PIPE,
[21868] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(873), 1,
anon_sym_LPAREN,
STATE(65), 1,
sym_function_call,
[21878] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(245), 1,
sym_identifier_list,
[21888] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(875), 1,
anon_sym_LPAREN,
STATE(109), 1,
sym_function_call,
[21898] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(209), 1,
sym_identifier_list,
[21908] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(877), 1,
anon_sym_LPAREN,
STATE(141), 1,
sym_function_call,
[21918] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(879), 1,
anon_sym_LPAREN,
STATE(284), 1,
sym_function_call,
[21928] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(194), 1,
sym_identifier_list,
[21938] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(236), 1,
sym_identifier_list,
[21948] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(235), 1,
sym_identifier_list,
[21958] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(254), 1,
sym_identifier_list,
[21968] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(227), 1,
sym_identifier_list,
[21978] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(267), 1,
sym_identifier_list,
[21988] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(451), 1,
sym_identifier_list,
[21998] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(881), 2,
anon_sym_RBRACE,
sym_identifier,
[22006] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(883), 1,
anon_sym_LPAREN,
STATE(302), 1,
sym_function_call,
[22016] = 3,
ACTIONS(3), 1,
sym__comment,
ACTIONS(47), 1,
anon_sym_PIPE,
STATE(221), 1,
sym_identifier_list,
[22026] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(885), 1,
anon_sym_in,
[22033] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(887), 1,
sym_identifier,
[22040] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(889), 1,
sym_identifier,
[22047] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(891), 1,
sym_identifier,
[22054] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(893), 1,
anon_sym_LBRACE,
[22061] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(895), 1,
anon_sym_in,
[22068] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(897), 1,
anon_sym_in,
[22075] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(899), 1,
anon_sym_RPAREN,
[22082] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(901), 1,
anon_sym_in,
[22089] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(903), 1,
anon_sym_from,
[22096] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(905), 1,
anon_sym_into,
[22103] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(907), 1,
anon_sym_in,
[22110] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(909), 1,
anon_sym_in,
[22117] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(911), 1,
anon_sym_in,
[22124] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(913), 1,
anon_sym_in,
[22131] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(915), 1,
sym_identifier,
[22138] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(917), 1,
anon_sym_in,
[22145] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(919), 1,
anon_sym_RPAREN,
[22152] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(921), 1,
anon_sym_from,
[22159] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(923), 1,
anon_sym_to,
[22166] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(925), 1,
anon_sym_from,
[22173] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(927), 1,
sym_identifier,
[22180] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(929), 1,
anon_sym_LBRACE,
[22187] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(931), 1,
sym_identifier,
[22194] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(933), 1,
anon_sym_EQ,
[22201] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(935), 1,
sym_identifier,
[22208] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(937), 1,
anon_sym_RPAREN,
[22215] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(939), 1,
anon_sym_EQ_GT,
[22222] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(941), 1,
anon_sym_in,
[22229] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(943), 1,
anon_sym_into,
[22236] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(945), 1,
anon_sym_RPAREN,
[22243] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(947), 1,
anon_sym_EQ_GT,
[22250] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(949), 1,
anon_sym_LBRACE,
[22257] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(951), 1,
anon_sym_LBRACE,
[22264] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(953), 1,
anon_sym_LBRACE,
[22271] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(955), 1,
anon_sym_LBRACE,
[22278] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(957), 1,
anon_sym_LBRACE,
[22285] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(959), 1,
anon_sym_LBRACE,
[22292] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(961), 1,
anon_sym_LBRACE,
[22299] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(963), 1,
sym_identifier,
[22306] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(965), 1,
sym_identifier,
[22313] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(967), 1,
ts_builtin_sym_end,
[22320] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(969), 1,
sym_identifier,
[22327] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(971), 1,
sym_identifier,
[22334] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(973), 1,
anon_sym_EQ_GT,
[22341] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(975), 1,
anon_sym_EQ_GT,
[22348] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(977), 1,
sym_identifier,
[22355] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(979), 1,
sym_identifier,
[22362] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(981), 1,
anon_sym_from,
[22369] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(983), 1,
anon_sym_EQ_GT,
[22376] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(985), 1,
anon_sym_RPAREN,
[22383] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(987), 1,
anon_sym_to,
[22390] = 2,
ACTIONS(3), 1,
sym__comment,
ACTIONS(989), 1,
sym_identifier,
};
static const uint32_t ts_small_parse_table_map[] = {
[SMALL_STATE(2)] = 0,
[SMALL_STATE(3)] = 98,
[SMALL_STATE(4)] = 196,
[SMALL_STATE(5)] = 294,
[SMALL_STATE(6)] = 392,
[SMALL_STATE(7)] = 490,
[SMALL_STATE(8)] = 618,
[SMALL_STATE(9)] = 746,
[SMALL_STATE(10)] = 872,
[SMALL_STATE(11)] = 997,
[SMALL_STATE(12)] = 1122,
[SMALL_STATE(13)] = 1247,
[SMALL_STATE(14)] = 1372,
[SMALL_STATE(15)] = 1497,
[SMALL_STATE(16)] = 1622,
[SMALL_STATE(17)] = 1747,
[SMALL_STATE(18)] = 1872,
[SMALL_STATE(19)] = 1997,
[SMALL_STATE(20)] = 2122,
[SMALL_STATE(21)] = 2247,
[SMALL_STATE(22)] = 2372,
[SMALL_STATE(23)] = 2497,
[SMALL_STATE(24)] = 2622,
[SMALL_STATE(25)] = 2747,
[SMALL_STATE(26)] = 2872,
[SMALL_STATE(27)] = 2997,
[SMALL_STATE(28)] = 3122,
[SMALL_STATE(29)] = 3247,
[SMALL_STATE(30)] = 3369,
[SMALL_STATE(31)] = 3491,
[SMALL_STATE(32)] = 3613,
[SMALL_STATE(33)] = 3735,
[SMALL_STATE(34)] = 3857,
[SMALL_STATE(35)] = 3979,
[SMALL_STATE(36)] = 4101,
[SMALL_STATE(37)] = 4223,
[SMALL_STATE(38)] = 4345,
[SMALL_STATE(39)] = 4467,
[SMALL_STATE(40)] = 4589,
[SMALL_STATE(41)] = 4711,
[SMALL_STATE(42)] = 4833,
[SMALL_STATE(43)] = 4955,
[SMALL_STATE(44)] = 5077,
[SMALL_STATE(45)] = 5199,
[SMALL_STATE(46)] = 5321,
[SMALL_STATE(47)] = 5443,
[SMALL_STATE(48)] = 5564,
[SMALL_STATE(49)] = 5685,
[SMALL_STATE(50)] = 5806,
[SMALL_STATE(51)] = 5927,
[SMALL_STATE(52)] = 6048,
[SMALL_STATE(53)] = 6169,
[SMALL_STATE(54)] = 6230,
[SMALL_STATE(55)] = 6303,
[SMALL_STATE(56)] = 6364,
[SMALL_STATE(57)] = 6437,
[SMALL_STATE(58)] = 6500,
[SMALL_STATE(59)] = 6561,
[SMALL_STATE(60)] = 6621,
[SMALL_STATE(61)] = 6681,
[SMALL_STATE(62)] = 6753,
[SMALL_STATE(63)] = 6825,
[SMALL_STATE(64)] = 6880,
[SMALL_STATE(65)] = 6935,
[SMALL_STATE(66)] = 6990,
[SMALL_STATE(67)] = 7045,
[SMALL_STATE(68)] = 7100,
[SMALL_STATE(69)] = 7161,
[SMALL_STATE(70)] = 7222,
[SMALL_STATE(71)] = 7277,
[SMALL_STATE(72)] = 7332,
[SMALL_STATE(73)] = 7387,
[SMALL_STATE(74)] = 7442,
[SMALL_STATE(75)] = 7497,
[SMALL_STATE(76)] = 7552,
[SMALL_STATE(77)] = 7607,
[SMALL_STATE(78)] = 7662,
[SMALL_STATE(79)] = 7717,
[SMALL_STATE(80)] = 7787,
[SMALL_STATE(81)] = 7845,
[SMALL_STATE(82)] = 7905,
[SMALL_STATE(83)] = 7963,
[SMALL_STATE(84)] = 8023,
[SMALL_STATE(85)] = 8081,
[SMALL_STATE(86)] = 8157,
[SMALL_STATE(87)] = 8227,
[SMALL_STATE(88)] = 8296,
[SMALL_STATE(89)] = 8353,
[SMALL_STATE(90)] = 8424,
[SMALL_STATE(91)] = 8493,
[SMALL_STATE(92)] = 8562,
[SMALL_STATE(93)] = 8619,
[SMALL_STATE(94)] = 8688,
[SMALL_STATE(95)] = 8740,
[SMALL_STATE(96)] = 8792,
[SMALL_STATE(97)] = 8886,
[SMALL_STATE(98)] = 8938,
[SMALL_STATE(99)] = 8990,
[SMALL_STATE(100)] = 9042,
[SMALL_STATE(101)] = 9094,
[SMALL_STATE(102)] = 9146,
[SMALL_STATE(103)] = 9198,
[SMALL_STATE(104)] = 9250,
[SMALL_STATE(105)] = 9302,
[SMALL_STATE(106)] = 9354,
[SMALL_STATE(107)] = 9406,
[SMALL_STATE(108)] = 9500,
[SMALL_STATE(109)] = 9552,
[SMALL_STATE(110)] = 9604,
[SMALL_STATE(111)] = 9685,
[SMALL_STATE(112)] = 9768,
[SMALL_STATE(113)] = 9849,
[SMALL_STATE(114)] = 9896,
[SMALL_STATE(115)] = 9943,
[SMALL_STATE(116)] = 9990,
[SMALL_STATE(117)] = 10037,
[SMALL_STATE(118)] = 10084,
[SMALL_STATE(119)] = 10129,
[SMALL_STATE(120)] = 10186,
[SMALL_STATE(121)] = 10233,
[SMALL_STATE(122)] = 10282,
[SMALL_STATE(123)] = 10327,
[SMALL_STATE(124)] = 10376,
[SMALL_STATE(125)] = 10421,
[SMALL_STATE(126)] = 10478,
[SMALL_STATE(127)] = 10522,
[SMALL_STATE(128)] = 10578,
[SMALL_STATE(129)] = 10622,
[SMALL_STATE(130)] = 10678,
[SMALL_STATE(131)] = 10722,
[SMALL_STATE(132)] = 10761,
[SMALL_STATE(133)] = 10800,
[SMALL_STATE(134)] = 10839,
[SMALL_STATE(135)] = 10878,
[SMALL_STATE(136)] = 10917,
[SMALL_STATE(137)] = 10956,
[SMALL_STATE(138)] = 10995,
[SMALL_STATE(139)] = 11034,
[SMALL_STATE(140)] = 11073,
[SMALL_STATE(141)] = 11112,
[SMALL_STATE(142)] = 11151,
[SMALL_STATE(143)] = 11190,
[SMALL_STATE(144)] = 11247,
[SMALL_STATE(145)] = 11286,
[SMALL_STATE(146)] = 11325,
[SMALL_STATE(147)] = 11382,
[SMALL_STATE(148)] = 11448,
[SMALL_STATE(149)] = 11486,
[SMALL_STATE(150)] = 11524,
[SMALL_STATE(151)] = 11590,
[SMALL_STATE(152)] = 11628,
[SMALL_STATE(153)] = 11666,
[SMALL_STATE(154)] = 11702,
[SMALL_STATE(155)] = 11738,
[SMALL_STATE(156)] = 11802,
[SMALL_STATE(157)] = 11838,
[SMALL_STATE(158)] = 11874,
[SMALL_STATE(159)] = 11910,
[SMALL_STATE(160)] = 11946,
[SMALL_STATE(161)] = 12010,
[SMALL_STATE(162)] = 12074,
[SMALL_STATE(163)] = 12110,
[SMALL_STATE(164)] = 12146,
[SMALL_STATE(165)] = 12210,
[SMALL_STATE(166)] = 12246,
[SMALL_STATE(167)] = 12310,
[SMALL_STATE(168)] = 12346,
[SMALL_STATE(169)] = 12382,
[SMALL_STATE(170)] = 12418,
[SMALL_STATE(171)] = 12454,
[SMALL_STATE(172)] = 12490,
[SMALL_STATE(173)] = 12554,
[SMALL_STATE(174)] = 12590,
[SMALL_STATE(175)] = 12654,
[SMALL_STATE(176)] = 12718,
[SMALL_STATE(177)] = 12782,
[SMALL_STATE(178)] = 12818,
[SMALL_STATE(179)] = 12882,
[SMALL_STATE(180)] = 12946,
[SMALL_STATE(181)] = 13010,
[SMALL_STATE(182)] = 13046,
[SMALL_STATE(183)] = 13084,
[SMALL_STATE(184)] = 13148,
[SMALL_STATE(185)] = 13212,
[SMALL_STATE(186)] = 13276,
[SMALL_STATE(187)] = 13340,
[SMALL_STATE(188)] = 13376,
[SMALL_STATE(189)] = 13412,
[SMALL_STATE(190)] = 13470,
[SMALL_STATE(191)] = 13528,
[SMALL_STATE(192)] = 13586,
[SMALL_STATE(193)] = 13644,
[SMALL_STATE(194)] = 13702,
[SMALL_STATE(195)] = 13760,
[SMALL_STATE(196)] = 13818,
[SMALL_STATE(197)] = 13876,
[SMALL_STATE(198)] = 13934,
[SMALL_STATE(199)] = 13992,
[SMALL_STATE(200)] = 14032,
[SMALL_STATE(201)] = 14090,
[SMALL_STATE(202)] = 14148,
[SMALL_STATE(203)] = 14206,
[SMALL_STATE(204)] = 14264,
[SMALL_STATE(205)] = 14322,
[SMALL_STATE(206)] = 14380,
[SMALL_STATE(207)] = 14438,
[SMALL_STATE(208)] = 14496,
[SMALL_STATE(209)] = 14554,
[SMALL_STATE(210)] = 14612,
[SMALL_STATE(211)] = 14662,
[SMALL_STATE(212)] = 14712,
[SMALL_STATE(213)] = 14770,
[SMALL_STATE(214)] = 14828,
[SMALL_STATE(215)] = 14886,
[SMALL_STATE(216)] = 14944,
[SMALL_STATE(217)] = 15002,
[SMALL_STATE(218)] = 15060,
[SMALL_STATE(219)] = 15118,
[SMALL_STATE(220)] = 15176,
[SMALL_STATE(221)] = 15234,
[SMALL_STATE(222)] = 15292,
[SMALL_STATE(223)] = 15350,
[SMALL_STATE(224)] = 15408,
[SMALL_STATE(225)] = 15466,
[SMALL_STATE(226)] = 15524,
[SMALL_STATE(227)] = 15582,
[SMALL_STATE(228)] = 15640,
[SMALL_STATE(229)] = 15698,
[SMALL_STATE(230)] = 15736,
[SMALL_STATE(231)] = 15794,
[SMALL_STATE(232)] = 15852,
[SMALL_STATE(233)] = 15910,
[SMALL_STATE(234)] = 15968,
[SMALL_STATE(235)] = 16006,
[SMALL_STATE(236)] = 16064,
[SMALL_STATE(237)] = 16122,
[SMALL_STATE(238)] = 16180,
[SMALL_STATE(239)] = 16238,
[SMALL_STATE(240)] = 16296,
[SMALL_STATE(241)] = 16354,
[SMALL_STATE(242)] = 16412,
[SMALL_STATE(243)] = 16470,
[SMALL_STATE(244)] = 16528,
[SMALL_STATE(245)] = 16586,
[SMALL_STATE(246)] = 16644,
[SMALL_STATE(247)] = 16702,
[SMALL_STATE(248)] = 16760,
[SMALL_STATE(249)] = 16818,
[SMALL_STATE(250)] = 16876,
[SMALL_STATE(251)] = 16934,
[SMALL_STATE(252)] = 16992,
[SMALL_STATE(253)] = 17050,
[SMALL_STATE(254)] = 17108,
[SMALL_STATE(255)] = 17166,
[SMALL_STATE(256)] = 17224,
[SMALL_STATE(257)] = 17282,
[SMALL_STATE(258)] = 17340,
[SMALL_STATE(259)] = 17398,
[SMALL_STATE(260)] = 17456,
[SMALL_STATE(261)] = 17514,
[SMALL_STATE(262)] = 17552,
[SMALL_STATE(263)] = 17610,
[SMALL_STATE(264)] = 17668,
[SMALL_STATE(265)] = 17726,
[SMALL_STATE(266)] = 17784,
[SMALL_STATE(267)] = 17842,
[SMALL_STATE(268)] = 17900,
[SMALL_STATE(269)] = 17949,
[SMALL_STATE(270)] = 17998,
[SMALL_STATE(271)] = 18035,
[SMALL_STATE(272)] = 18084,
[SMALL_STATE(273)] = 18121,
[SMALL_STATE(274)] = 18154,
[SMALL_STATE(275)] = 18191,
[SMALL_STATE(276)] = 18240,
[SMALL_STATE(277)] = 18277,
[SMALL_STATE(278)] = 18316,
[SMALL_STATE(279)] = 18353,
[SMALL_STATE(280)] = 18385,
[SMALL_STATE(281)] = 18439,
[SMALL_STATE(282)] = 18471,
[SMALL_STATE(283)] = 18503,
[SMALL_STATE(284)] = 18539,
[SMALL_STATE(285)] = 18571,
[SMALL_STATE(286)] = 18619,
[SMALL_STATE(287)] = 18667,
[SMALL_STATE(288)] = 18699,
[SMALL_STATE(289)] = 18735,
[SMALL_STATE(290)] = 18767,
[SMALL_STATE(291)] = 18799,
[SMALL_STATE(292)] = 18831,
[SMALL_STATE(293)] = 18863,
[SMALL_STATE(294)] = 18895,
[SMALL_STATE(295)] = 18927,
[SMALL_STATE(296)] = 18959,
[SMALL_STATE(297)] = 18991,
[SMALL_STATE(298)] = 19023,
[SMALL_STATE(299)] = 19054,
[SMALL_STATE(300)] = 19091,
[SMALL_STATE(301)] = 19122,
[SMALL_STATE(302)] = 19153,
[SMALL_STATE(303)] = 19184,
[SMALL_STATE(304)] = 19215,
[SMALL_STATE(305)] = 19252,
[SMALL_STATE(306)] = 19283,
[SMALL_STATE(307)] = 19314,
[SMALL_STATE(308)] = 19345,
[SMALL_STATE(309)] = 19376,
[SMALL_STATE(310)] = 19407,
[SMALL_STATE(311)] = 19438,
[SMALL_STATE(312)] = 19469,
[SMALL_STATE(313)] = 19500,
[SMALL_STATE(314)] = 19531,
[SMALL_STATE(315)] = 19576,
[SMALL_STATE(316)] = 19619,
[SMALL_STATE(317)] = 19662,
[SMALL_STATE(318)] = 19708,
[SMALL_STATE(319)] = 19754,
[SMALL_STATE(320)] = 19800,
[SMALL_STATE(321)] = 19846,
[SMALL_STATE(322)] = 19892,
[SMALL_STATE(323)] = 19938,
[SMALL_STATE(324)] = 19984,
[SMALL_STATE(325)] = 20030,
[SMALL_STATE(326)] = 20076,
[SMALL_STATE(327)] = 20122,
[SMALL_STATE(328)] = 20168,
[SMALL_STATE(329)] = 20214,
[SMALL_STATE(330)] = 20260,
[SMALL_STATE(331)] = 20306,
[SMALL_STATE(332)] = 20352,
[SMALL_STATE(333)] = 20398,
[SMALL_STATE(334)] = 20444,
[SMALL_STATE(335)] = 20490,
[SMALL_STATE(336)] = 20536,
[SMALL_STATE(337)] = 20582,
[SMALL_STATE(338)] = 20622,
[SMALL_STATE(339)] = 20662,
[SMALL_STATE(340)] = 20702,
[SMALL_STATE(341)] = 20742,
[SMALL_STATE(342)] = 20779,
[SMALL_STATE(343)] = 20806,
[SMALL_STATE(344)] = 20833,
[SMALL_STATE(345)] = 20859,
[SMALL_STATE(346)] = 20885,
[SMALL_STATE(347)] = 20911,
[SMALL_STATE(348)] = 20937,
[SMALL_STATE(349)] = 20963,
[SMALL_STATE(350)] = 20986,
[SMALL_STATE(351)] = 21009,
[SMALL_STATE(352)] = 21032,
[SMALL_STATE(353)] = 21053,
[SMALL_STATE(354)] = 21074,
[SMALL_STATE(355)] = 21095,
[SMALL_STATE(356)] = 21116,
[SMALL_STATE(357)] = 21136,
[SMALL_STATE(358)] = 21156,
[SMALL_STATE(359)] = 21181,
[SMALL_STATE(360)] = 21206,
[SMALL_STATE(361)] = 21226,
[SMALL_STATE(362)] = 21240,
[SMALL_STATE(363)] = 21254,
[SMALL_STATE(364)] = 21268,
[SMALL_STATE(365)] = 21282,
[SMALL_STATE(366)] = 21292,
[SMALL_STATE(367)] = 21304,
[SMALL_STATE(368)] = 21314,
[SMALL_STATE(369)] = 21324,
[SMALL_STATE(370)] = 21334,
[SMALL_STATE(371)] = 21344,
[SMALL_STATE(372)] = 21354,
[SMALL_STATE(373)] = 21364,
[SMALL_STATE(374)] = 21374,
[SMALL_STATE(375)] = 21384,
[SMALL_STATE(376)] = 21394,
[SMALL_STATE(377)] = 21404,
[SMALL_STATE(378)] = 21414,
[SMALL_STATE(379)] = 21424,
[SMALL_STATE(380)] = 21434,
[SMALL_STATE(381)] = 21444,
[SMALL_STATE(382)] = 21454,
[SMALL_STATE(383)] = 21465,
[SMALL_STATE(384)] = 21478,
[SMALL_STATE(385)] = 21491,
[SMALL_STATE(386)] = 21504,
[SMALL_STATE(387)] = 21517,
[SMALL_STATE(388)] = 21530,
[SMALL_STATE(389)] = 21541,
[SMALL_STATE(390)] = 21554,
[SMALL_STATE(391)] = 21567,
[SMALL_STATE(392)] = 21580,
[SMALL_STATE(393)] = 21593,
[SMALL_STATE(394)] = 21606,
[SMALL_STATE(395)] = 21619,
[SMALL_STATE(396)] = 21632,
[SMALL_STATE(397)] = 21645,
[SMALL_STATE(398)] = 21658,
[SMALL_STATE(399)] = 21671,
[SMALL_STATE(400)] = 21684,
[SMALL_STATE(401)] = 21697,
[SMALL_STATE(402)] = 21710,
[SMALL_STATE(403)] = 21723,
[SMALL_STATE(404)] = 21736,
[SMALL_STATE(405)] = 21749,
[SMALL_STATE(406)] = 21762,
[SMALL_STATE(407)] = 21775,
[SMALL_STATE(408)] = 21788,
[SMALL_STATE(409)] = 21801,
[SMALL_STATE(410)] = 21814,
[SMALL_STATE(411)] = 21827,
[SMALL_STATE(412)] = 21840,
[SMALL_STATE(413)] = 21850,
[SMALL_STATE(414)] = 21860,
[SMALL_STATE(415)] = 21868,
[SMALL_STATE(416)] = 21878,
[SMALL_STATE(417)] = 21888,
[SMALL_STATE(418)] = 21898,
[SMALL_STATE(419)] = 21908,
[SMALL_STATE(420)] = 21918,
[SMALL_STATE(421)] = 21928,
[SMALL_STATE(422)] = 21938,
[SMALL_STATE(423)] = 21948,
[SMALL_STATE(424)] = 21958,
[SMALL_STATE(425)] = 21968,
[SMALL_STATE(426)] = 21978,
[SMALL_STATE(427)] = 21988,
[SMALL_STATE(428)] = 21998,
[SMALL_STATE(429)] = 22006,
[SMALL_STATE(430)] = 22016,
[SMALL_STATE(431)] = 22026,
[SMALL_STATE(432)] = 22033,
[SMALL_STATE(433)] = 22040,
[SMALL_STATE(434)] = 22047,
[SMALL_STATE(435)] = 22054,
[SMALL_STATE(436)] = 22061,
[SMALL_STATE(437)] = 22068,
[SMALL_STATE(438)] = 22075,
[SMALL_STATE(439)] = 22082,
[SMALL_STATE(440)] = 22089,
[SMALL_STATE(441)] = 22096,
[SMALL_STATE(442)] = 22103,
[SMALL_STATE(443)] = 22110,
[SMALL_STATE(444)] = 22117,
[SMALL_STATE(445)] = 22124,
[SMALL_STATE(446)] = 22131,
[SMALL_STATE(447)] = 22138,
[SMALL_STATE(448)] = 22145,
[SMALL_STATE(449)] = 22152,
[SMALL_STATE(450)] = 22159,
[SMALL_STATE(451)] = 22166,
[SMALL_STATE(452)] = 22173,
[SMALL_STATE(453)] = 22180,
[SMALL_STATE(454)] = 22187,
[SMALL_STATE(455)] = 22194,
[SMALL_STATE(456)] = 22201,
[SMALL_STATE(457)] = 22208,
[SMALL_STATE(458)] = 22215,
[SMALL_STATE(459)] = 22222,
[SMALL_STATE(460)] = 22229,
[SMALL_STATE(461)] = 22236,
[SMALL_STATE(462)] = 22243,
[SMALL_STATE(463)] = 22250,
[SMALL_STATE(464)] = 22257,
[SMALL_STATE(465)] = 22264,
[SMALL_STATE(466)] = 22271,
[SMALL_STATE(467)] = 22278,
[SMALL_STATE(468)] = 22285,
[SMALL_STATE(469)] = 22292,
[SMALL_STATE(470)] = 22299,
[SMALL_STATE(471)] = 22306,
[SMALL_STATE(472)] = 22313,
[SMALL_STATE(473)] = 22320,
[SMALL_STATE(474)] = 22327,
[SMALL_STATE(475)] = 22334,
[SMALL_STATE(476)] = 22341,
[SMALL_STATE(477)] = 22348,
[SMALL_STATE(478)] = 22355,
[SMALL_STATE(479)] = 22362,
[SMALL_STATE(480)] = 22369,
[SMALL_STATE(481)] = 22376,
[SMALL_STATE(482)] = 22383,
[SMALL_STATE(483)] = 22390,
};
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_EXTRA(),
[5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69),
[7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453),
[9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8),
[11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4),
[13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94),
[15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94),
[17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105),
[19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172),
[21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263),
[23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264),
[25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389),
[27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191),
[29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434),
[31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434),
[33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(433),
[35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202),
[37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454),
[39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456),
[41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432),
[43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427),
[45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460),
[47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395),
[49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412),
[51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111),
[53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399),
[55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5),
[57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282),
[59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282),
[61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289),
[63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178),
[65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401),
[67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422),
[69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184),
[71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81),
[73] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291),
[75] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108),
[77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2),
[79] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(69),
[82] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(453),
[85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(8),
[88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(4),
[91] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(94),
[94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(94),
[97] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(105),
[100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(172),
[103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(263),
[106] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(264),
[109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(389),
[112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(191),
[115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(434),
[118] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(434),
[121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(433),
[124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(202),
[127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(454),
[130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(456),
[133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(432),
[136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(427),
[139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(460),
[142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(395),
[145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_root_repeat1, 2), SHIFT_REPEAT(412),
[148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133),
[150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296),
[152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140),
[154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106),
[156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152),
[158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_root, 1),
[160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300),
[162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307),
[164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364),
[166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177),
[168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363),
[170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95),
[172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350),
[174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290),
[176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159),
[178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73),
[180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64),
[182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151),
[184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351),
[186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304),
[188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463),
[190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7),
[192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255),
[194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250),
[196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243),
[198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470),
[200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470),
[202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471),
[204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204),
[206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473),
[208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474),
[210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483),
[212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413),
[214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441),
[216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(304),
[219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(463),
[222] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(7),
[225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(5),
[228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(282),
[231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(282),
[234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(289),
[237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(178),
[240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(255),
[243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(250),
[246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(401),
[249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(243),
[252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(470),
[255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(470),
[258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(471),
[261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(204),
[264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(473),
[267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(474),
[270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(483),
[273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(413),
[276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(441),
[279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_assignment_operator, 1), SHIFT(395),
[282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_assignment_operator, 1), SHIFT(422),
[285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math, 3),
[287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math, 3),
[289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic, 3),
[291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic, 3),
[293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415),
[295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224),
[297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356),
[299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356),
[301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357),
[303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357),
[305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 3),
[307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 3),
[309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_table, 3),
[311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_table, 3),
[313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248),
[315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index, 5),
[317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index, 5),
[319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201),
[321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 2, .production_id = 1),
[323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 2, .production_id = 1),
[325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3),
[327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3),
[329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield, 3),
[331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield, 3),
[333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3),
[335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3),
[337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3),
[339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3),
[341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_kind, 1),
[343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_kind, 1),
[345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273),
[347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273),
[349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 2),
[351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 2),
[353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 3),
[355] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 3),
[357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 3),
[359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 3),
[361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4),
[363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4),
[365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2),
[367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2),
[369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_map, 2),
[371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_map, 2),
[373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_value, 1),
[375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_value, 1),
[377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean, 1),
[379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean, 1),
[381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1),
[383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1),
[385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417),
[387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205),
[389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52),
[391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208),
[393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 4),
[395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 4),
[397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39),
[399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233),
[401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 1),
[403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 1),
[405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188),
[407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_insert, 4),
[409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_insert, 4),
[411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279),
[413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419),
[415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206),
[417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395),
[419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2),
[421] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(279),
[424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2),
[426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(399),
[429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(5),
[432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(282),
[435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(282),
[438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(289),
[441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(178),
[444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(401),
[447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(395),
[450] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 2), SHIFT_REPEAT(422),
[453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139),
[455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409),
[457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6),
[459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 1),
[461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131),
[463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131),
[465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142),
[467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185),
[469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385),
[471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(430),
[473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match, 3),
[475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match, 3),
[477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175),
[479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260),
[481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219),
[483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 2),
[485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 2),
[487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215),
[489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407),
[491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 1),
[493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 1),
[495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2),
[497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_else_repeat1, 2),
[499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(215),
[502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 1),
[504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 1),
[506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352),
[508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 1),
[510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 1),
[512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354),
[514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_if, 3),
[516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_if, 3),
[518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3),
[520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3),
[522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_repeat1, 3),
[524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_repeat1, 3),
[526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_transform, 5),
[528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_transform, 5),
[530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 2),
[532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reduce, 7),
[534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reduce, 7),
[536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3),
[538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment, 3),
[540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138),
[542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(139),
[545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(409),
[548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(6),
[551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(131),
[554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(131),
[557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(142),
[560] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(185),
[563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2),
[565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(385),
[568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(395),
[571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2), SHIFT_REPEAT(430),
[574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_select, 5),
[576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_select, 5),
[578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while, 3),
[580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while, 3),
[582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__context_defined_function, 2),
[584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_else, 3),
[586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_else, 3),
[588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99),
[590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remove, 5),
[592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_remove, 5),
[594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_find, 5),
[596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_find, 5),
[598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 5, .production_id = 3),
[600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 5, .production_id = 3),
[602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_filter, 6, .production_id = 4),
[604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_filter, 6, .production_id = 4),
[606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for, 5),
[608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for, 5),
[610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98),
[612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else, 2),
[614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else, 2),
[616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303),
[618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298),
[620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293),
[622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66),
[624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281),
[626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74),
[628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_built_in_function, 1),
[630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132),
[632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(139),
[635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(409),
[638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(6),
[641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__expression_list, 2),
[643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(131),
[646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(131),
[649] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(142),
[652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(185),
[655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(385),
[658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(395),
[661] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__expression_list, 2), SHIFT_REPEAT(430),
[664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_assignment, 3),
[666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_assignment, 3),
[668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement, 2),
[670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement, 2),
[672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425),
[674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97),
[676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383),
[678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421),
[680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424),
[682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230),
[684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78),
[686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390),
[688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3),
[690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76),
[692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76),
[694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77),
[696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183),
[698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411),
[700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416),
[702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343),
[704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342),
[706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418),
[708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420),
[710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259),
[712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311),
[714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408),
[716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2),
[718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306),
[720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306),
[722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308),
[724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176),
[726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400),
[728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423),
[730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426),
[732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429),
[734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258),
[736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192),
[738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_operator, 1),
[740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_operator, 1),
[742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240),
[744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41),
[746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256),
[748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381),
[750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463),
[752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453),
[754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467),
[756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32),
[758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465),
[760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36),
[762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443),
[764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393),
[766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391),
[768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442),
[770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218),
[772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251),
[774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309),
[776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102),
[778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136),
[780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71),
[782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295),
[784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_repeat1, 2),
[786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 3),
[788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 3),
[790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__expression_list, 2),
[792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier_list, 2),
[794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier_list, 2),
[796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_math_operator, 1),
[798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_math_operator, 1),
[800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_logic_operator, 1),
[802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_logic_operator, 1),
[804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239),
[806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406),
[808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_if_else_repeat1, 2), SHIFT_REPEAT(239),
[811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 1),
[813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414),
[815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455),
[817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468),
[819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44),
[821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464),
[823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42),
[825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135),
[827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2), SHIFT_REPEAT(455),
[830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 2),
[832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 3),
[834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428),
[836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435),
[838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38),
[840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75),
[842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297),
[844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469),
[846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45),
[848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310),
[850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382),
[852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355),
[854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104),
[856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353),
[858] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2), SHIFT_REPEAT(382),
[861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_list_repeat1, 2),
[863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466),
[865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34),
[867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312),
[869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144),
[871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72),
[873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116),
[875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113),
[877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115),
[879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114),
[881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_map_repeat1, 4),
[883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117),
[885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190),
[887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450),
[889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431),
[891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445),
[893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40),
[895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238),
[897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237),
[899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137),
[901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217),
[903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216),
[905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477),
[907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213),
[909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203),
[911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212),
[913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253),
[915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459),
[917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249),
[919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101),
[921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244),
[923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446),
[925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242),
[927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241),
[929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29),
[931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447),
[933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51),
[935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449),
[937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305),
[939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397),
[941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262),
[943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452),
[945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67),
[947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384),
[949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46),
[951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37),
[953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35),
[955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33),
[957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31),
[959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43),
[961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30),
[963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436),
[965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437),
[967] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(),
[969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439),
[971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440),
[973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404),
[975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405),
[977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196),
[979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444),
[981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195),
[983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396),
[985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292),
[987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478),
[989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482),
};
#ifdef __cplusplus
extern "C" {
#endif
#ifdef _WIN32
#define extern __declspec(dllexport)
#endif
extern const TSLanguage *tree_sitter_dust(void) {
static const TSLanguage language = {
.version = LANGUAGE_VERSION,
.symbol_count = SYMBOL_COUNT,
.alias_count = ALIAS_COUNT,
.token_count = TOKEN_COUNT,
.external_token_count = EXTERNAL_TOKEN_COUNT,
.state_count = STATE_COUNT,
.large_state_count = LARGE_STATE_COUNT,
.production_id_count = PRODUCTION_ID_COUNT,
.field_count = FIELD_COUNT,
.max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH,
.parse_table = &ts_parse_table[0][0],
.small_parse_table = ts_small_parse_table,
.small_parse_table_map = ts_small_parse_table_map,
.parse_actions = ts_parse_actions,
.symbol_names = ts_symbol_names,
.field_names = ts_field_names,
.field_map_slices = ts_field_map_slices,
.field_map_entries = ts_field_map_entries,
.symbol_metadata = ts_symbol_metadata,
.public_symbol_map = ts_symbol_map,
.alias_map = ts_non_terminal_alias_map,
.alias_sequences = &ts_alias_sequences[0][0],
.lex_modes = ts_lex_modes,
.lex_fn = ts_lex,
.keyword_lex_fn = ts_lex_keywords,
.keyword_capture_token = sym_identifier,
.primary_state_ids = ts_primary_state_ids,
};
return &language;
}
#ifdef __cplusplus
}
#endif