diff --git a/.eslintrc.js b/.eslintrc.js new file mode 100644 index 0000000..b2e707a --- /dev/null +++ b/.eslintrc.js @@ -0,0 +1,20 @@ +module.exports = { + 'env': { + 'commonjs': true, + 'es2021': true, + }, + 'extends': 'google', + 'overrides': [ + ], + 'parserOptions': { + 'ecmaVersion': 'latest', + 'sourceType': 'module', + }, + 'rules': { + 'indent': ['error', 2, {'SwitchCase': 1}], + 'max-len': [ + 'error', + {'code': 120, 'ignoreComments': true, 'ignoreUrls': true, 'ignoreStrings': true}, + ], + }, +}; diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..c647c2b --- /dev/null +++ b/.gitattributes @@ -0,0 +1,6 @@ +/src/** linguist-vendored +/examples/* linguist-vendored + +src/grammar.json -diff +src/node-types.json -diff +src/parser.c -diff diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..cb17c44 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,34 @@ +name: CI + +on: + push: + branches: + - master + pull_request: + branches: + - "**" + +jobs: + test: + runs-on: ${{ matrix.os }} + strategy: + fail-fast: true + matrix: + os: [macos-latest, ubuntu-latest] + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v2 + with: + node-version: 16 + - run: npm install + - run: npm test + + test_windows: + runs-on: windows-2019 + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v2 + with: + node-version: 16 + - run: npm install + - run: npm run-script test-windows diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml new file mode 100644 index 0000000..0c55e16 --- /dev/null +++ b/.github/workflows/fuzz.yml @@ -0,0 +1,22 @@ +name: Fuzz Parser + +on: + push: + paths: + - src/scanner.cc + pull_request: + paths: + - src/scanner.cc + +jobs: + test: + name: Parser fuzzing + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: vigoux/tree-sitter-fuzz-action@v1 + - run: npm install + with: + language: starlark + external-scanner: src/scanner.cc + time: 60 diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..27632c9 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,51 @@ +name: Publish + +on: + push: + branches: + - master + tags: + - "v*" + workflow_dispatch: + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + - run: npm install + - run: npm test + + publish-npm: + if: startsWith(github.ref, 'refs/tags/v') + needs: build + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - uses: actions/setup-node@v3 + with: + node-version: 16 + registry-url: https://registry.npmjs.org/ + - run: npm install + - run: npm publish + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + + publish-crates: + if: startsWith(github.ref, 'refs/tags/v') + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: actions-rs/toolchain@v1 + with: + profile: minimal + toolchain: stable + override: true + - uses: katyo/publish-crates@v2 + with: + registry-token: ${{ secrets.CARGO_REGISTRY_TOKEN }} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3862384 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +Cargo.lock +package-lock.json +/build +/node_modules +/examples/*/ +/target diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..6493913 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,22 @@ +[package] +name = "tree-sitter-starlark" +description = "Starlark grammar for tree-sitter" +version = "0.0.1" +authors = ["Amaan Qureshi "] +keywords = ["incremental", "parsing", "starlark", "bazel", "bzl"] +categories = ["parsing", "text-editors"] +repository = "https://github.com/amaanq/tree-sitter-starlark" +edition = "2021" +license = "MIT" + +build = "bindings/rust/build.rs" +include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] + +[lib] +path = "bindings/rust/lib.rs" + +[dependencies] +tree-sitter = "~0.20.3" + +[build-dependencies] +cc = "1.0" diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..63b3424 --- /dev/null +++ b/LICENSE @@ -0,0 +1,7 @@ +Copyright (c) 2023 Amaan Qureshi + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..b1829ed --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# tree-sitter-starlark + +[![Build Status](https://github.com/amaanq/tree-sitter-starlark/actions/workflows/ci.yml/badge.svg)](https://github.com/amaanq/tree-sitter-starlark/actions/workflows/ci.yml) +[![Discord](https://img.shields.io/discord/1063097320771698699?logo=discord)](https://discord.gg/w7nTvsVJhm) + +Starlark grammar for [tree-sitter](https://github.com/tree-sitter/tree-sitter) + +Adapted from the [official spec](https://github.com/bazelbuild/starlark/blob/master/spec.md) +and the [Google spec](https://github.com/google/starlark-go/blob/master/doc/spec.md) diff --git a/binding.gyp b/binding.gyp new file mode 100644 index 0000000..a060ab0 --- /dev/null +++ b/binding.gyp @@ -0,0 +1,19 @@ +{ + "targets": [ + { + "target_name": "tree_sitter_starlark_binding", + "include_dirs": [ + " + +using namespace v8; + +extern "C" TSLanguage *tree_sitter_starlark(); + +namespace { + +NAN_METHOD(New) {} + +void Init(Local exports, Local module) { + Local tpl = Nan::New(New); + tpl->SetClassName(Nan::New("Language").ToLocalChecked()); + tpl->InstanceTemplate()->SetInternalFieldCount(1); + + Local constructor = Nan::GetFunction(tpl).ToLocalChecked(); + Local instance = + constructor->NewInstance(Nan::GetCurrentContext()).ToLocalChecked(); + Nan::SetInternalFieldPointer(instance, 0, tree_sitter_starlark()); + + Nan::Set(instance, Nan::New("name").ToLocalChecked(), + Nan::New("starlark").ToLocalChecked()); + Nan::Set(module, Nan::New("exports").ToLocalChecked(), instance); +} + +NODE_MODULE(tree_sitter_starlark_binding, Init) + +} // namespace diff --git a/bindings/node/index.js b/bindings/node/index.js new file mode 100644 index 0000000..ddd8b7e --- /dev/null +++ b/bindings/node/index.js @@ -0,0 +1,19 @@ +try { + module.exports = require('../../build/Release/tree_sitter_starlark_binding'); +} catch (error1) { + if (error1.code !== 'MODULE_NOT_FOUND') { + throw error1; + } + try { + module.exports = require('../../build/Debug/tree_sitter_starlark_binding'); + } catch (error2) { + if (error2.code !== 'MODULE_NOT_FOUND') { + throw error2; + } + throw error1; + } +} + +try { + module.exports.nodeTypeInfo = require('../../src/node-types.json'); +} catch (_) {} diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs new file mode 100644 index 0000000..e9b2f8c --- /dev/null +++ b/bindings/rust/build.rs @@ -0,0 +1,38 @@ +fn main() { + let src_dir = std::path::Path::new("src"); + + let mut c_config = cc::Build::new(); + c_config.include(src_dir); + c_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable") + .flag_if_supported("-Wno-trigraphs"); + let parser_path = src_dir.join("parser.c"); + c_config.file(&parser_path); + + // If your language uses an external scanner written in C, + // then include this block of code: + + /* + let scanner_path = src_dir.join("scanner.c"); + c_config.file(&scanner_path); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); + */ + + c_config.compile("parser"); + println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); + + // If your language uses an external scanner written in C++, + // then include this block of code: + + let mut cpp_config = cc::Build::new(); + cpp_config.cpp(true); + cpp_config.include(src_dir); + cpp_config + .flag_if_supported("-Wno-unused-parameter") + .flag_if_supported("-Wno-unused-but-set-variable"); + let scanner_path = src_dir.join("scanner.cc"); + cpp_config.file(&scanner_path); + cpp_config.compile("scanner"); + println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); +} diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs new file mode 100644 index 0000000..30c7340 --- /dev/null +++ b/bindings/rust/lib.rs @@ -0,0 +1,52 @@ +//! This crate provides starlark language support for the [tree-sitter][] parsing library. +//! +//! Typically, you will use the [language][language func] function to add this language to a +//! tree-sitter [Parser][], and then use the parser to parse some code: +//! +//! ``` +//! let code = ""; +//! let mut parser = tree_sitter::Parser::new(); +//! parser.set_language(tree_sitter_starlark::language()).expect("Error loading starlark grammar"); +//! let tree = parser.parse(code, None).unwrap(); +//! ``` +//! +//! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +//! [language func]: fn.language.html +//! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html +//! [tree-sitter]: https://tree-sitter.github.io/ + +use tree_sitter::Language; + +extern "C" { + fn tree_sitter_starlark() -> Language; +} + +/// Get the tree-sitter [Language][] for this grammar. +/// +/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html +pub fn language() -> Language { + unsafe { tree_sitter_starlark() } +} + +/// The content of the [`node-types.json`][] file for this grammar. +/// +/// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types +pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); + +// Uncomment these to include any queries that this grammar contains + +pub const HIGHLIGHTS_QUERY: &str = include_str!("../../queries/highlights.scm"); +pub const INJECTIONS_QUERY: &str = include_str!("../../queries/injections.scm"); +pub const LOCALS_QUERY: &str = include_str!("../../queries/locals.scm"); +// pub const TAGS_QUERY: &'static str = include_str!("../../queries/tags.scm"); + +#[cfg(test)] +mod tests { + #[test] + fn test_can_load_grammar() { + let mut parser = tree_sitter::Parser::new(); + parser + .set_language(super::language()) + .expect("Error loading starlark language"); + } +} diff --git a/examples/01-syntax.bzl b/examples/01-syntax.bzl new file mode 100644 index 0000000..0b7cc31 --- /dev/null +++ b/examples/01-syntax.bzl @@ -0,0 +1,11 @@ +def fizz_buzz(n): + """Print Fizz Buzz numbers from 1 to n.""" + for i in range(1, n + 1): + s = "" + if i % 3 == 0: + s += "Fizz" + if i % 5 == 0: + s += "Buzz" + print(s if s else i) + +fizz_buzz(20) diff --git a/examples/02-foo.bzl b/examples/02-foo.bzl new file mode 100644 index 0000000..63c78ff --- /dev/null +++ b/examples/02-foo.bzl @@ -0,0 +1,7 @@ +# `foo.bzl` +var = [] # declare a list + +def fct(): # declare a function + var.append(5) # append a value to the list + +fct() # execute the fct function diff --git a/examples/03-bar.bzl b/examples/03-bar.bzl new file mode 100644 index 0000000..738b3b6 --- /dev/null +++ b/examples/03-bar.bzl @@ -0,0 +1,6 @@ +# `bar.bzl` +load(":foo.bzl", "var", "fct") # loads `var`, and `fct` from `./foo.bzl` + +var.append(6) # runtime error, the list stored in var is frozen + +fct() # runtime error, fct() attempts to modify a frozen list diff --git a/grammar.js b/grammar.js new file mode 100644 index 0000000..e6dc25c --- /dev/null +++ b/grammar.js @@ -0,0 +1,211 @@ +/** + * @file Starlark grammar for tree-sitter + * @author Amaan Qureshi + * @license MIT + * @see {@link https://github.com/bazelbuild/starlark|official website} + * @see {@link https://github.com/bazelbuild/starlark/blob/master/spec.md|official syntax spec} + * @see {@link https://bazel.build/rules/language|official language guide} + */ + +/* eslint-disable arrow-parens */ +/* eslint-disable camelcase */ +/* eslint-disable-next-line spaced-comment */ +/// +// @ts-check + +const python = require('tree-sitter-python/grammar'); + +const PREC = { + // this resolves a conflict between the usage of ':' in a lambda vs in a + // typed parameter. In the case of a lambda, we don't allow typed parameters. + lambda: -2, + typed_parameter: -1, + conditional: -1, + + parenthesized_expression: 1, + parenthesized_list_splat: 1, + or: 10, + and: 11, + not: 12, + compare: 13, + bitwise_or: 14, + bitwise_and: 15, + xor: 16, + shift: 17, + plus: 18, + times: 19, + unary: 20, + power: 21, + call: 22, +}; + +module.exports = grammar(python, { + name: 'starlark', + + rules: { + // Starlark has no yield statements + expression_statement: $ => choice( + $.expression, + seq(commaSep1($.expression), optional(',')), + $.assignment, + $.augmented_assignment, + ), + + // Starlark has no globals, no imports, no nonlocals, and no exceptions + // + // So: no global, import, nonlocal, and raise statements + _simple_statement: $ => choice( + $.print_statement, + $.assert_statement, + $.expression_statement, + $.return_statement, + $.delete_statement, + $.pass_statement, + $.break_statement, + $.continue_statement, + $.exec_statement, + ), + + // Starlark has no exceptions and no classes + // Google's implementation of Starlark supports while statements + // + // So: no try statements and as a result no finally clauses, + // as well as no class definitions (structs instead) + _compound_statement: $ => choice( + $.if_statement, + $.for_statement, + $.while_statement, + $.with_statement, + $.function_definition, + $.decorated_definition, + $.match_statement, + ), + + // Remove class definitions from decorated definitions + decorated_definition: $ => seq( + repeat1($.decorator), + field('definition', $.function_definition), + ), + + // Starlark has no concatenated string expressions and no generators + // Google's implementation of Starlark optionally supports sets + primary_expression: $ => choice( + $.binary_operator, + $.identifier, + alias('match', $.identifier), + $.keyword_identifier, + $.string, + $.integer, + $.float, + $.true, + $.false, + $.none, + $.unary_operator, + $.attribute, + $.subscript, + $.call, + $.list, + $.list_comprehension, + $.dictionary, + $.dictionary_comprehension, + $.set, + $.set_comprehension, + $.tuple, + $.parenthesized_expression, + $.ellipsis, + ), + + // Starlark has no `is` operator + comparison_operator: $ => prec.left(PREC.compare, seq( + $.primary_expression, + repeat1(seq( + field('operators', + choice( + '<', + '<=', + '==', + '!=', + '>=', + '>', + '<>', + 'in', + seq('not', 'in'), + )), + $.primary_expression, + )), + )), + + // Starlark has no generator expressions + call: $ => prec(PREC.call, seq( + field('function', $.primary_expression), + field('arguments', $.argument_list), + )), + + + // Starlark has no yield statements + _right_hand_side: $ => choice( + $.expression, + $.expression_list, + $.assignment, + $.augmented_assignment, + ), + + // Starlark has no yield statements + parenthesized_expression: $ => prec(PREC.parenthesized_expression, seq( + '(', + $.expression, + ')', + )), + + // Starlark has no yield statements + _collection_elements: $ => seq( + commaSep1(choice( + $.expression, $.list_splat, $.parenthesized_list_splat, + )), + optional(','), + ), + + // Starlark has no yield statements + _f_expression: $ => choice( + $.expression, + $.expression_list, + ), + + // Add struct to keyword identifiers + keyword_identifier: $ => prec(-3, alias( + choice( + 'print', + 'exec', + 'async', + 'await', + 'struct', + ), + $.identifier, + )), + }, +}); + +/** + * Creates a rule to match one or more of the rules separated by a comma + * + * @param {Rule} rule + * + * @return {SeqRule} + * + */ +function commaSep1(rule) { + return sep1(rule, ','); +} + +/** +* Creates a rule to match one or more of the rules separated by the separator +* +* @param {Rule} rule +* @param {string} separator - The separator to use. +* +* @return {SeqRule} +* +*/ +function sep1(rule, separator) { + return seq(rule, repeat(seq(separator, rule))); +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..7adc63f --- /dev/null +++ b/package.json @@ -0,0 +1,47 @@ +{ + "name": "tree-sitter-starlark", + "version": "0.0.1", + "description": "Starlark grammar for tree-sitter", + "main": "bindings/node", + "keywords": [ + "parser", + "lexer", + "starlark", + "bazel", + "bzl", + "build" + ], + "author": "Amaan Qureshi ", + "license": "MIT", + "bugs": { + "url": "https://github.com/amaanq/tree-sitter-starlark/issues" + }, + "homepage": "https://github.com/amaanq/tree-sitter-starlark#readme", + "dependencies": { + "nan": "^2.17.0", + "tree-sitter-python": "github:tree-sitter/tree-sitter-python" + }, + "devDependencies": { + "eslint": "^8.34.0", + "eslint-config-google": "^0.14.0", + "tree-sitter-cli": "^0.20.7" + }, + "repository": "https://github.com/amaanq/tree-sitter-starlark", + "scripts": { + "build": "tree-sitter generate && node-gyp build", + "test": "tree-sitter test && script/parse-examples", + "parse": "tree-sitter parse", + "test-windows": "tree-sitter test" + }, + "tree-sitter": [ + { + "scope": "source.bzl", + "file-types": [ + "bzl" + ], + "highlights": [ + "queries/highlights.scm" + ] + } + ] +} diff --git a/queries/folds.scm b/queries/folds.scm new file mode 100644 index 0000000..b4756a9 --- /dev/null +++ b/queries/folds.scm @@ -0,0 +1,22 @@ +[ + (function_definition) + + (for_statement) + (if_statement) + (while_statement) + (with_statement) + (match_statement) + + (parameters) + (argument_list) + + (parenthesized_expression) + (list_comprehension) + (dictionary_comprehension) + + (tuple) + (list) + (dictionary) + + (string) +] @fold diff --git a/queries/highlights.scm b/queries/highlights.scm new file mode 100644 index 0000000..7313d33 --- /dev/null +++ b/queries/highlights.scm @@ -0,0 +1,281 @@ +;; From tree-sitter-python licensed under MIT License +; Copyright (c) 2016 Max Brunsfeld + +; Variables +(identifier) @variable + +; Reset highlighting in f-string interpolations +(interpolation) @none + +;; Identifier naming conventions +((identifier) @type + (#lua-match? @type "^[A-Z].*[a-z]")) +((identifier) @constant + (#lua-match? @constant "^[A-Z][A-Z_0-9]*$")) + +((identifier) @constant.builtin + (#lua-match? @constant.builtin "^__[a-zA-Z0-9_]*__$")) + +((identifier) @constant.builtin + (#any-of? @constant.builtin + ;; https://docs.python.org/3/library/constants.html + "NotImplemented" + "Ellipsis" + "quit" + "exit" + "copyright" + "credits" + "license")) + +((attribute + attribute: (identifier) @field) + (#match? @field "^([A-Z])@!.*$")) + +((identifier) @type.builtin + (#any-of? @type.builtin + ;; https://docs.python.org/3/library/exceptions.html + "ArithmeticError" "BufferError" "LookupError" "AssertionError" "AttributeError" + "EOFError" "FloatingPointError" "ModuleNotFoundError" "IndexError" "KeyError" + "KeyboardInterrupt" "MemoryError" "NameError" "NotImplementedError" "OSError" "OverflowError" "RecursionError" + "ReferenceError" "RuntimeError" "StopIteration" "StopAsyncIteration" "SyntaxError" "IndentationError" "TabError" + "SystemError" "SystemExit" "TypeError" "UnboundLocalError" "UnicodeError" "UnicodeEncodeError" "UnicodeDecodeError" + "UnicodeTranslateError" "ValueError" "ZeroDivisionError" "EnvironmentError" "IOError" "WindowsError" + "BlockingIOError" "ChildProcessError" "ConnectionError" "BrokenPipeError" "ConnectionAbortedError" + "ConnectionRefusedError" "ConnectionResetError" "FileExistsError" "FileNotFoundError" "InterruptedError" + "IsADirectoryError" "NotADirectoryError" "PermissionError" "ProcessLookupError" "TimeoutError" "Warning" + "UserWarning" "DeprecationWarning" "PendingDeprecationWarning" "SyntaxWarning" "RuntimeWarning" + "FutureWarning" "UnicodeWarning" "BytesWarning" "ResourceWarning" + ;; https://docs.python.org/3/library/stdtypes.html + "bool" "int" "float" "complex" "list" "tuple" "range" "str" + "bytes" "bytearray" "memoryview" "set" "frozenset" "dict" "type")) + +((assignment + left: (identifier) @type.definition + (type (identifier) @_annotation)) + (#eq? @_annotation "TypeAlias")) + +((assignment + left: (identifier) @type.definition + right: (call + function: (identifier) @_func)) + (#any-of? @_func "TypeVar" "NewType")) + +; Function calls + +(call + function: (identifier) @function.call) + +(call + function: (attribute + attribute: (identifier) @method.call)) + +((call + function: (identifier) @constructor) + (#lua-match? @constructor "^[A-Z]")) + +((call + function: (attribute + attribute: (identifier) @constructor)) + (#lua-match? @constructor "^[A-Z]")) + +;; Decorators +((decorator "@" @attribute) + (#set! "priority" 101)) + +(decorator + (identifier) @attribute) +(decorator + (attribute + attribute: (identifier) @attribute)) +(decorator + (call (identifier) @attribute)) +(decorator + (call (attribute + attribute: (identifier) @attribute))) + +((decorator + (identifier) @attribute.builtin) + (#any-of? @attribute.builtin "classmethod" "property")) + +;; Builtin functions +((call + function: (identifier) @function.builtin) + (#any-of? @function.builtin + "abs" "all" "any" "ascii" "bin" "bool" "breakpoint" "bytearray" "bytes" "callable" "chr" "classmethod" + "compile" "complex" "delattr" "dict" "dir" "divmod" "enumerate" "eval" "exec" "fail" "filter" "float" "format" + "frozenset" "getattr" "globals" "hasattr" "hash" "help" "hex" "id" "input" "int" "isinstance" "issubclass" + "iter" "len" "list" "locals" "map" "max" "memoryview" "min" "next" "object" "oct" "open" "ord" "pow" + "print" "property" "range" "repr" "reversed" "round" "set" "setattr" "slice" "sorted" "staticmethod" "str" + "struct" "sum" "super" "tuple" "type" "vars" "zip" "__import__")) + +;; Function definitions +(function_definition + name: (identifier) @function) + +(type (identifier) @type) +(type + (subscript + (identifier) @type)) ; type subscript: Tuple[int] + +((call + function: (identifier) @_isinstance + arguments: (argument_list + (_) + (identifier) @type)) + (#eq? @_isinstance "isinstance")) + +;; Normal parameters +(parameters + (identifier) @parameter) +;; Lambda parameters +(lambda_parameters + (identifier) @parameter) +(lambda_parameters + (tuple_pattern + (identifier) @parameter)) +; Default parameters +(keyword_argument + name: (identifier) @parameter) +; Naming parameters on call-site +(default_parameter + name: (identifier) @parameter) +(typed_parameter + (identifier) @parameter) +(typed_default_parameter + (identifier) @parameter) +; Variadic parameters *args, **kwargs +(parameters + (list_splat_pattern ; *args + (identifier) @parameter)) +(parameters + (dictionary_splat_pattern ; **kwargs + (identifier) @parameter)) + + +;; Literals +(none) @constant.builtin +[(true) (false)] @boolean +((identifier) @variable.builtin + (#eq? @variable.builtin "self")) +((identifier) @variable.builtin + (#eq? @variable.builtin "cls")) + +(integer) @number +(float) @float + +(comment) @comment @spell + +((module . (comment) @preproc) + (#match? @preproc "^#!/")) + +(string) @string +[ + (escape_sequence) + "{{" + "}}" +] @string.escape + +; doc-strings +(expression_statement (string) @spell) + +; Tokens + +[ + "-" + "-=" + ":=" + "!=" + "*" + "**" + "**=" + "*=" + "/" + "//" + "//=" + "/=" + "&" + "&=" + "%" + "%=" + "^" + "^=" + "+" + "+=" + "<" + "<<" + "<<=" + "<=" + "<>" + "=" + "==" + ">" + ">=" + ">>" + ">>=" + "@" + "@=" + "|" + "|=" + "~" + "->" +] @operator + +; Keywords +[ + "and" + "in" + "not" + "or" + + "del" +] @keyword.operator + +[ + "def" + "lambda" +] @keyword.function + +[ + "assert" + "async" + "await" + "exec" + "nonlocal" + "pass" + "print" + "with" + "as" +] @keyword + +[ + "return" +] @keyword.return + +((call + function: (identifier) @include + arguments: (argument_list + (string) @conceal)) + (#eq? @include "load")) + +["if" "elif" "else" "match" "case"] @conditional + +["for" "while" "break" "continue"] @repeat + +["(" ")" "[" "]" "{" "}"] @punctuation.bracket + +(interpolation + "{" @punctuation.special + "}" @punctuation.special) + +["," "." ":" ";" (ellipsis)] @punctuation.delimiter + +;; Struct definitions +((call + function: (identifier) @_func + arguments: (argument_list + (keyword_argument + name: (identifier) @field))) + (#eq? @_func "struct")) + +;; Error +(ERROR) @error diff --git a/queries/indents.scm b/queries/indents.scm new file mode 100644 index 0000000..94cc941 --- /dev/null +++ b/queries/indents.scm @@ -0,0 +1,47 @@ +[ + (list) + (dictionary) + (set) + + (for_statement) + (if_statement) + (while_statement) + (with_statement) + + (parenthesized_expression) + (dictionary_comprehension) + (list_comprehension) + (set_comprehension) + + (tuple_pattern) + (list_pattern) + (binary_operator) + + (lambda) + (function_definition) +] @indent + +(if_statement + condition: (parenthesized_expression) @aligned_indent + (#set! "delimiter" "()") +) +((ERROR "(" . (_)) @aligned_indent + (#set! "delimiter" "()")) +((argument_list) @aligned_indent + (#set! "delimiter" "()")) +((argument_list) @aligned_indent + (#set! "delimiter" "()")) +((parameters) @aligned_indent + (#set! "delimiter" "()")) +((tuple) @aligned_indent + (#set! "delimiter" "()")) + +[ + ")" + "]" + "}" + (elif_clause) + (else_clause) +] @branch + +(string) @auto diff --git a/queries/injections.scm b/queries/injections.scm new file mode 100644 index 0000000..04d0eed --- /dev/null +++ b/queries/injections.scm @@ -0,0 +1,8 @@ +((call + function: (attribute + object: (identifier) @_re) + arguments: (argument_list (string) @regex)) + (#eq? @_re "re") + (#lua-match? @regex "^r.*")) + +(comment) @comment diff --git a/queries/locals.scm b/queries/locals.scm new file mode 100644 index 0000000..d4e163f --- /dev/null +++ b/queries/locals.scm @@ -0,0 +1,89 @@ +;;; Program structure +(module) @scope + +; Loads +((call + function: (identifier) @_fn + arguments: (argument_list + (string) @definition.import)) + (#eq? @_fn "load")) + +; Function with parameters, defines parameters +(parameters + (identifier) @definition.parameter) + +(default_parameter + (identifier) @definition.parameter) + +(typed_parameter + (identifier) @definition.parameter) + +(typed_default_parameter + (identifier) @definition.parameter) + +; *args parameter +(parameters + (list_splat_pattern + (identifier) @definition.parameter)) + +; **kwargs parameter +(parameters + (dictionary_splat_pattern + (identifier) @definition.parameter)) + +; Function defines function and scope +((function_definition + name: (identifier) @definition.function) @scope + (#set! definition.function.scope "parent")) + +;;; Loops +; not a scope! +(for_statement + left: (pattern_list + (identifier) @definition.var)) +(for_statement + left: (tuple_pattern + (identifier) @definition.var)) +(for_statement + left: (identifier) @definition.var) + +; for in list comprehension +(for_in_clause + left: (identifier) @definition.var) +(for_in_clause + left: (tuple_pattern + (identifier) @definition.var)) +(for_in_clause + left: (pattern_list + (identifier) @definition.var)) + +(dictionary_comprehension) @scope +(list_comprehension) @scope +(set_comprehension) @scope + +;;; Assignments + +(assignment + left: (identifier) @definition.var) + +(assignment + left: (pattern_list + (identifier) @definition.var)) +(assignment + left: (tuple_pattern + (identifier) @definition.var)) + +(assignment + left: (attribute + (identifier) + (identifier) @definition.field)) + +; Walrus operator x := 1 +(named_expression + (identifier) @definition.var) + +(as_pattern + alias: (as_pattern_target) @definition.var) + +;;; REFERENCES +(identifier) @reference diff --git a/script/known_failures.txt b/script/known_failures.txt new file mode 100644 index 0000000..e69de29 diff --git a/script/parse-examples b/script/parse-examples new file mode 100755 index 0000000..fb7a43f --- /dev/null +++ b/script/parse-examples @@ -0,0 +1,44 @@ +#!/usr/bin/env bash + +set -eu + +cd "$(dirname "$0")/.." + +function clone_repo { + owner=$1 + name=$2 + sha=$3 + + path=examples/$name + if [ ! -d "$path" ]; then + echo "Cloning $owner/$name" + git clone "https://github.com/$owner/$name" "$path" + fi + + pushd "$path" >/dev/null + actual_sha=$(git rev-parse HEAD) + if [ "$actual_sha" != "$sha" ]; then + echo "Updating $owner/$name to $sha" + git fetch + git reset --hard "$sha" + fi + popd >/dev/null +} + +clone_repo bazelbuild starlark 32993fa0d1f1e4f3af167d249be95885ba5014ad + +known_failures="$(cat script/known_failures.txt)" + +# shellcheck disable=2046 +tree-sitter parse -q \ + 'examples/**/BUILD' 'examples/**/WORKSPACE' 'examples/**/*.bzl' \ + $(for failure in $known_failures; do echo "!${failure}"; done) + +example_count=$(find examples -name 'BUILD' -o -name 'WORKSPACE' -o -name '*.bzl' | wc -l) +failure_count=$(wc -w <<<"$known_failures") +success_count=$((example_count - failure_count)) +success_percent=$(bc -l <<<"100*${success_count}/${example_count}") + +printf \ + "Successfully parsed %d of %d example files (%.1f%%)\n" \ + "$success_count" "$example_count" "$success_percent" diff --git a/src/grammar.json b/src/grammar.json new file mode 100644 index 0000000..c85f452 --- /dev/null +++ b/src/grammar.json @@ -0,0 +1,5272 @@ +{ + "name": "starlark", + "word": "identifier", + "rules": { + "module": { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + "_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_statements" + }, + { + "type": "SYMBOL", + "name": "_compound_statement" + } + ] + }, + "_simple_statements": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_simple_statement" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "SYMBOL", + "name": "_simple_statement" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": ";" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, + "_simple_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "print_statement" + }, + { + "type": "SYMBOL", + "name": "assert_statement" + }, + { + "type": "SYMBOL", + "name": "expression_statement" + }, + { + "type": "SYMBOL", + "name": "return_statement" + }, + { + "type": "SYMBOL", + "name": "delete_statement" + }, + { + "type": "SYMBOL", + "name": "pass_statement" + }, + { + "type": "SYMBOL", + "name": "break_statement" + }, + { + "type": "SYMBOL", + "name": "continue_statement" + }, + { + "type": "SYMBOL", + "name": "exec_statement" + } + ] + }, + "import_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "import" + }, + { + "type": "SYMBOL", + "name": "_import_list" + } + ] + }, + "import_prefix": { + "type": "REPEAT1", + "content": { + "type": "STRING", + "value": "." + } + }, + "relative_import": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "import_prefix" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "dotted_name" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "future_import_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "from" + }, + { + "type": "STRING", + "value": "__future__" + }, + { + "type": "STRING", + "value": "import" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_import_list" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_import_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + ] + }, + "import_from_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "from" + }, + { + "type": "FIELD", + "name": "module_name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "relative_import" + }, + { + "type": "SYMBOL", + "name": "dotted_name" + } + ] + } + }, + { + "type": "STRING", + "value": "import" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "wildcard_import" + }, + { + "type": "SYMBOL", + "name": "_import_list" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "_import_list" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + } + ] + }, + "_import_list": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "dotted_name" + }, + { + "type": "SYMBOL", + "name": "aliased_import" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "dotted_name" + }, + { + "type": "SYMBOL", + "name": "aliased_import" + } + ] + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "aliased_import": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "dotted_name" + } + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + }, + "wildcard_import": { + "type": "STRING", + "value": "*" + }, + "print_statement": { + "type": "CHOICE", + "members": [ + { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "print" + }, + { + "type": "SYMBOL", + "name": "chevron" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + { + "type": "PREC", + "value": -10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "print" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + } + } + ] + }, + "chevron": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ">>" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "assert_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "assert" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + } + ] + }, + "expression_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "assignment" + }, + { + "type": "SYMBOL", + "name": "augmented_assignment" + } + ] + }, + "named_expression": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "_named_expresssion_lhs" + } + }, + { + "type": "STRING", + "value": ":=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "_named_expresssion_lhs": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "match" + }, + "named": true, + "value": "identifier" + } + ] + }, + "return_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "return" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "delete_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "del" + }, + { + "type": "SYMBOL", + "name": "_expressions" + } + ] + }, + "_expressions": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "expression_list" + } + ] + }, + "raise_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "raise" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "from" + }, + { + "type": "FIELD", + "name": "cause", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "pass_statement": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "STRING", + "value": "pass" + } + }, + "break_statement": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "STRING", + "value": "break" + } + }, + "continue_statement": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "STRING", + "value": "continue" + } + }, + "_compound_statement": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "if_statement" + }, + { + "type": "SYMBOL", + "name": "for_statement" + }, + { + "type": "SYMBOL", + "name": "while_statement" + }, + { + "type": "SYMBOL", + "name": "with_statement" + }, + { + "type": "SYMBOL", + "name": "function_definition" + }, + { + "type": "SYMBOL", + "name": "decorated_definition" + }, + { + "type": "SYMBOL", + "name": "match_statement" + } + ] + }, + "if_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "elif_clause" + } + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "elif_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "elif" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, + "else_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "else" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, + "match_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "match" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "subject", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "subject", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "case_clause" + } + } + } + ] + }, + "case_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "case" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "list_splat_pattern" + } + ] + }, + "named": true, + "value": "case_pattern" + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "pattern", + "content": { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "list_splat_pattern" + } + ] + }, + "named": true, + "value": "case_pattern" + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "guard", + "content": { + "type": "SYMBOL", + "name": "if_clause" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "consequence", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, + "for_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_left_hand_side" + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_expressions" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + }, + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "else_clause" + }, + { + "type": "BLANK" + } + ] + } + } + ] + }, + "while_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "while" + }, + { + "type": "FIELD", + "name": "condition", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "FIELD", + "name": "alternative", + "content": { + "type": "SYMBOL", + "name": "else_clause" + } + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "try_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "try" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "except_clause" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "else_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "finally_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "except_group_clause" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "else_clause" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "finally_clause" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SYMBOL", + "name": "finally_clause" + } + ] + } + ] + }, + "except_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "except" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "STRING", + "value": "," + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_suite" + } + ] + }, + "except_group_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "except*" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "as" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_suite" + } + ] + }, + "finally_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "finally" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "SYMBOL", + "name": "_suite" + } + ] + }, + "with_statement": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "with" + }, + { + "type": "SYMBOL", + "name": "with_clause" + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, + "with_clause": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "with_item" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "with_item" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "with_item" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "with_item" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + ] + }, + "with_item": { + "type": "PREC_DYNAMIC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "function_definition": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "def" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "SYMBOL", + "name": "parameters" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "->" + }, + { + "type": "FIELD", + "name": "return_type", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, + "parameters": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_parameters" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "lambda_parameters": { + "type": "SYMBOL", + "name": "_parameters" + }, + "list_splat": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "dictionary_splat": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "**" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "global_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "global" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + } + ] + }, + "nonlocal_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "nonlocal" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + } + ] + }, + "exec_statement": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "exec" + }, + { + "type": "FIELD", + "name": "code", + "content": { + "type": "SYMBOL", + "name": "string" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "in" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "class_definition": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "class" + }, + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "FIELD", + "name": "superclasses", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "argument_list" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_suite" + } + } + ] + }, + "parenthesized_list_splat": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_list_splat" + }, + "named": true, + "value": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "list_splat" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "argument_list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "list_splat" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_list_splat" + }, + "named": true, + "value": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "keyword_argument" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "list_splat" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "parenthesized_list_splat" + }, + "named": true, + "value": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "keyword_argument" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "decorated_definition": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "decorator" + } + }, + { + "type": "FIELD", + "name": "definition", + "content": { + "type": "SYMBOL", + "name": "function_definition" + } + } + ] + }, + "decorator": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "@" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "_newline" + } + ] + }, + "_suite": { + "type": "CHOICE", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_simple_statements" + }, + "named": true, + "value": "block" + }, + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_indent" + }, + { + "type": "SYMBOL", + "name": "block" + } + ] + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_newline" + }, + "named": true, + "value": "block" + } + ] + }, + "block": { + "type": "SEQ", + "members": [ + { + "type": "REPEAT", + "content": { + "type": "SYMBOL", + "name": "_statement" + } + }, + { + "type": "SYMBOL", + "name": "_dedent" + } + ] + }, + "expression_list": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + } + }, + "dotted_name": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "." + }, + { + "type": "SYMBOL", + "name": "identifier" + } + ] + } + } + ] + }, + "_parameters": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "parameter" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "parameter" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "_patterns": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "pattern" + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "parameter": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "typed_parameter" + }, + { + "type": "SYMBOL", + "name": "default_parameter" + }, + { + "type": "SYMBOL", + "name": "typed_default_parameter" + }, + { + "type": "SYMBOL", + "name": "list_splat_pattern" + }, + { + "type": "SYMBOL", + "name": "tuple_pattern" + }, + { + "type": "SYMBOL", + "name": "keyword_separator" + }, + { + "type": "SYMBOL", + "name": "positional_separator" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat_pattern" + } + ] + }, + "pattern": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "match" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "keyword_identifier" + }, + { + "type": "SYMBOL", + "name": "subscript" + }, + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "SYMBOL", + "name": "list_splat_pattern" + }, + { + "type": "SYMBOL", + "name": "tuple_pattern" + }, + { + "type": "SYMBOL", + "name": "list_pattern" + } + ] + }, + "tuple_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_patterns" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "list_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_patterns" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "default_parameter": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "typed_default_parameter": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "list_splat_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "*" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "keyword_identifier" + }, + { + "type": "SYMBOL", + "name": "subscript" + }, + { + "type": "SYMBOL", + "name": "attribute" + } + ] + } + ] + }, + "dictionary_splat_pattern": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "**" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "keyword_identifier" + }, + { + "type": "SYMBOL", + "name": "subscript" + }, + { + "type": "SYMBOL", + "name": "attribute" + } + ] + } + ] + }, + "as_pattern": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "as" + }, + { + "type": "FIELD", + "name": "alias", + "content": { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "expression" + }, + "named": true, + "value": "as_pattern_target" + } + } + ] + } + }, + "_expression_within_for_in_clause": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "lambda_within_for_in_clause" + }, + "named": true, + "value": "lambda" + } + ] + }, + "expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "comparison_operator" + }, + { + "type": "SYMBOL", + "name": "not_operator" + }, + { + "type": "SYMBOL", + "name": "boolean_operator" + }, + { + "type": "SYMBOL", + "name": "await" + }, + { + "type": "SYMBOL", + "name": "lambda" + }, + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "SYMBOL", + "name": "conditional_expression" + }, + { + "type": "SYMBOL", + "name": "named_expression" + }, + { + "type": "SYMBOL", + "name": "as_pattern" + } + ] + }, + "primary_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "binary_operator" + }, + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "match" + }, + "named": true, + "value": "identifier" + }, + { + "type": "SYMBOL", + "name": "keyword_identifier" + }, + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "SYMBOL", + "name": "integer" + }, + { + "type": "SYMBOL", + "name": "float" + }, + { + "type": "SYMBOL", + "name": "true" + }, + { + "type": "SYMBOL", + "name": "false" + }, + { + "type": "SYMBOL", + "name": "none" + }, + { + "type": "SYMBOL", + "name": "unary_operator" + }, + { + "type": "SYMBOL", + "name": "attribute" + }, + { + "type": "SYMBOL", + "name": "subscript" + }, + { + "type": "SYMBOL", + "name": "call" + }, + { + "type": "SYMBOL", + "name": "list" + }, + { + "type": "SYMBOL", + "name": "list_comprehension" + }, + { + "type": "SYMBOL", + "name": "dictionary" + }, + { + "type": "SYMBOL", + "name": "dictionary_comprehension" + }, + { + "type": "SYMBOL", + "name": "set" + }, + { + "type": "SYMBOL", + "name": "set_comprehension" + }, + { + "type": "SYMBOL", + "name": "tuple" + }, + { + "type": "SYMBOL", + "name": "parenthesized_expression" + }, + { + "type": "SYMBOL", + "name": "ellipsis" + } + ] + }, + "not_operator": { + "type": "PREC", + "value": 12, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "not" + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "boolean_operator": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 11, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "and" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 10, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "or" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + } + ] + }, + "binary_operator": { + "type": "CHOICE", + "members": [ + { + "type": "PREC_LEFT", + "value": 18, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "+" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 18, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "-" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "*" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "@" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "/" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "%" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 19, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "//" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_RIGHT", + "value": 21, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "**" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 14, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "|" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 15, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "&" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 16, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "^" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": "<<" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + { + "type": "PREC_LEFT", + "value": 17, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "STRING", + "value": ">>" + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + } + ] + }, + "unary_operator": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+" + }, + { + "type": "STRING", + "value": "-" + }, + { + "type": "STRING", + "value": "~" + } + ] + } + }, + { + "type": "FIELD", + "name": "argument", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + } + ] + } + }, + "comparison_operator": { + "type": "PREC_LEFT", + "value": 13, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "primary_expression" + }, + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "operators", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "<" + }, + { + "type": "STRING", + "value": "<=" + }, + { + "type": "STRING", + "value": "==" + }, + { + "type": "STRING", + "value": "!=" + }, + { + "type": "STRING", + "value": ">=" + }, + { + "type": "STRING", + "value": ">" + }, + { + "type": "STRING", + "value": "<>" + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "not" + }, + { + "type": "STRING", + "value": "in" + } + ] + } + ] + } + }, + { + "type": "SYMBOL", + "name": "primary_expression" + } + ] + } + } + ] + } + }, + "lambda": { + "type": "PREC", + "value": -2, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "lambda" + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lambda_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + } + }, + "lambda_within_for_in_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "lambda" + }, + { + "type": "FIELD", + "name": "parameters", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "lambda_parameters" + }, + { + "type": "BLANK" + } + ] + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "_expression_within_for_in_clause" + } + } + ] + }, + "assignment": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_left_hand_side" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_right_hand_side" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type" + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_right_hand_side" + } + } + ] + } + ] + } + ] + }, + "augmented_assignment": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_left_hand_side" + } + }, + { + "type": "FIELD", + "name": "operator", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "+=" + }, + { + "type": "STRING", + "value": "-=" + }, + { + "type": "STRING", + "value": "*=" + }, + { + "type": "STRING", + "value": "/=" + }, + { + "type": "STRING", + "value": "@=" + }, + { + "type": "STRING", + "value": "//=" + }, + { + "type": "STRING", + "value": "%=" + }, + { + "type": "STRING", + "value": "**=" + }, + { + "type": "STRING", + "value": ">>=" + }, + { + "type": "STRING", + "value": "<<=" + }, + { + "type": "STRING", + "value": "&=" + }, + { + "type": "STRING", + "value": "^=" + }, + { + "type": "STRING", + "value": "|=" + } + ] + } + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "_right_hand_side" + } + } + ] + }, + "_left_hand_side": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "SYMBOL", + "name": "pattern_list" + } + ] + }, + "pattern_list": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "pattern" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "pattern" + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + }, + "_right_hand_side": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "expression_list" + }, + { + "type": "SYMBOL", + "name": "assignment" + }, + { + "type": "SYMBOL", + "name": "augmented_assignment" + } + ] + }, + "yield": { + "type": "PREC_RIGHT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "yield" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "from" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_expressions" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + }, + "attribute": { + "type": "PREC", + "value": 22, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "object", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "FIELD", + "name": "attribute", + "content": { + "type": "SYMBOL", + "name": "identifier" + } + } + ] + } + }, + "subscript": { + "type": "PREC", + "value": 22, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "STRING", + "value": "[" + }, + { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "subscript", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "slice" + } + ] + } + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "FIELD", + "name": "subscript", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "slice" + } + ] + } + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + } + }, + "slice": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "ellipsis": { + "type": "STRING", + "value": "..." + }, + "call": { + "type": "PREC", + "value": 22, + "content": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "function", + "content": { + "type": "SYMBOL", + "name": "primary_expression" + } + }, + { + "type": "FIELD", + "name": "arguments", + "content": { + "type": "SYMBOL", + "name": "argument_list" + } + } + ] + } + }, + "typed_parameter": { + "type": "PREC", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "list_splat_pattern" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat_pattern" + } + ] + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "type", + "content": { + "type": "SYMBOL", + "name": "type" + } + } + ] + } + }, + "type": { + "type": "SYMBOL", + "name": "expression" + }, + "keyword_argument": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "name", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "identifier" + }, + { + "type": "SYMBOL", + "name": "keyword_identifier" + }, + { + "type": "ALIAS", + "content": { + "type": "STRING", + "value": "match" + }, + "named": true, + "value": "identifier" + } + ] + } + }, + { + "type": "STRING", + "value": "=" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "list": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_collection_elements" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "set": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_collection_elements" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "tuple": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_collection_elements" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "dictionary": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "pair" + }, + { + "type": "SYMBOL", + "name": "dictionary_splat" + } + ] + } + ] + } + } + ] + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "pair": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "key", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "STRING", + "value": ":" + }, + { + "type": "FIELD", + "name": "value", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, + "list_comprehension": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "[" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "SYMBOL", + "name": "_comprehension_clauses" + }, + { + "type": "STRING", + "value": "]" + } + ] + }, + "dictionary_comprehension": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "pair" + } + }, + { + "type": "SYMBOL", + "name": "_comprehension_clauses" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "set_comprehension": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "SYMBOL", + "name": "_comprehension_clauses" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "generator_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "FIELD", + "name": "body", + "content": { + "type": "SYMBOL", + "name": "expression" + } + }, + { + "type": "SYMBOL", + "name": "_comprehension_clauses" + }, + { + "type": "STRING", + "value": ")" + } + ] + }, + "_comprehension_clauses": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "for_in_clause" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "for_in_clause" + }, + { + "type": "SYMBOL", + "name": "if_clause" + } + ] + } + } + ] + }, + "parenthesized_expression": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "(" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": ")" + } + ] + } + }, + "_collection_elements": { + "type": "SEQ", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "list_splat" + }, + { + "type": "SYMBOL", + "name": "parenthesized_list_splat" + } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "list_splat" + }, + { + "type": "SYMBOL", + "name": "parenthesized_list_splat" + } + ] + } + ] + } + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + }, + "for_in_clause": { + "type": "PREC_LEFT", + "value": 0, + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "async" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "for" + }, + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "_left_hand_side" + } + }, + { + "type": "STRING", + "value": "in" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_expression_within_for_in_clause" + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "SYMBOL", + "name": "_expression_within_for_in_clause" + } + ] + } + } + ] + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "if_clause": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "if" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + }, + "conditional_expression": { + "type": "PREC_RIGHT", + "value": -1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "if" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "else" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + "concatenated_string": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "string" + }, + { + "type": "REPEAT1", + "content": { + "type": "SYMBOL", + "name": "string" + } + } + ] + }, + "string": { + "type": "SEQ", + "members": [ + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_string_start" + }, + "named": false, + "value": "\"" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "interpolation" + }, + { + "type": "SYMBOL", + "name": "_escape_interpolation" + }, + { + "type": "SYMBOL", + "name": "escape_sequence" + }, + { + "type": "SYMBOL", + "name": "_not_escape_sequence" + }, + { + "type": "SYMBOL", + "name": "_string_content" + } + ] + } + }, + { + "type": "ALIAS", + "content": { + "type": "SYMBOL", + "name": "_string_end" + }, + "named": false, + "value": "\"" + } + ] + }, + "interpolation": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "_f_expression" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "=" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_conversion" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "format_specifier" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "_f_expression": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "SYMBOL", + "name": "expression_list" + } + ] + }, + "_escape_interpolation": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "{{" + }, + { + "type": "STRING", + "value": "}}" + } + ] + }, + "escape_sequence": { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "\\" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "u[a-fA-F\\d]{4}" + }, + { + "type": "PATTERN", + "value": "U[a-fA-F\\d]{8}" + }, + { + "type": "PATTERN", + "value": "x[a-fA-F\\d]{2}" + }, + { + "type": "PATTERN", + "value": "\\d{3}" + }, + { + "type": "PATTERN", + "value": "\\r?\\n" + }, + { + "type": "PATTERN", + "value": "['\"abfrntv\\\\]" + } + ] + } + ] + } + } + }, + "_not_escape_sequence": { + "type": "STRING", + "value": "\\" + }, + "format_specifier": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": ":" + }, + { + "type": "REPEAT", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "TOKEN", + "content": { + "type": "PREC", + "value": 1, + "content": { + "type": "PATTERN", + "value": "[^{}\\n]+" + } + } + }, + { + "type": "SYMBOL", + "name": "format_expression" + } + ] + } + } + ] + }, + "format_expression": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "{" + }, + { + "type": "SYMBOL", + "name": "expression" + }, + { + "type": "STRING", + "value": "}" + } + ] + }, + "type_conversion": { + "type": "PATTERN", + "value": "![a-z]" + }, + "integer": { + "type": "TOKEN", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0x" + }, + { + "type": "STRING", + "value": "0X" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "_?[A-Fa-f0-9]+" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[Ll]" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0o" + }, + { + "type": "STRING", + "value": "0O" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "_?[0-7]+" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[Ll]" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "0b" + }, + { + "type": "STRING", + "value": "0B" + } + ] + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "_?[0-1]+" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[Ll]" + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[Ll]" + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[jJ]" + }, + { + "type": "BLANK" + } + ] + } + ] + } + ] + } + ] + } + }, + "float": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" + } + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eE][\\+-]?" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" + } + }, + { + "type": "BLANK" + } + ] + }, + { + "type": "STRING", + "value": "." + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" + } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eE][\\+-]?" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" + } + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + }, + { + "type": "SEQ", + "members": [ + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" + } + }, + { + "type": "SEQ", + "members": [ + { + "type": "PATTERN", + "value": "[eE][\\+-]?" + }, + { + "type": "REPEAT1", + "content": { + "type": "PATTERN", + "value": "[0-9]+_?" + } + } + ] + } + ] + } + ] + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "[Ll]" + }, + { + "type": "PATTERN", + "value": "[jJ]" + } + ] + }, + { + "type": "BLANK" + } + ] + } + ] + } + }, + "identifier": { + "type": "PATTERN", + "value": "[_\\p{XID_Start}][_\\p{XID_Continue}]*" + }, + "keyword_identifier": { + "type": "PREC", + "value": -3, + "content": { + "type": "ALIAS", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "print" + }, + { + "type": "STRING", + "value": "exec" + }, + { + "type": "STRING", + "value": "async" + }, + { + "type": "STRING", + "value": "await" + }, + { + "type": "STRING", + "value": "struct" + } + ] + }, + "named": true, + "value": "identifier" + } + }, + "true": { + "type": "STRING", + "value": "True" + }, + "false": { + "type": "STRING", + "value": "False" + }, + "none": { + "type": "STRING", + "value": "None" + }, + "await": { + "type": "PREC", + "value": 20, + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "await" + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + }, + "comment": { + "type": "TOKEN", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "PATTERN", + "value": ".*" + } + ] + } + }, + "positional_separator": { + "type": "STRING", + "value": "/" + }, + "keyword_separator": { + "type": "STRING", + "value": "*" + } + }, + "extras": [ + { + "type": "SYMBOL", + "name": "comment" + }, + { + "type": "PATTERN", + "value": "[\\s\\f\\uFEFF\\u2060\\u200B]|\\\\\\r?\\n" + } + ], + "conflicts": [ + [ + "primary_expression", + "pattern" + ], + [ + "primary_expression", + "list_splat_pattern" + ], + [ + "tuple", + "tuple_pattern" + ], + [ + "list", + "list_pattern" + ], + [ + "with_item", + "_collection_elements" + ], + [ + "named_expression", + "as_pattern" + ], + [ + "match_statement", + "primary_expression" + ] + ], + "precedences": [], + "externals": [ + { + "type": "SYMBOL", + "name": "_newline" + }, + { + "type": "SYMBOL", + "name": "_indent" + }, + { + "type": "SYMBOL", + "name": "_dedent" + }, + { + "type": "SYMBOL", + "name": "_string_start" + }, + { + "type": "SYMBOL", + "name": "_string_content" + }, + { + "type": "SYMBOL", + "name": "_string_end" + }, + { + "type": "SYMBOL", + "name": "comment" + }, + { + "type": "STRING", + "value": "]" + }, + { + "type": "STRING", + "value": ")" + }, + { + "type": "STRING", + "value": "}" + } + ], + "inline": [ + "_simple_statement", + "_compound_statement", + "_suite", + "_expressions", + "_left_hand_side", + "keyword_identifier" + ], + "supertypes": [ + "_simple_statement", + "_compound_statement", + "expression", + "primary_expression", + "pattern", + "parameter" + ] +} + diff --git a/src/node-types.json b/src/node-types.json new file mode 100644 index 0000000..7c212f2 --- /dev/null +++ b/src/node-types.json @@ -0,0 +1,2694 @@ +[ + { + "type": "_compound_statement", + "named": true, + "subtypes": [ + { + "type": "decorated_definition", + "named": true + }, + { + "type": "for_statement", + "named": true + }, + { + "type": "function_definition", + "named": true + }, + { + "type": "if_statement", + "named": true + }, + { + "type": "match_statement", + "named": true + }, + { + "type": "while_statement", + "named": true + }, + { + "type": "with_statement", + "named": true + } + ] + }, + { + "type": "_simple_statement", + "named": true, + "subtypes": [ + { + "type": "assert_statement", + "named": true + }, + { + "type": "break_statement", + "named": true + }, + { + "type": "continue_statement", + "named": true + }, + { + "type": "delete_statement", + "named": true + }, + { + "type": "exec_statement", + "named": true + }, + { + "type": "expression_statement", + "named": true + }, + { + "type": "pass_statement", + "named": true + }, + { + "type": "print_statement", + "named": true + }, + { + "type": "return_statement", + "named": true + } + ] + }, + { + "type": "expression", + "named": true, + "subtypes": [ + { + "type": "as_pattern", + "named": true + }, + { + "type": "await", + "named": true + }, + { + "type": "boolean_operator", + "named": true + }, + { + "type": "comparison_operator", + "named": true + }, + { + "type": "conditional_expression", + "named": true + }, + { + "type": "lambda", + "named": true + }, + { + "type": "named_expression", + "named": true + }, + { + "type": "not_operator", + "named": true + }, + { + "type": "primary_expression", + "named": true + } + ] + }, + { + "type": "parameter", + "named": true, + "subtypes": [ + { + "type": "default_parameter", + "named": true + }, + { + "type": "dictionary_splat_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "keyword_separator", + "named": true + }, + { + "type": "list_splat_pattern", + "named": true + }, + { + "type": "positional_separator", + "named": true + }, + { + "type": "tuple_pattern", + "named": true + }, + { + "type": "typed_default_parameter", + "named": true + }, + { + "type": "typed_parameter", + "named": true + } + ] + }, + { + "type": "pattern", + "named": true, + "subtypes": [ + { + "type": "attribute", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "list_pattern", + "named": true + }, + { + "type": "list_splat_pattern", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "tuple_pattern", + "named": true + } + ] + }, + { + "type": "primary_expression", + "named": true, + "subtypes": [ + { + "type": "attribute", + "named": true + }, + { + "type": "binary_operator", + "named": true + }, + { + "type": "call", + "named": true + }, + { + "type": "dictionary", + "named": true + }, + { + "type": "dictionary_comprehension", + "named": true + }, + { + "type": "ellipsis", + "named": true + }, + { + "type": "false", + "named": true + }, + { + "type": "float", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "integer", + "named": true + }, + { + "type": "list", + "named": true + }, + { + "type": "list_comprehension", + "named": true + }, + { + "type": "none", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + }, + { + "type": "set", + "named": true + }, + { + "type": "set_comprehension", + "named": true + }, + { + "type": "string", + "named": true + }, + { + "type": "subscript", + "named": true + }, + { + "type": "true", + "named": true + }, + { + "type": "tuple", + "named": true + }, + { + "type": "unary_operator", + "named": true + } + ] + }, + { + "type": "aliased_import", + "named": true, + "fields": { + "alias": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "dotted_name", + "named": true + } + ] + } + } + }, + { + "type": "argument_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "dictionary_splat", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "keyword_argument", + "named": true + }, + { + "type": "list_splat", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + } + ] + } + }, + { + "type": "as_pattern", + "named": true, + "fields": { + "alias": { + "multiple": false, + "required": true, + "types": [ + { + "type": "as_pattern_target", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "assert_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "assignment", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "pattern", + "named": true + }, + { + "type": "pattern_list", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": false, + "types": [ + { + "type": "assignment", + "named": true + }, + { + "type": "augmented_assignment", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "expression_list", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + } + } + }, + { + "type": "attribute", + "named": true, + "fields": { + "attribute": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "object": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + } + } + }, + { + "type": "augmented_assignment", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "pattern", + "named": true + }, + { + "type": "pattern_list", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "%=", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "**=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "//=", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "@=", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "|=", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "assignment", + "named": true + }, + { + "type": "augmented_assignment", + "named": true + }, + { + "type": "expression", + "named": true + }, + { + "type": "expression_list", + "named": true + } + ] + } + } + }, + { + "type": "await", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "binary_operator", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "%", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "//", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "|", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + } + } + }, + { + "type": "block", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_compound_statement", + "named": true + }, + { + "type": "_simple_statement", + "named": true + } + ] + } + }, + { + "type": "boolean_operator", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "and", + "named": false + }, + { + "type": "or", + "named": false + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "break_statement", + "named": true, + "fields": {} + }, + { + "type": "call", + "named": true, + "fields": { + "arguments": { + "multiple": false, + "required": true, + "types": [ + { + "type": "argument_list", + "named": true + } + ] + }, + "function": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + } + } + }, + { + "type": "case_clause", + "named": true, + "fields": { + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "guard": { + "multiple": false, + "required": false, + "types": [ + { + "type": "if_clause", + "named": true + } + ] + }, + "pattern": { + "multiple": true, + "required": true, + "types": [ + { + "type": "case_pattern", + "named": true + } + ] + } + } + }, + { + "type": "case_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "subscript", + "named": true + } + ] + } + }, + { + "type": "chevron", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "comparison_operator", + "named": true, + "fields": { + "operators": { + "multiple": true, + "required": true, + "types": [ + { + "type": "!=", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<>", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "not", + "named": false + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + } + }, + { + "type": "conditional_expression", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "continue_statement", + "named": true, + "fields": {} + }, + { + "type": "decorated_definition", + "named": true, + "fields": { + "definition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "function_definition", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "decorator", + "named": true + } + ] + } + }, + { + "type": "decorator", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + } + }, + { + "type": "default_parameter", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "delete_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "expression_list", + "named": true + } + ] + } + }, + { + "type": "dictionary", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "dictionary_splat", + "named": true + }, + { + "type": "pair", + "named": true + } + ] + } + }, + { + "type": "dictionary_comprehension", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "pair", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "for_in_clause", + "named": true + }, + { + "type": "if_clause", + "named": true + } + ] + } + }, + { + "type": "dictionary_splat", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "dictionary_splat_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "subscript", + "named": true + } + ] + } + }, + { + "type": "dotted_name", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + } + }, + { + "type": "elif_clause", + "named": true, + "fields": { + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + } + }, + { + "type": "else_clause", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + } + }, + { + "type": "except_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "except_group_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "block", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "exec_statement", + "named": true, + "fields": { + "code": { + "multiple": false, + "required": true, + "types": [ + { + "type": "string", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "expression_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "expression_statement", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "assignment", + "named": true + }, + { + "type": "augmented_assignment", + "named": true + }, + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "finally_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + }, + { + "type": "for_in_clause", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "pattern", + "named": true + }, + { + "type": "pattern_list", + "named": true + } + ] + }, + "right": { + "multiple": true, + "required": true, + "types": [ + { + "type": ",", + "named": false + }, + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "for_statement", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "else_clause", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "pattern", + "named": true + }, + { + "type": "pattern_list", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "expression_list", + "named": true + } + ] + } + } + }, + { + "type": "format_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "format_specifier", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "format_expression", + "named": true + } + ] + } + }, + { + "type": "function_definition", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": true, + "types": [ + { + "type": "parameters", + "named": true + } + ] + }, + "return_type": { + "multiple": false, + "required": false, + "types": [ + { + "type": "type", + "named": true + } + ] + } + } + }, + { + "type": "if_clause", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "if_statement", + "named": true, + "fields": { + "alternative": { + "multiple": true, + "required": false, + "types": [ + { + "type": "elif_clause", + "named": true + }, + { + "type": "else_clause", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "consequence": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + } + }, + { + "type": "import_prefix", + "named": true, + "fields": {} + }, + { + "type": "interpolation", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "expression_list", + "named": true + }, + { + "type": "format_specifier", + "named": true + }, + { + "type": "type_conversion", + "named": true + } + ] + } + }, + { + "type": "keyword_argument", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "keyword_separator", + "named": true, + "fields": {} + }, + { + "type": "lambda", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "parameters": { + "multiple": false, + "required": false, + "types": [ + { + "type": "lambda_parameters", + "named": true + } + ] + } + } + }, + { + "type": "lambda_parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "parameter", + "named": true + } + ] + } + }, + { + "type": "list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "list_splat", + "named": true + }, + { + "type": "parenthesized_list_splat", + "named": true + } + ] + } + }, + { + "type": "list_comprehension", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "for_in_clause", + "named": true + }, + { + "type": "if_clause", + "named": true + } + ] + } + }, + { + "type": "list_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "pattern", + "named": true + } + ] + } + }, + { + "type": "list_splat", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "list_splat_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "attribute", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "subscript", + "named": true + } + ] + } + }, + { + "type": "match_statement", + "named": true, + "fields": { + "alternative": { + "multiple": true, + "required": false, + "types": [ + { + "type": "case_clause", + "named": true + } + ] + }, + "subject": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "module", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "_compound_statement", + "named": true + }, + { + "type": "_simple_statement", + "named": true + } + ] + } + }, + { + "type": "named_expression", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "not_operator", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "pair", + "named": true, + "fields": { + "key": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "parameters", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "parameter", + "named": true + } + ] + } + }, + { + "type": "parenthesized_expression", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "list_splat", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + } + ] + } + }, + { + "type": "parenthesized_list_splat", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "list_splat", + "named": true + }, + { + "type": "parenthesized_expression", + "named": true + } + ] + } + }, + { + "type": "pass_statement", + "named": true, + "fields": {} + }, + { + "type": "pattern_list", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "pattern", + "named": true + } + ] + } + }, + { + "type": "positional_separator", + "named": true, + "fields": {} + }, + { + "type": "print_statement", + "named": true, + "fields": { + "argument": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "chevron", + "named": true + } + ] + } + }, + { + "type": "relative_import", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "dotted_name", + "named": true + }, + { + "type": "import_prefix", + "named": true + } + ] + } + }, + { + "type": "return_statement", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "expression_list", + "named": true + } + ] + } + }, + { + "type": "set", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "list_splat", + "named": true + }, + { + "type": "parenthesized_list_splat", + "named": true + } + ] + } + }, + { + "type": "set_comprehension", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "for_in_clause", + "named": true + }, + { + "type": "if_clause", + "named": true + } + ] + } + }, + { + "type": "slice", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "string", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "escape_sequence", + "named": true + }, + { + "type": "interpolation", + "named": true + } + ] + } + }, + { + "type": "subscript", + "named": true, + "fields": { + "subscript": { + "multiple": true, + "required": true, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "slice", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + } + } + }, + { + "type": "tuple", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "expression", + "named": true + }, + { + "type": "list_splat", + "named": true + }, + { + "type": "parenthesized_list_splat", + "named": true + } + ] + } + }, + { + "type": "tuple_pattern", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": false, + "types": [ + { + "type": "pattern", + "named": true + } + ] + } + }, + { + "type": "type", + "named": true, + "fields": {}, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + }, + { + "type": "typed_default_parameter", + "named": true, + "fields": { + "name": { + "multiple": false, + "required": true, + "types": [ + { + "type": "identifier", + "named": true + } + ] + }, + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + }, + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "typed_parameter", + "named": true, + "fields": { + "type": { + "multiple": false, + "required": true, + "types": [ + { + "type": "type", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "dictionary_splat_pattern", + "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "list_splat_pattern", + "named": true + } + ] + } + }, + { + "type": "unary_operator", + "named": true, + "fields": { + "argument": { + "multiple": false, + "required": true, + "types": [ + { + "type": "primary_expression", + "named": true + } + ] + }, + "operator": { + "multiple": false, + "required": true, + "types": [ + { + "type": "+", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "~", + "named": false + } + ] + } + } + }, + { + "type": "while_statement", + "named": true, + "fields": { + "alternative": { + "multiple": false, + "required": false, + "types": [ + { + "type": "else_clause", + "named": true + } + ] + }, + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + }, + "condition": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "wildcard_import", + "named": true, + "fields": {} + }, + { + "type": "with_clause", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "with_item", + "named": true + } + ] + } + }, + { + "type": "with_item", + "named": true, + "fields": { + "value": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, + { + "type": "with_statement", + "named": true, + "fields": { + "body": { + "multiple": false, + "required": true, + "types": [ + { + "type": "block", + "named": true + } + ] + } + }, + "children": { + "multiple": false, + "required": true, + "types": [ + { + "type": "with_clause", + "named": true + } + ] + } + }, + { + "type": "!=", + "named": false + }, + { + "type": "\"", + "named": false + }, + { + "type": "%", + "named": false + }, + { + "type": "%=", + "named": false + }, + { + "type": "&", + "named": false + }, + { + "type": "&=", + "named": false + }, + { + "type": "(", + "named": false + }, + { + "type": ")", + "named": false + }, + { + "type": "*", + "named": false + }, + { + "type": "**", + "named": false + }, + { + "type": "**=", + "named": false + }, + { + "type": "*=", + "named": false + }, + { + "type": "+", + "named": false + }, + { + "type": "+=", + "named": false + }, + { + "type": ",", + "named": false + }, + { + "type": "-", + "named": false + }, + { + "type": "-=", + "named": false + }, + { + "type": "->", + "named": false + }, + { + "type": ".", + "named": false + }, + { + "type": "/", + "named": false + }, + { + "type": "//", + "named": false + }, + { + "type": "//=", + "named": false + }, + { + "type": "/=", + "named": false + }, + { + "type": ":", + "named": false + }, + { + "type": ":=", + "named": false + }, + { + "type": ";", + "named": false + }, + { + "type": "<", + "named": false + }, + { + "type": "<<", + "named": false + }, + { + "type": "<<=", + "named": false + }, + { + "type": "<=", + "named": false + }, + { + "type": "<>", + "named": false + }, + { + "type": "=", + "named": false + }, + { + "type": "==", + "named": false + }, + { + "type": ">", + "named": false + }, + { + "type": ">=", + "named": false + }, + { + "type": ">>", + "named": false + }, + { + "type": ">>=", + "named": false + }, + { + "type": "@", + "named": false + }, + { + "type": "@=", + "named": false + }, + { + "type": "[", + "named": false + }, + { + "type": "]", + "named": false + }, + { + "type": "^", + "named": false + }, + { + "type": "^=", + "named": false + }, + { + "type": "__future__", + "named": false + }, + { + "type": "and", + "named": false + }, + { + "type": "as", + "named": false + }, + { + "type": "assert", + "named": false + }, + { + "type": "async", + "named": false + }, + { + "type": "await", + "named": false + }, + { + "type": "break", + "named": false + }, + { + "type": "case", + "named": false + }, + { + "type": "class", + "named": false + }, + { + "type": "comment", + "named": true + }, + { + "type": "continue", + "named": false + }, + { + "type": "def", + "named": false + }, + { + "type": "del", + "named": false + }, + { + "type": "elif", + "named": false + }, + { + "type": "ellipsis", + "named": true + }, + { + "type": "else", + "named": false + }, + { + "type": "escape_sequence", + "named": true + }, + { + "type": "except", + "named": false + }, + { + "type": "except*", + "named": false + }, + { + "type": "exec", + "named": false + }, + { + "type": "false", + "named": true + }, + { + "type": "finally", + "named": false + }, + { + "type": "float", + "named": true + }, + { + "type": "for", + "named": false + }, + { + "type": "from", + "named": false + }, + { + "type": "global", + "named": false + }, + { + "type": "identifier", + "named": true + }, + { + "type": "if", + "named": false + }, + { + "type": "import", + "named": false + }, + { + "type": "in", + "named": false + }, + { + "type": "integer", + "named": true + }, + { + "type": "lambda", + "named": false + }, + { + "type": "match", + "named": false + }, + { + "type": "none", + "named": true + }, + { + "type": "nonlocal", + "named": false + }, + { + "type": "not", + "named": false + }, + { + "type": "or", + "named": false + }, + { + "type": "pass", + "named": false + }, + { + "type": "print", + "named": false + }, + { + "type": "raise", + "named": false + }, + { + "type": "return", + "named": false + }, + { + "type": "true", + "named": true + }, + { + "type": "try", + "named": false + }, + { + "type": "type_conversion", + "named": true + }, + { + "type": "while", + "named": false + }, + { + "type": "with", + "named": false + }, + { + "type": "yield", + "named": false + }, + { + "type": "{", + "named": false + }, + { + "type": "{{", + "named": false + }, + { + "type": "|", + "named": false + }, + { + "type": "|=", + "named": false + }, + { + "type": "}", + "named": false + }, + { + "type": "}}", + "named": false + }, + { + "type": "~", + "named": false + } +] \ No newline at end of file diff --git a/src/parser.c b/src/parser.c new file mode 100644 index 0000000..16bcdf8 --- /dev/null +++ b/src/parser.c @@ -0,0 +1,80263 @@ +#include + +#if defined(__GNUC__) || defined(__clang__) +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wmissing-field-initializers" +#endif + +#define LANGUAGE_VERSION 14 +#define STATE_COUNT 1694 +#define LARGE_STATE_COUNT 124 +#define SYMBOL_COUNT 218 +#define ALIAS_COUNT 2 +#define TOKEN_COUNT 106 +#define EXTERNAL_TOKEN_COUNT 10 +#define FIELD_COUNT 26 +#define MAX_ALIAS_SEQUENCE_LENGTH 9 +#define PRODUCTION_ID_COUNT 100 + +enum { + sym_identifier = 1, + anon_sym_SEMI = 2, + anon_sym_import = 3, + anon_sym_DOT = 4, + anon_sym_from = 5, + anon_sym___future__ = 6, + anon_sym_LPAREN = 7, + anon_sym_RPAREN = 8, + anon_sym_COMMA = 9, + anon_sym_as = 10, + anon_sym_STAR = 11, + anon_sym_print = 12, + anon_sym_GT_GT = 13, + anon_sym_assert = 14, + anon_sym_COLON_EQ = 15, + anon_sym_match = 16, + anon_sym_return = 17, + anon_sym_del = 18, + anon_sym_raise = 19, + anon_sym_pass = 20, + anon_sym_break = 21, + anon_sym_continue = 22, + anon_sym_if = 23, + anon_sym_COLON = 24, + anon_sym_elif = 25, + anon_sym_else = 26, + anon_sym_case = 27, + anon_sym_async = 28, + anon_sym_for = 29, + anon_sym_in = 30, + anon_sym_while = 31, + anon_sym_try = 32, + anon_sym_except = 33, + anon_sym_except_STAR = 34, + anon_sym_finally = 35, + anon_sym_with = 36, + anon_sym_def = 37, + anon_sym_DASH_GT = 38, + anon_sym_STAR_STAR = 39, + anon_sym_global = 40, + anon_sym_nonlocal = 41, + anon_sym_exec = 42, + anon_sym_class = 43, + anon_sym_AT = 44, + anon_sym_LBRACK = 45, + anon_sym_RBRACK = 46, + anon_sym_EQ = 47, + anon_sym_not = 48, + anon_sym_and = 49, + anon_sym_or = 50, + anon_sym_PLUS = 51, + anon_sym_DASH = 52, + anon_sym_SLASH = 53, + anon_sym_PERCENT = 54, + anon_sym_SLASH_SLASH = 55, + anon_sym_PIPE = 56, + anon_sym_AMP = 57, + anon_sym_CARET = 58, + anon_sym_LT_LT = 59, + anon_sym_TILDE = 60, + anon_sym_LT = 61, + anon_sym_LT_EQ = 62, + anon_sym_EQ_EQ = 63, + anon_sym_BANG_EQ = 64, + anon_sym_GT_EQ = 65, + anon_sym_GT = 66, + anon_sym_LT_GT = 67, + anon_sym_lambda = 68, + anon_sym_PLUS_EQ = 69, + anon_sym_DASH_EQ = 70, + anon_sym_STAR_EQ = 71, + anon_sym_SLASH_EQ = 72, + anon_sym_AT_EQ = 73, + anon_sym_SLASH_SLASH_EQ = 74, + anon_sym_PERCENT_EQ = 75, + anon_sym_STAR_STAR_EQ = 76, + anon_sym_GT_GT_EQ = 77, + anon_sym_LT_LT_EQ = 78, + anon_sym_AMP_EQ = 79, + anon_sym_CARET_EQ = 80, + anon_sym_PIPE_EQ = 81, + anon_sym_yield = 82, + sym_ellipsis = 83, + anon_sym_LBRACE = 84, + anon_sym_RBRACE = 85, + anon_sym_LBRACE_LBRACE = 86, + anon_sym_RBRACE_RBRACE = 87, + sym_escape_sequence = 88, + sym__not_escape_sequence = 89, + aux_sym_format_specifier_token1 = 90, + sym_type_conversion = 91, + sym_integer = 92, + sym_float = 93, + anon_sym_await = 94, + anon_sym_struct = 95, + sym_true = 96, + sym_false = 97, + sym_none = 98, + sym_comment = 99, + sym__newline = 100, + sym__indent = 101, + sym__dedent = 102, + sym__string_start = 103, + sym__string_content = 104, + sym__string_end = 105, + sym_module = 106, + sym__statement = 107, + sym__simple_statements = 108, + sym_print_statement = 109, + sym_chevron = 110, + sym_assert_statement = 111, + sym_expression_statement = 112, + sym_named_expression = 113, + sym__named_expresssion_lhs = 114, + sym_return_statement = 115, + sym_delete_statement = 116, + sym_pass_statement = 117, + sym_break_statement = 118, + sym_continue_statement = 119, + sym_if_statement = 120, + sym_elif_clause = 121, + sym_else_clause = 122, + sym_match_statement = 123, + sym_case_clause = 124, + sym_for_statement = 125, + sym_while_statement = 126, + sym_with_statement = 127, + sym_with_clause = 128, + sym_with_item = 129, + sym_function_definition = 130, + sym_parameters = 131, + sym_lambda_parameters = 132, + sym_list_splat = 133, + sym_dictionary_splat = 134, + sym_exec_statement = 135, + sym_parenthesized_list_splat = 136, + sym_argument_list = 137, + sym_decorated_definition = 138, + sym_decorator = 139, + sym_block = 140, + sym_expression_list = 141, + sym__parameters = 142, + sym__patterns = 143, + sym_parameter = 144, + sym_pattern = 145, + sym_tuple_pattern = 146, + sym_list_pattern = 147, + sym_default_parameter = 148, + sym_typed_default_parameter = 149, + sym_list_splat_pattern = 150, + sym_dictionary_splat_pattern = 151, + sym_as_pattern = 152, + sym__expression_within_for_in_clause = 153, + sym_expression = 154, + sym_primary_expression = 155, + sym_not_operator = 156, + sym_boolean_operator = 157, + sym_binary_operator = 158, + sym_unary_operator = 159, + sym_comparison_operator = 160, + sym_lambda = 161, + sym_lambda_within_for_in_clause = 162, + sym_assignment = 163, + sym_augmented_assignment = 164, + sym_pattern_list = 165, + sym__right_hand_side = 166, + sym_attribute = 167, + sym_subscript = 168, + sym_slice = 169, + sym_call = 170, + sym_typed_parameter = 171, + sym_type = 172, + sym_keyword_argument = 173, + sym_list = 174, + sym_set = 175, + sym_tuple = 176, + sym_dictionary = 177, + sym_pair = 178, + sym_list_comprehension = 179, + sym_dictionary_comprehension = 180, + sym_set_comprehension = 181, + sym__comprehension_clauses = 182, + sym_parenthesized_expression = 183, + sym__collection_elements = 184, + sym_for_in_clause = 185, + sym_if_clause = 186, + sym_conditional_expression = 187, + sym_string = 188, + sym_interpolation = 189, + sym__f_expression = 190, + sym__escape_interpolation = 191, + sym_format_specifier = 192, + sym_format_expression = 193, + sym_await = 194, + sym_positional_separator = 195, + sym_keyword_separator = 196, + aux_sym_module_repeat1 = 197, + aux_sym__simple_statements_repeat1 = 198, + aux_sym_print_statement_repeat1 = 199, + aux_sym_assert_statement_repeat1 = 200, + aux_sym_if_statement_repeat1 = 201, + aux_sym_match_statement_repeat1 = 202, + aux_sym_match_statement_repeat2 = 203, + aux_sym_case_clause_repeat1 = 204, + aux_sym_with_clause_repeat1 = 205, + aux_sym_argument_list_repeat1 = 206, + aux_sym_decorated_definition_repeat1 = 207, + aux_sym__parameters_repeat1 = 208, + aux_sym__patterns_repeat1 = 209, + aux_sym_comparison_operator_repeat1 = 210, + aux_sym_subscript_repeat1 = 211, + aux_sym_dictionary_repeat1 = 212, + aux_sym__comprehension_clauses_repeat1 = 213, + aux_sym__collection_elements_repeat1 = 214, + aux_sym_for_in_clause_repeat1 = 215, + aux_sym_string_repeat1 = 216, + aux_sym_format_specifier_repeat1 = 217, + alias_sym_as_pattern_target = 218, + alias_sym_case_pattern = 219, +}; + +static const char * const ts_symbol_names[] = { + [ts_builtin_sym_end] = "end", + [sym_identifier] = "identifier", + [anon_sym_SEMI] = ";", + [anon_sym_import] = "import", + [anon_sym_DOT] = ".", + [anon_sym_from] = "from", + [anon_sym___future__] = "__future__", + [anon_sym_LPAREN] = "(", + [anon_sym_RPAREN] = ")", + [anon_sym_COMMA] = ",", + [anon_sym_as] = "as", + [anon_sym_STAR] = "*", + [anon_sym_print] = "print", + [anon_sym_GT_GT] = ">>", + [anon_sym_assert] = "assert", + [anon_sym_COLON_EQ] = ":=", + [anon_sym_match] = "match", + [anon_sym_return] = "return", + [anon_sym_del] = "del", + [anon_sym_raise] = "raise", + [anon_sym_pass] = "pass", + [anon_sym_break] = "break", + [anon_sym_continue] = "continue", + [anon_sym_if] = "if", + [anon_sym_COLON] = ":", + [anon_sym_elif] = "elif", + [anon_sym_else] = "else", + [anon_sym_case] = "case", + [anon_sym_async] = "async", + [anon_sym_for] = "for", + [anon_sym_in] = "in", + [anon_sym_while] = "while", + [anon_sym_try] = "try", + [anon_sym_except] = "except", + [anon_sym_except_STAR] = "except*", + [anon_sym_finally] = "finally", + [anon_sym_with] = "with", + [anon_sym_def] = "def", + [anon_sym_DASH_GT] = "->", + [anon_sym_STAR_STAR] = "**", + [anon_sym_global] = "global", + [anon_sym_nonlocal] = "nonlocal", + [anon_sym_exec] = "exec", + [anon_sym_class] = "class", + [anon_sym_AT] = "@", + [anon_sym_LBRACK] = "[", + [anon_sym_RBRACK] = "]", + [anon_sym_EQ] = "=", + [anon_sym_not] = "not", + [anon_sym_and] = "and", + [anon_sym_or] = "or", + [anon_sym_PLUS] = "+", + [anon_sym_DASH] = "-", + [anon_sym_SLASH] = "/", + [anon_sym_PERCENT] = "%", + [anon_sym_SLASH_SLASH] = "//", + [anon_sym_PIPE] = "|", + [anon_sym_AMP] = "&", + [anon_sym_CARET] = "^", + [anon_sym_LT_LT] = "<<", + [anon_sym_TILDE] = "~", + [anon_sym_LT] = "<", + [anon_sym_LT_EQ] = "<=", + [anon_sym_EQ_EQ] = "==", + [anon_sym_BANG_EQ] = "!=", + [anon_sym_GT_EQ] = ">=", + [anon_sym_GT] = ">", + [anon_sym_LT_GT] = "<>", + [anon_sym_lambda] = "lambda", + [anon_sym_PLUS_EQ] = "+=", + [anon_sym_DASH_EQ] = "-=", + [anon_sym_STAR_EQ] = "*=", + [anon_sym_SLASH_EQ] = "/=", + [anon_sym_AT_EQ] = "@=", + [anon_sym_SLASH_SLASH_EQ] = "//=", + [anon_sym_PERCENT_EQ] = "%=", + [anon_sym_STAR_STAR_EQ] = "**=", + [anon_sym_GT_GT_EQ] = ">>=", + [anon_sym_LT_LT_EQ] = "<<=", + [anon_sym_AMP_EQ] = "&=", + [anon_sym_CARET_EQ] = "^=", + [anon_sym_PIPE_EQ] = "|=", + [anon_sym_yield] = "yield", + [sym_ellipsis] = "ellipsis", + [anon_sym_LBRACE] = "{", + [anon_sym_RBRACE] = "}", + [anon_sym_LBRACE_LBRACE] = "{{", + [anon_sym_RBRACE_RBRACE] = "}}", + [sym_escape_sequence] = "escape_sequence", + [sym__not_escape_sequence] = "_not_escape_sequence", + [aux_sym_format_specifier_token1] = "format_specifier_token1", + [sym_type_conversion] = "type_conversion", + [sym_integer] = "integer", + [sym_float] = "float", + [anon_sym_await] = "await", + [anon_sym_struct] = "identifier", + [sym_true] = "true", + [sym_false] = "false", + [sym_none] = "none", + [sym_comment] = "comment", + [sym__newline] = "_newline", + [sym__indent] = "_indent", + [sym__dedent] = "_dedent", + [sym__string_start] = "\"", + [sym__string_content] = "_string_content", + [sym__string_end] = "\"", + [sym_module] = "module", + [sym__statement] = "_statement", + [sym__simple_statements] = "_simple_statements", + [sym_print_statement] = "print_statement", + [sym_chevron] = "chevron", + [sym_assert_statement] = "assert_statement", + [sym_expression_statement] = "expression_statement", + [sym_named_expression] = "named_expression", + [sym__named_expresssion_lhs] = "_named_expresssion_lhs", + [sym_return_statement] = "return_statement", + [sym_delete_statement] = "delete_statement", + [sym_pass_statement] = "pass_statement", + [sym_break_statement] = "break_statement", + [sym_continue_statement] = "continue_statement", + [sym_if_statement] = "if_statement", + [sym_elif_clause] = "elif_clause", + [sym_else_clause] = "else_clause", + [sym_match_statement] = "match_statement", + [sym_case_clause] = "case_clause", + [sym_for_statement] = "for_statement", + [sym_while_statement] = "while_statement", + [sym_with_statement] = "with_statement", + [sym_with_clause] = "with_clause", + [sym_with_item] = "with_item", + [sym_function_definition] = "function_definition", + [sym_parameters] = "parameters", + [sym_lambda_parameters] = "lambda_parameters", + [sym_list_splat] = "list_splat", + [sym_dictionary_splat] = "dictionary_splat", + [sym_exec_statement] = "exec_statement", + [sym_parenthesized_list_splat] = "parenthesized_list_splat", + [sym_argument_list] = "argument_list", + [sym_decorated_definition] = "decorated_definition", + [sym_decorator] = "decorator", + [sym_block] = "block", + [sym_expression_list] = "expression_list", + [sym__parameters] = "_parameters", + [sym__patterns] = "_patterns", + [sym_parameter] = "parameter", + [sym_pattern] = "pattern", + [sym_tuple_pattern] = "tuple_pattern", + [sym_list_pattern] = "list_pattern", + [sym_default_parameter] = "default_parameter", + [sym_typed_default_parameter] = "typed_default_parameter", + [sym_list_splat_pattern] = "list_splat_pattern", + [sym_dictionary_splat_pattern] = "dictionary_splat_pattern", + [sym_as_pattern] = "as_pattern", + [sym__expression_within_for_in_clause] = "_expression_within_for_in_clause", + [sym_expression] = "expression", + [sym_primary_expression] = "primary_expression", + [sym_not_operator] = "not_operator", + [sym_boolean_operator] = "boolean_operator", + [sym_binary_operator] = "binary_operator", + [sym_unary_operator] = "unary_operator", + [sym_comparison_operator] = "comparison_operator", + [sym_lambda] = "lambda", + [sym_lambda_within_for_in_clause] = "lambda", + [sym_assignment] = "assignment", + [sym_augmented_assignment] = "augmented_assignment", + [sym_pattern_list] = "pattern_list", + [sym__right_hand_side] = "_right_hand_side", + [sym_attribute] = "attribute", + [sym_subscript] = "subscript", + [sym_slice] = "slice", + [sym_call] = "call", + [sym_typed_parameter] = "typed_parameter", + [sym_type] = "type", + [sym_keyword_argument] = "keyword_argument", + [sym_list] = "list", + [sym_set] = "set", + [sym_tuple] = "tuple", + [sym_dictionary] = "dictionary", + [sym_pair] = "pair", + [sym_list_comprehension] = "list_comprehension", + [sym_dictionary_comprehension] = "dictionary_comprehension", + [sym_set_comprehension] = "set_comprehension", + [sym__comprehension_clauses] = "_comprehension_clauses", + [sym_parenthesized_expression] = "parenthesized_expression", + [sym__collection_elements] = "_collection_elements", + [sym_for_in_clause] = "for_in_clause", + [sym_if_clause] = "if_clause", + [sym_conditional_expression] = "conditional_expression", + [sym_string] = "string", + [sym_interpolation] = "interpolation", + [sym__f_expression] = "_f_expression", + [sym__escape_interpolation] = "_escape_interpolation", + [sym_format_specifier] = "format_specifier", + [sym_format_expression] = "format_expression", + [sym_await] = "await", + [sym_positional_separator] = "positional_separator", + [sym_keyword_separator] = "keyword_separator", + [aux_sym_module_repeat1] = "module_repeat1", + [aux_sym__simple_statements_repeat1] = "_simple_statements_repeat1", + [aux_sym_print_statement_repeat1] = "print_statement_repeat1", + [aux_sym_assert_statement_repeat1] = "assert_statement_repeat1", + [aux_sym_if_statement_repeat1] = "if_statement_repeat1", + [aux_sym_match_statement_repeat1] = "match_statement_repeat1", + [aux_sym_match_statement_repeat2] = "match_statement_repeat2", + [aux_sym_case_clause_repeat1] = "case_clause_repeat1", + [aux_sym_with_clause_repeat1] = "with_clause_repeat1", + [aux_sym_argument_list_repeat1] = "argument_list_repeat1", + [aux_sym_decorated_definition_repeat1] = "decorated_definition_repeat1", + [aux_sym__parameters_repeat1] = "_parameters_repeat1", + [aux_sym__patterns_repeat1] = "_patterns_repeat1", + [aux_sym_comparison_operator_repeat1] = "comparison_operator_repeat1", + [aux_sym_subscript_repeat1] = "subscript_repeat1", + [aux_sym_dictionary_repeat1] = "dictionary_repeat1", + [aux_sym__comprehension_clauses_repeat1] = "_comprehension_clauses_repeat1", + [aux_sym__collection_elements_repeat1] = "_collection_elements_repeat1", + [aux_sym_for_in_clause_repeat1] = "for_in_clause_repeat1", + [aux_sym_string_repeat1] = "string_repeat1", + [aux_sym_format_specifier_repeat1] = "format_specifier_repeat1", + [alias_sym_as_pattern_target] = "as_pattern_target", + [alias_sym_case_pattern] = "case_pattern", +}; + +static const TSSymbol ts_symbol_map[] = { + [ts_builtin_sym_end] = ts_builtin_sym_end, + [sym_identifier] = sym_identifier, + [anon_sym_SEMI] = anon_sym_SEMI, + [anon_sym_import] = anon_sym_import, + [anon_sym_DOT] = anon_sym_DOT, + [anon_sym_from] = anon_sym_from, + [anon_sym___future__] = anon_sym___future__, + [anon_sym_LPAREN] = anon_sym_LPAREN, + [anon_sym_RPAREN] = anon_sym_RPAREN, + [anon_sym_COMMA] = anon_sym_COMMA, + [anon_sym_as] = anon_sym_as, + [anon_sym_STAR] = anon_sym_STAR, + [anon_sym_print] = anon_sym_print, + [anon_sym_GT_GT] = anon_sym_GT_GT, + [anon_sym_assert] = anon_sym_assert, + [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [anon_sym_match] = anon_sym_match, + [anon_sym_return] = anon_sym_return, + [anon_sym_del] = anon_sym_del, + [anon_sym_raise] = anon_sym_raise, + [anon_sym_pass] = anon_sym_pass, + [anon_sym_break] = anon_sym_break, + [anon_sym_continue] = anon_sym_continue, + [anon_sym_if] = anon_sym_if, + [anon_sym_COLON] = anon_sym_COLON, + [anon_sym_elif] = anon_sym_elif, + [anon_sym_else] = anon_sym_else, + [anon_sym_case] = anon_sym_case, + [anon_sym_async] = anon_sym_async, + [anon_sym_for] = anon_sym_for, + [anon_sym_in] = anon_sym_in, + [anon_sym_while] = anon_sym_while, + [anon_sym_try] = anon_sym_try, + [anon_sym_except] = anon_sym_except, + [anon_sym_except_STAR] = anon_sym_except_STAR, + [anon_sym_finally] = anon_sym_finally, + [anon_sym_with] = anon_sym_with, + [anon_sym_def] = anon_sym_def, + [anon_sym_DASH_GT] = anon_sym_DASH_GT, + [anon_sym_STAR_STAR] = anon_sym_STAR_STAR, + [anon_sym_global] = anon_sym_global, + [anon_sym_nonlocal] = anon_sym_nonlocal, + [anon_sym_exec] = anon_sym_exec, + [anon_sym_class] = anon_sym_class, + [anon_sym_AT] = anon_sym_AT, + [anon_sym_LBRACK] = anon_sym_LBRACK, + [anon_sym_RBRACK] = anon_sym_RBRACK, + [anon_sym_EQ] = anon_sym_EQ, + [anon_sym_not] = anon_sym_not, + [anon_sym_and] = anon_sym_and, + [anon_sym_or] = anon_sym_or, + [anon_sym_PLUS] = anon_sym_PLUS, + [anon_sym_DASH] = anon_sym_DASH, + [anon_sym_SLASH] = anon_sym_SLASH, + [anon_sym_PERCENT] = anon_sym_PERCENT, + [anon_sym_SLASH_SLASH] = anon_sym_SLASH_SLASH, + [anon_sym_PIPE] = anon_sym_PIPE, + [anon_sym_AMP] = anon_sym_AMP, + [anon_sym_CARET] = anon_sym_CARET, + [anon_sym_LT_LT] = anon_sym_LT_LT, + [anon_sym_TILDE] = anon_sym_TILDE, + [anon_sym_LT] = anon_sym_LT, + [anon_sym_LT_EQ] = anon_sym_LT_EQ, + [anon_sym_EQ_EQ] = anon_sym_EQ_EQ, + [anon_sym_BANG_EQ] = anon_sym_BANG_EQ, + [anon_sym_GT_EQ] = anon_sym_GT_EQ, + [anon_sym_GT] = anon_sym_GT, + [anon_sym_LT_GT] = anon_sym_LT_GT, + [anon_sym_lambda] = anon_sym_lambda, + [anon_sym_PLUS_EQ] = anon_sym_PLUS_EQ, + [anon_sym_DASH_EQ] = anon_sym_DASH_EQ, + [anon_sym_STAR_EQ] = anon_sym_STAR_EQ, + [anon_sym_SLASH_EQ] = anon_sym_SLASH_EQ, + [anon_sym_AT_EQ] = anon_sym_AT_EQ, + [anon_sym_SLASH_SLASH_EQ] = anon_sym_SLASH_SLASH_EQ, + [anon_sym_PERCENT_EQ] = anon_sym_PERCENT_EQ, + [anon_sym_STAR_STAR_EQ] = anon_sym_STAR_STAR_EQ, + [anon_sym_GT_GT_EQ] = anon_sym_GT_GT_EQ, + [anon_sym_LT_LT_EQ] = anon_sym_LT_LT_EQ, + [anon_sym_AMP_EQ] = anon_sym_AMP_EQ, + [anon_sym_CARET_EQ] = anon_sym_CARET_EQ, + [anon_sym_PIPE_EQ] = anon_sym_PIPE_EQ, + [anon_sym_yield] = anon_sym_yield, + [sym_ellipsis] = sym_ellipsis, + [anon_sym_LBRACE] = anon_sym_LBRACE, + [anon_sym_RBRACE] = anon_sym_RBRACE, + [anon_sym_LBRACE_LBRACE] = anon_sym_LBRACE_LBRACE, + [anon_sym_RBRACE_RBRACE] = anon_sym_RBRACE_RBRACE, + [sym_escape_sequence] = sym_escape_sequence, + [sym__not_escape_sequence] = sym__not_escape_sequence, + [aux_sym_format_specifier_token1] = aux_sym_format_specifier_token1, + [sym_type_conversion] = sym_type_conversion, + [sym_integer] = sym_integer, + [sym_float] = sym_float, + [anon_sym_await] = anon_sym_await, + [anon_sym_struct] = sym_identifier, + [sym_true] = sym_true, + [sym_false] = sym_false, + [sym_none] = sym_none, + [sym_comment] = sym_comment, + [sym__newline] = sym__newline, + [sym__indent] = sym__indent, + [sym__dedent] = sym__dedent, + [sym__string_start] = sym__string_start, + [sym__string_content] = sym__string_content, + [sym__string_end] = sym__string_start, + [sym_module] = sym_module, + [sym__statement] = sym__statement, + [sym__simple_statements] = sym__simple_statements, + [sym_print_statement] = sym_print_statement, + [sym_chevron] = sym_chevron, + [sym_assert_statement] = sym_assert_statement, + [sym_expression_statement] = sym_expression_statement, + [sym_named_expression] = sym_named_expression, + [sym__named_expresssion_lhs] = sym__named_expresssion_lhs, + [sym_return_statement] = sym_return_statement, + [sym_delete_statement] = sym_delete_statement, + [sym_pass_statement] = sym_pass_statement, + [sym_break_statement] = sym_break_statement, + [sym_continue_statement] = sym_continue_statement, + [sym_if_statement] = sym_if_statement, + [sym_elif_clause] = sym_elif_clause, + [sym_else_clause] = sym_else_clause, + [sym_match_statement] = sym_match_statement, + [sym_case_clause] = sym_case_clause, + [sym_for_statement] = sym_for_statement, + [sym_while_statement] = sym_while_statement, + [sym_with_statement] = sym_with_statement, + [sym_with_clause] = sym_with_clause, + [sym_with_item] = sym_with_item, + [sym_function_definition] = sym_function_definition, + [sym_parameters] = sym_parameters, + [sym_lambda_parameters] = sym_lambda_parameters, + [sym_list_splat] = sym_list_splat, + [sym_dictionary_splat] = sym_dictionary_splat, + [sym_exec_statement] = sym_exec_statement, + [sym_parenthesized_list_splat] = sym_parenthesized_list_splat, + [sym_argument_list] = sym_argument_list, + [sym_decorated_definition] = sym_decorated_definition, + [sym_decorator] = sym_decorator, + [sym_block] = sym_block, + [sym_expression_list] = sym_expression_list, + [sym__parameters] = sym__parameters, + [sym__patterns] = sym__patterns, + [sym_parameter] = sym_parameter, + [sym_pattern] = sym_pattern, + [sym_tuple_pattern] = sym_tuple_pattern, + [sym_list_pattern] = sym_list_pattern, + [sym_default_parameter] = sym_default_parameter, + [sym_typed_default_parameter] = sym_typed_default_parameter, + [sym_list_splat_pattern] = sym_list_splat_pattern, + [sym_dictionary_splat_pattern] = sym_dictionary_splat_pattern, + [sym_as_pattern] = sym_as_pattern, + [sym__expression_within_for_in_clause] = sym__expression_within_for_in_clause, + [sym_expression] = sym_expression, + [sym_primary_expression] = sym_primary_expression, + [sym_not_operator] = sym_not_operator, + [sym_boolean_operator] = sym_boolean_operator, + [sym_binary_operator] = sym_binary_operator, + [sym_unary_operator] = sym_unary_operator, + [sym_comparison_operator] = sym_comparison_operator, + [sym_lambda] = sym_lambda, + [sym_lambda_within_for_in_clause] = sym_lambda, + [sym_assignment] = sym_assignment, + [sym_augmented_assignment] = sym_augmented_assignment, + [sym_pattern_list] = sym_pattern_list, + [sym__right_hand_side] = sym__right_hand_side, + [sym_attribute] = sym_attribute, + [sym_subscript] = sym_subscript, + [sym_slice] = sym_slice, + [sym_call] = sym_call, + [sym_typed_parameter] = sym_typed_parameter, + [sym_type] = sym_type, + [sym_keyword_argument] = sym_keyword_argument, + [sym_list] = sym_list, + [sym_set] = sym_set, + [sym_tuple] = sym_tuple, + [sym_dictionary] = sym_dictionary, + [sym_pair] = sym_pair, + [sym_list_comprehension] = sym_list_comprehension, + [sym_dictionary_comprehension] = sym_dictionary_comprehension, + [sym_set_comprehension] = sym_set_comprehension, + [sym__comprehension_clauses] = sym__comprehension_clauses, + [sym_parenthesized_expression] = sym_parenthesized_expression, + [sym__collection_elements] = sym__collection_elements, + [sym_for_in_clause] = sym_for_in_clause, + [sym_if_clause] = sym_if_clause, + [sym_conditional_expression] = sym_conditional_expression, + [sym_string] = sym_string, + [sym_interpolation] = sym_interpolation, + [sym__f_expression] = sym__f_expression, + [sym__escape_interpolation] = sym__escape_interpolation, + [sym_format_specifier] = sym_format_specifier, + [sym_format_expression] = sym_format_expression, + [sym_await] = sym_await, + [sym_positional_separator] = sym_positional_separator, + [sym_keyword_separator] = sym_keyword_separator, + [aux_sym_module_repeat1] = aux_sym_module_repeat1, + [aux_sym__simple_statements_repeat1] = aux_sym__simple_statements_repeat1, + [aux_sym_print_statement_repeat1] = aux_sym_print_statement_repeat1, + [aux_sym_assert_statement_repeat1] = aux_sym_assert_statement_repeat1, + [aux_sym_if_statement_repeat1] = aux_sym_if_statement_repeat1, + [aux_sym_match_statement_repeat1] = aux_sym_match_statement_repeat1, + [aux_sym_match_statement_repeat2] = aux_sym_match_statement_repeat2, + [aux_sym_case_clause_repeat1] = aux_sym_case_clause_repeat1, + [aux_sym_with_clause_repeat1] = aux_sym_with_clause_repeat1, + [aux_sym_argument_list_repeat1] = aux_sym_argument_list_repeat1, + [aux_sym_decorated_definition_repeat1] = aux_sym_decorated_definition_repeat1, + [aux_sym__parameters_repeat1] = aux_sym__parameters_repeat1, + [aux_sym__patterns_repeat1] = aux_sym__patterns_repeat1, + [aux_sym_comparison_operator_repeat1] = aux_sym_comparison_operator_repeat1, + [aux_sym_subscript_repeat1] = aux_sym_subscript_repeat1, + [aux_sym_dictionary_repeat1] = aux_sym_dictionary_repeat1, + [aux_sym__comprehension_clauses_repeat1] = aux_sym__comprehension_clauses_repeat1, + [aux_sym__collection_elements_repeat1] = aux_sym__collection_elements_repeat1, + [aux_sym_for_in_clause_repeat1] = aux_sym_for_in_clause_repeat1, + [aux_sym_string_repeat1] = aux_sym_string_repeat1, + [aux_sym_format_specifier_repeat1] = aux_sym_format_specifier_repeat1, + [alias_sym_as_pattern_target] = alias_sym_as_pattern_target, + [alias_sym_case_pattern] = alias_sym_case_pattern, +}; + +static const TSSymbolMetadata ts_symbol_metadata[] = { + [ts_builtin_sym_end] = { + .visible = false, + .named = true, + }, + [sym_identifier] = { + .visible = true, + .named = true, + }, + [anon_sym_SEMI] = { + .visible = true, + .named = false, + }, + [anon_sym_import] = { + .visible = true, + .named = false, + }, + [anon_sym_DOT] = { + .visible = true, + .named = false, + }, + [anon_sym_from] = { + .visible = true, + .named = false, + }, + [anon_sym___future__] = { + .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, + }, + [anon_sym_as] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_print] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_assert] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_match] = { + .visible = true, + .named = false, + }, + [anon_sym_return] = { + .visible = true, + .named = false, + }, + [anon_sym_del] = { + .visible = true, + .named = false, + }, + [anon_sym_raise] = { + .visible = true, + .named = false, + }, + [anon_sym_pass] = { + .visible = true, + .named = false, + }, + [anon_sym_break] = { + .visible = true, + .named = false, + }, + [anon_sym_continue] = { + .visible = true, + .named = false, + }, + [anon_sym_if] = { + .visible = true, + .named = false, + }, + [anon_sym_COLON] = { + .visible = true, + .named = false, + }, + [anon_sym_elif] = { + .visible = true, + .named = false, + }, + [anon_sym_else] = { + .visible = true, + .named = false, + }, + [anon_sym_case] = { + .visible = true, + .named = false, + }, + [anon_sym_async] = { + .visible = true, + .named = false, + }, + [anon_sym_for] = { + .visible = true, + .named = false, + }, + [anon_sym_in] = { + .visible = true, + .named = false, + }, + [anon_sym_while] = { + .visible = true, + .named = false, + }, + [anon_sym_try] = { + .visible = true, + .named = false, + }, + [anon_sym_except] = { + .visible = true, + .named = false, + }, + [anon_sym_except_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_finally] = { + .visible = true, + .named = false, + }, + [anon_sym_with] = { + .visible = true, + .named = false, + }, + [anon_sym_def] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR] = { + .visible = true, + .named = false, + }, + [anon_sym_global] = { + .visible = true, + .named = false, + }, + [anon_sym_nonlocal] = { + .visible = true, + .named = false, + }, + [anon_sym_exec] = { + .visible = true, + .named = false, + }, + [anon_sym_class] = { + .visible = true, + .named = false, + }, + [anon_sym_AT] = { + .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_not] = { + .visible = true, + .named = false, + }, + [anon_sym_and] = { + .visible = true, + .named = false, + }, + [anon_sym_or] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_TILDE] = { + .visible = true, + .named = false, + }, + [anon_sym_LT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_EQ_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_BANG_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_GT] = { + .visible = true, + .named = false, + }, + [anon_sym_lambda] = { + .visible = true, + .named = false, + }, + [anon_sym_PLUS_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_DASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_SLASH_SLASH_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PERCENT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_STAR_STAR_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_GT_GT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_LT_LT_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_AMP_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_CARET_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_PIPE_EQ] = { + .visible = true, + .named = false, + }, + [anon_sym_yield] = { + .visible = true, + .named = false, + }, + [sym_ellipsis] = { + .visible = true, + .named = true, + }, + [anon_sym_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_LBRACE_LBRACE] = { + .visible = true, + .named = false, + }, + [anon_sym_RBRACE_RBRACE] = { + .visible = true, + .named = false, + }, + [sym_escape_sequence] = { + .visible = true, + .named = true, + }, + [sym__not_escape_sequence] = { + .visible = false, + .named = true, + }, + [aux_sym_format_specifier_token1] = { + .visible = false, + .named = false, + }, + [sym_type_conversion] = { + .visible = true, + .named = true, + }, + [sym_integer] = { + .visible = true, + .named = true, + }, + [sym_float] = { + .visible = true, + .named = true, + }, + [anon_sym_await] = { + .visible = true, + .named = false, + }, + [anon_sym_struct] = { + .visible = true, + .named = true, + }, + [sym_true] = { + .visible = true, + .named = true, + }, + [sym_false] = { + .visible = true, + .named = true, + }, + [sym_none] = { + .visible = true, + .named = true, + }, + [sym_comment] = { + .visible = true, + .named = true, + }, + [sym__newline] = { + .visible = false, + .named = true, + }, + [sym__indent] = { + .visible = false, + .named = true, + }, + [sym__dedent] = { + .visible = false, + .named = true, + }, + [sym__string_start] = { + .visible = true, + .named = false, + }, + [sym__string_content] = { + .visible = false, + .named = true, + }, + [sym__string_end] = { + .visible = true, + .named = false, + }, + [sym_module] = { + .visible = true, + .named = true, + }, + [sym__statement] = { + .visible = false, + .named = true, + }, + [sym__simple_statements] = { + .visible = false, + .named = true, + }, + [sym_print_statement] = { + .visible = true, + .named = true, + }, + [sym_chevron] = { + .visible = true, + .named = true, + }, + [sym_assert_statement] = { + .visible = true, + .named = true, + }, + [sym_expression_statement] = { + .visible = true, + .named = true, + }, + [sym_named_expression] = { + .visible = true, + .named = true, + }, + [sym__named_expresssion_lhs] = { + .visible = false, + .named = true, + }, + [sym_return_statement] = { + .visible = true, + .named = true, + }, + [sym_delete_statement] = { + .visible = true, + .named = true, + }, + [sym_pass_statement] = { + .visible = true, + .named = true, + }, + [sym_break_statement] = { + .visible = true, + .named = true, + }, + [sym_continue_statement] = { + .visible = true, + .named = true, + }, + [sym_if_statement] = { + .visible = true, + .named = true, + }, + [sym_elif_clause] = { + .visible = true, + .named = true, + }, + [sym_else_clause] = { + .visible = true, + .named = true, + }, + [sym_match_statement] = { + .visible = true, + .named = true, + }, + [sym_case_clause] = { + .visible = true, + .named = true, + }, + [sym_for_statement] = { + .visible = true, + .named = true, + }, + [sym_while_statement] = { + .visible = true, + .named = true, + }, + [sym_with_statement] = { + .visible = true, + .named = true, + }, + [sym_with_clause] = { + .visible = true, + .named = true, + }, + [sym_with_item] = { + .visible = true, + .named = true, + }, + [sym_function_definition] = { + .visible = true, + .named = true, + }, + [sym_parameters] = { + .visible = true, + .named = true, + }, + [sym_lambda_parameters] = { + .visible = true, + .named = true, + }, + [sym_list_splat] = { + .visible = true, + .named = true, + }, + [sym_dictionary_splat] = { + .visible = true, + .named = true, + }, + [sym_exec_statement] = { + .visible = true, + .named = true, + }, + [sym_parenthesized_list_splat] = { + .visible = true, + .named = true, + }, + [sym_argument_list] = { + .visible = true, + .named = true, + }, + [sym_decorated_definition] = { + .visible = true, + .named = true, + }, + [sym_decorator] = { + .visible = true, + .named = true, + }, + [sym_block] = { + .visible = true, + .named = true, + }, + [sym_expression_list] = { + .visible = true, + .named = true, + }, + [sym__parameters] = { + .visible = false, + .named = true, + }, + [sym__patterns] = { + .visible = false, + .named = true, + }, + [sym_parameter] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_pattern] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_tuple_pattern] = { + .visible = true, + .named = true, + }, + [sym_list_pattern] = { + .visible = true, + .named = true, + }, + [sym_default_parameter] = { + .visible = true, + .named = true, + }, + [sym_typed_default_parameter] = { + .visible = true, + .named = true, + }, + [sym_list_splat_pattern] = { + .visible = true, + .named = true, + }, + [sym_dictionary_splat_pattern] = { + .visible = true, + .named = true, + }, + [sym_as_pattern] = { + .visible = true, + .named = true, + }, + [sym__expression_within_for_in_clause] = { + .visible = false, + .named = true, + }, + [sym_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_primary_expression] = { + .visible = false, + .named = true, + .supertype = true, + }, + [sym_not_operator] = { + .visible = true, + .named = true, + }, + [sym_boolean_operator] = { + .visible = true, + .named = true, + }, + [sym_binary_operator] = { + .visible = true, + .named = true, + }, + [sym_unary_operator] = { + .visible = true, + .named = true, + }, + [sym_comparison_operator] = { + .visible = true, + .named = true, + }, + [sym_lambda] = { + .visible = true, + .named = true, + }, + [sym_lambda_within_for_in_clause] = { + .visible = true, + .named = true, + }, + [sym_assignment] = { + .visible = true, + .named = true, + }, + [sym_augmented_assignment] = { + .visible = true, + .named = true, + }, + [sym_pattern_list] = { + .visible = true, + .named = true, + }, + [sym__right_hand_side] = { + .visible = false, + .named = true, + }, + [sym_attribute] = { + .visible = true, + .named = true, + }, + [sym_subscript] = { + .visible = true, + .named = true, + }, + [sym_slice] = { + .visible = true, + .named = true, + }, + [sym_call] = { + .visible = true, + .named = true, + }, + [sym_typed_parameter] = { + .visible = true, + .named = true, + }, + [sym_type] = { + .visible = true, + .named = true, + }, + [sym_keyword_argument] = { + .visible = true, + .named = true, + }, + [sym_list] = { + .visible = true, + .named = true, + }, + [sym_set] = { + .visible = true, + .named = true, + }, + [sym_tuple] = { + .visible = true, + .named = true, + }, + [sym_dictionary] = { + .visible = true, + .named = true, + }, + [sym_pair] = { + .visible = true, + .named = true, + }, + [sym_list_comprehension] = { + .visible = true, + .named = true, + }, + [sym_dictionary_comprehension] = { + .visible = true, + .named = true, + }, + [sym_set_comprehension] = { + .visible = true, + .named = true, + }, + [sym__comprehension_clauses] = { + .visible = false, + .named = true, + }, + [sym_parenthesized_expression] = { + .visible = true, + .named = true, + }, + [sym__collection_elements] = { + .visible = false, + .named = true, + }, + [sym_for_in_clause] = { + .visible = true, + .named = true, + }, + [sym_if_clause] = { + .visible = true, + .named = true, + }, + [sym_conditional_expression] = { + .visible = true, + .named = true, + }, + [sym_string] = { + .visible = true, + .named = true, + }, + [sym_interpolation] = { + .visible = true, + .named = true, + }, + [sym__f_expression] = { + .visible = false, + .named = true, + }, + [sym__escape_interpolation] = { + .visible = false, + .named = true, + }, + [sym_format_specifier] = { + .visible = true, + .named = true, + }, + [sym_format_expression] = { + .visible = true, + .named = true, + }, + [sym_await] = { + .visible = true, + .named = true, + }, + [sym_positional_separator] = { + .visible = true, + .named = true, + }, + [sym_keyword_separator] = { + .visible = true, + .named = true, + }, + [aux_sym_module_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__simple_statements_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_print_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_assert_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_if_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_statement_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_match_statement_repeat2] = { + .visible = false, + .named = false, + }, + [aux_sym_case_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_with_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_argument_list_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_decorated_definition_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__parameters_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__patterns_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_comparison_operator_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_subscript_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_dictionary_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__comprehension_clauses_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym__collection_elements_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_for_in_clause_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_string_repeat1] = { + .visible = false, + .named = false, + }, + [aux_sym_format_specifier_repeat1] = { + .visible = false, + .named = false, + }, + [alias_sym_as_pattern_target] = { + .visible = true, + .named = true, + }, + [alias_sym_case_pattern] = { + .visible = true, + .named = true, + }, +}; + +enum { + field_alias = 1, + field_alternative = 2, + field_argument = 3, + field_arguments = 4, + field_attribute = 5, + field_body = 6, + field_code = 7, + field_condition = 8, + field_consequence = 9, + field_definition = 10, + field_function = 11, + field_guard = 12, + field_key = 13, + field_left = 14, + field_name = 15, + field_object = 16, + field_operator = 17, + field_operators = 18, + field_parameters = 19, + field_pattern = 20, + field_return_type = 21, + field_right = 22, + field_subject = 23, + field_subscript = 24, + field_type = 25, + field_value = 26, +}; + +static const char * const ts_field_names[] = { + [0] = NULL, + [field_alias] = "alias", + [field_alternative] = "alternative", + [field_argument] = "argument", + [field_arguments] = "arguments", + [field_attribute] = "attribute", + [field_body] = "body", + [field_code] = "code", + [field_condition] = "condition", + [field_consequence] = "consequence", + [field_definition] = "definition", + [field_function] = "function", + [field_guard] = "guard", + [field_key] = "key", + [field_left] = "left", + [field_name] = "name", + [field_object] = "object", + [field_operator] = "operator", + [field_operators] = "operators", + [field_parameters] = "parameters", + [field_pattern] = "pattern", + [field_return_type] = "return_type", + [field_right] = "right", + [field_subject] = "subject", + [field_subscript] = "subscript", + [field_type] = "type", + [field_value] = "value", +}; + +static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { + [3] = {.index = 0, .length = 1}, + [4] = {.index = 1, .length = 1}, + [5] = {.index = 2, .length = 1}, + [6] = {.index = 3, .length = 2}, + [7] = {.index = 5, .length = 2}, + [8] = {.index = 7, .length = 1}, + [9] = {.index = 8, .length = 1}, + [10] = {.index = 9, .length = 1}, + [11] = {.index = 10, .length = 2}, + [12] = {.index = 12, .length = 1}, + [13] = {.index = 13, .length = 1}, + [14] = {.index = 14, .length = 2}, + [15] = {.index = 16, .length = 2}, + [16] = {.index = 18, .length = 2}, + [17] = {.index = 20, .length = 3}, + [18] = {.index = 23, .length = 1}, + [19] = {.index = 24, .length = 2}, + [20] = {.index = 26, .length = 1}, + [21] = {.index = 27, .length = 2}, + [23] = {.index = 29, .length = 2}, + [24] = {.index = 31, .length = 1}, + [25] = {.index = 32, .length = 2}, + [26] = {.index = 34, .length = 2}, + [27] = {.index = 36, .length = 2}, + [28] = {.index = 38, .length = 2}, + [29] = {.index = 40, .length = 2}, + [30] = {.index = 42, .length = 1}, + [31] = {.index = 43, .length = 1}, + [32] = {.index = 44, .length = 1}, + [33] = {.index = 45, .length = 2}, + [34] = {.index = 47, .length = 2}, + [35] = {.index = 49, .length = 2}, + [36] = {.index = 51, .length = 2}, + [37] = {.index = 53, .length = 2}, + [38] = {.index = 55, .length = 2}, + [39] = {.index = 57, .length = 3}, + [40] = {.index = 60, .length = 3}, + [41] = {.index = 63, .length = 3}, + [42] = {.index = 66, .length = 3}, + [43] = {.index = 69, .length = 1}, + [44] = {.index = 70, .length = 3}, + [45] = {.index = 73, .length = 3}, + [46] = {.index = 76, .length = 2}, + [47] = {.index = 78, .length = 3}, + [48] = {.index = 81, .length = 3}, + [49] = {.index = 14, .length = 2}, + [50] = {.index = 84, .length = 1}, + [51] = {.index = 85, .length = 3}, + [52] = {.index = 88, .length = 2}, + [53] = {.index = 90, .length = 3}, + [54] = {.index = 93, .length = 4}, + [55] = {.index = 97, .length = 4}, + [56] = {.index = 101, .length = 4}, + [57] = {.index = 105, .length = 2}, + [58] = {.index = 107, .length = 3}, + [59] = {.index = 110, .length = 3}, + [60] = {.index = 113, .length = 4}, + [61] = {.index = 117, .length = 4}, + [62] = {.index = 121, .length = 2}, + [63] = {.index = 123, .length = 3}, + [64] = {.index = 126, .length = 1}, + [65] = {.index = 127, .length = 2}, + [66] = {.index = 129, .length = 2}, + [67] = {.index = 13, .length = 1}, + [68] = {.index = 131, .length = 5}, + [69] = {.index = 136, .length = 3}, + [70] = {.index = 139, .length = 4}, + [71] = {.index = 143, .length = 4}, + [72] = {.index = 147, .length = 4}, + [73] = {.index = 151, .length = 4}, + [74] = {.index = 155, .length = 2}, + [75] = {.index = 157, .length = 3}, + [76] = {.index = 160, .length = 2}, + [77] = {.index = 162, .length = 3}, + [78] = {.index = 165, .length = 3}, + [79] = {.index = 168, .length = 3}, + [80] = {.index = 171, .length = 2}, + [81] = {.index = 173, .length = 4}, + [82] = {.index = 177, .length = 4}, + [83] = {.index = 181, .length = 4}, + [84] = {.index = 185, .length = 5}, + [85] = {.index = 190, .length = 5}, + [86] = {.index = 195, .length = 3}, + [87] = {.index = 198, .length = 3}, + [88] = {.index = 201, .length = 3}, + [89] = {.index = 204, .length = 4}, + [90] = {.index = 208, .length = 3}, + [91] = {.index = 211, .length = 4}, + [92] = {.index = 215, .length = 4}, + [93] = {.index = 219, .length = 5}, + [94] = {.index = 224, .length = 5}, + [95] = {.index = 229, .length = 4}, + [96] = {.index = 233, .length = 4}, + [97] = {.index = 237, .length = 4}, + [98] = {.index = 241, .length = 5}, + [99] = {.index = 246, .length = 5}, +}; + +static const TSFieldMapEntry ts_field_map_entries[] = { + [0] = + {field_argument, 1}, + [1] = + {field_value, 0}, + [2] = + {field_code, 1}, + [3] = + {field_argument, 1}, + {field_operator, 0}, + [5] = + {field_arguments, 1}, + {field_function, 0}, + [7] = + {field_operators, 1, .inherited = true}, + [8] = + {field_definition, 1}, + [9] = + {field_argument, 2, .inherited = true}, + [10] = + {field_argument, 1}, + {field_argument, 2, .inherited = true}, + [12] = + {field_subject, 1}, + [13] = + {field_body, 2}, + [14] = + {field_name, 0}, + {field_value, 2}, + [16] = + {field_left, 0}, + {field_type, 2}, + [18] = + {field_left, 0}, + {field_right, 2}, + [20] = + {field_left, 0}, + {field_operator, 1}, + {field_right, 2}, + [23] = + {field_alias, 2}, + [24] = + {field_attribute, 2}, + {field_object, 0}, + [26] = + {field_operators, 0}, + [27] = + {field_operators, 0, .inherited = true}, + {field_operators, 1, .inherited = true}, + [29] = + {field_argument, 0, .inherited = true}, + {field_argument, 1, .inherited = true}, + [31] = + {field_alternative, 0}, + [32] = + {field_alternative, 3, .inherited = true}, + {field_subject, 1}, + [34] = + {field_subject, 1}, + {field_subject, 2, .inherited = true}, + [36] = + {field_subject, 0, .inherited = true}, + {field_subject, 1, .inherited = true}, + [38] = + {field_condition, 1}, + {field_consequence, 3}, + [40] = + {field_body, 3}, + {field_condition, 1}, + [42] = + {field_body, 3}, + [43] = + {field_body, 1}, + [44] = + {field_type, 2}, + [45] = + {field_body, 3}, + {field_parameters, 1}, + [47] = + {field_key, 0}, + {field_value, 2}, + [49] = + {field_subscript, 2}, + {field_value, 0}, + [51] = + {field_operators, 0}, + {field_operators, 1}, + [53] = + {field_alternative, 4, .inherited = true}, + {field_subject, 1}, + [55] = + {field_alternative, 0, .inherited = true}, + {field_alternative, 1, .inherited = true}, + [57] = + {field_alternative, 4, .inherited = true}, + {field_subject, 1}, + {field_subject, 2, .inherited = true}, + [60] = + {field_alternative, 4}, + {field_condition, 1}, + {field_consequence, 3}, + [63] = + {field_alternative, 4, .inherited = true}, + {field_condition, 1}, + {field_consequence, 3}, + [66] = + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [69] = + {field_body, 4}, + [70] = + {field_alternative, 4}, + {field_body, 3}, + {field_condition, 1}, + [73] = + {field_body, 3}, + {field_body, 4}, + {field_condition, 1}, + [76] = + {field_body, 3}, + {field_body, 4}, + [78] = + {field_body, 4}, + {field_name, 1}, + {field_parameters, 2}, + [81] = + {field_left, 0}, + {field_right, 4}, + {field_type, 2}, + [84] = + {field_subscript, 1}, + [85] = + {field_subscript, 2}, + {field_subscript, 3, .inherited = true}, + {field_value, 0}, + [88] = + {field_subscript, 0, .inherited = true}, + {field_subscript, 1, .inherited = true}, + [90] = + {field_alternative, 5, .inherited = true}, + {field_subject, 1}, + {field_subject, 2, .inherited = true}, + [93] = + {field_alternative, 4, .inherited = true}, + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 3}, + [97] = + {field_alternative, 5}, + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [101] = + {field_alternative, 5, .inherited = true}, + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [105] = + {field_body, 4}, + {field_body, 5}, + [107] = + {field_body, 5}, + {field_name, 2}, + {field_parameters, 3}, + [110] = + {field_body, 5}, + {field_left, 1}, + {field_right, 3}, + [113] = + {field_alternative, 5}, + {field_body, 3}, + {field_body, 4}, + {field_condition, 1}, + [117] = + {field_body, 4}, + {field_body, 5}, + {field_name, 1}, + {field_parameters, 2}, + [121] = + {field_left, 1}, + {field_right, 3}, + [123] = + {field_name, 0}, + {field_type, 2}, + {field_value, 4}, + [126] = + {field_pattern, 1}, + [127] = + {field_consequence, 3}, + {field_pattern, 1}, + [129] = + {field_pattern, 0, .inherited = true}, + {field_pattern, 1, .inherited = true}, + [131] = + {field_alternative, 5, .inherited = true}, + {field_alternative, 6}, + {field_condition, 1}, + {field_consequence, 3}, + {field_consequence, 4}, + [136] = + {field_body, 6}, + {field_left, 2}, + {field_right, 4}, + [139] = + {field_body, 5}, + {field_body, 6}, + {field_name, 2}, + {field_parameters, 3}, + [143] = + {field_alternative, 6}, + {field_body, 5}, + {field_left, 1}, + {field_right, 3}, + [147] = + {field_body, 5}, + {field_body, 6}, + {field_left, 1}, + {field_right, 3}, + [151] = + {field_body, 6}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [155] = + {field_left, 2}, + {field_right, 4}, + [157] = + {field_left, 1}, + {field_right, 3}, + {field_right, 4}, + [160] = + {field_consequence, 4}, + {field_pattern, 1}, + [162] = + {field_consequence, 3}, + {field_consequence, 4}, + {field_pattern, 1}, + [165] = + {field_consequence, 4}, + {field_guard, 2}, + {field_pattern, 1}, + [168] = + {field_consequence, 4}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [171] = + {field_body, 2}, + {field_body, 3}, + [173] = + {field_alternative, 7}, + {field_body, 6}, + {field_left, 2}, + {field_right, 4}, + [177] = + {field_body, 6}, + {field_body, 7}, + {field_left, 2}, + {field_right, 4}, + [181] = + {field_body, 7}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [185] = + {field_alternative, 7}, + {field_body, 5}, + {field_body, 6}, + {field_left, 1}, + {field_right, 3}, + [190] = + {field_body, 6}, + {field_body, 7}, + {field_name, 1}, + {field_parameters, 2}, + {field_return_type, 4}, + [195] = + {field_left, 2}, + {field_right, 4}, + {field_right, 5}, + [198] = + {field_consequence, 4}, + {field_consequence, 5}, + {field_pattern, 1}, + [201] = + {field_consequence, 5}, + {field_guard, 3}, + {field_pattern, 1}, + [204] = + {field_consequence, 4}, + {field_consequence, 5}, + {field_guard, 2}, + {field_pattern, 1}, + [208] = + {field_consequence, 5}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [211] = + {field_consequence, 4}, + {field_consequence, 5}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [215] = + {field_consequence, 5}, + {field_guard, 3}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [219] = + {field_alternative, 8}, + {field_body, 6}, + {field_body, 7}, + {field_left, 2}, + {field_right, 4}, + [224] = + {field_body, 7}, + {field_body, 8}, + {field_name, 2}, + {field_parameters, 3}, + {field_return_type, 5}, + [229] = + {field_consequence, 5}, + {field_consequence, 6}, + {field_guard, 3}, + {field_pattern, 1}, + [233] = + {field_consequence, 5}, + {field_consequence, 6}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [237] = + {field_consequence, 6}, + {field_guard, 4}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [241] = + {field_consequence, 5}, + {field_consequence, 6}, + {field_guard, 3}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, + [246] = + {field_consequence, 6}, + {field_consequence, 7}, + {field_guard, 4}, + {field_pattern, 1}, + {field_pattern, 2, .inherited = true}, +}; + +static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { + [0] = {0}, + [1] = { + [0] = sym_identifier, + }, + [2] = { + [1] = sym_identifier, + }, + [18] = { + [2] = alias_sym_as_pattern_target, + }, + [22] = { + [1] = sym_parenthesized_expression, + }, + [28] = { + [3] = sym_block, + }, + [29] = { + [3] = sym_block, + }, + [30] = { + [3] = sym_block, + }, + [40] = { + [3] = sym_block, + }, + [41] = { + [3] = sym_block, + }, + [43] = { + [4] = sym_block, + }, + [44] = { + [3] = sym_block, + }, + [47] = { + [4] = sym_block, + }, + [49] = { + [0] = sym_identifier, + }, + [54] = { + [3] = sym_block, + }, + [58] = { + [5] = sym_block, + }, + [59] = { + [5] = sym_block, + }, + [64] = { + [1] = alias_sym_case_pattern, + }, + [65] = { + [1] = alias_sym_case_pattern, + [3] = sym_block, + }, + [67] = { + [2] = sym_block, + }, + [69] = { + [6] = sym_block, + }, + [71] = { + [5] = sym_block, + }, + [73] = { + [6] = sym_block, + }, + [76] = { + [1] = alias_sym_case_pattern, + [4] = sym_block, + }, + [77] = { + [1] = alias_sym_case_pattern, + }, + [78] = { + [1] = alias_sym_case_pattern, + [4] = sym_block, + }, + [79] = { + [1] = alias_sym_case_pattern, + [4] = sym_block, + }, + [81] = { + [6] = sym_block, + }, + [83] = { + [7] = sym_block, + }, + [87] = { + [1] = alias_sym_case_pattern, + }, + [88] = { + [1] = alias_sym_case_pattern, + [5] = sym_block, + }, + [89] = { + [1] = alias_sym_case_pattern, + }, + [90] = { + [1] = alias_sym_case_pattern, + [5] = sym_block, + }, + [91] = { + [1] = alias_sym_case_pattern, + }, + [92] = { + [1] = alias_sym_case_pattern, + [5] = sym_block, + }, + [95] = { + [1] = alias_sym_case_pattern, + }, + [96] = { + [1] = alias_sym_case_pattern, + }, + [97] = { + [1] = alias_sym_case_pattern, + [6] = sym_block, + }, + [98] = { + [1] = alias_sym_case_pattern, + }, + [99] = { + [1] = alias_sym_case_pattern, + }, +}; + +static const uint16_t ts_non_terminal_alias_map[] = { + sym__simple_statements, 2, + sym__simple_statements, + sym_block, + sym_parenthesized_list_splat, 2, + sym_parenthesized_list_splat, + sym_parenthesized_expression, + sym_list_splat_pattern, 2, + sym_list_splat_pattern, + alias_sym_case_pattern, + sym_expression, 3, + sym_expression, + alias_sym_as_pattern_target, + alias_sym_case_pattern, + 0, +}; + +static const TSStateId ts_primary_state_ids[STATE_COUNT] = { + [0] = 0, + [1] = 1, + [2] = 2, + [3] = 3, + [4] = 4, + [5] = 5, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 9, + [10] = 10, + [11] = 11, + [12] = 12, + [13] = 13, + [14] = 14, + [15] = 7, + [16] = 11, + [17] = 4, + [18] = 6, + [19] = 19, + [20] = 20, + [21] = 21, + [22] = 22, + [23] = 23, + [24] = 24, + [25] = 25, + [26] = 26, + [27] = 27, + [28] = 22, + [29] = 29, + [30] = 23, + [31] = 31, + [32] = 32, + [33] = 33, + [34] = 26, + [35] = 13, + [36] = 31, + [37] = 21, + [38] = 8, + [39] = 20, + [40] = 19, + [41] = 24, + [42] = 25, + [43] = 9, + [44] = 12, + [45] = 14, + [46] = 2, + [47] = 33, + [48] = 32, + [49] = 27, + [50] = 10, + [51] = 3, + [52] = 29, + [53] = 53, + [54] = 54, + [55] = 55, + [56] = 56, + [57] = 53, + [58] = 55, + [59] = 59, + [60] = 59, + [61] = 59, + [62] = 59, + [63] = 59, + [64] = 59, + [65] = 59, + [66] = 66, + [67] = 56, + [68] = 68, + [69] = 69, + [70] = 70, + [71] = 71, + [72] = 70, + [73] = 73, + [74] = 74, + [75] = 75, + [76] = 76, + [77] = 69, + [78] = 78, + [79] = 79, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 79, + [84] = 84, + [85] = 85, + [86] = 68, + [87] = 87, + [88] = 88, + [89] = 80, + [90] = 82, + [91] = 73, + [92] = 84, + [93] = 71, + [94] = 94, + [95] = 87, + [96] = 96, + [97] = 97, + [98] = 78, + [99] = 88, + [100] = 100, + [101] = 101, + [102] = 94, + [103] = 103, + [104] = 100, + [105] = 101, + [106] = 106, + [107] = 107, + [108] = 76, + [109] = 106, + [110] = 75, + [111] = 74, + [112] = 107, + [113] = 97, + [114] = 81, + [115] = 103, + [116] = 96, + [117] = 85, + [118] = 56, + [119] = 119, + [120] = 119, + [121] = 121, + [122] = 121, + [123] = 123, + [124] = 124, + [125] = 125, + [126] = 126, + [127] = 127, + [128] = 128, + [129] = 128, + [130] = 125, + [131] = 131, + [132] = 125, + [133] = 128, + [134] = 125, + [135] = 125, + [136] = 128, + [137] = 131, + [138] = 125, + [139] = 139, + [140] = 139, + [141] = 141, + [142] = 142, + [143] = 139, + [144] = 139, + [145] = 139, + [146] = 139, + [147] = 139, + [148] = 148, + [149] = 148, + [150] = 148, + [151] = 148, + [152] = 148, + [153] = 148, + [154] = 148, + [155] = 155, + [156] = 156, + [157] = 156, + [158] = 155, + [159] = 159, + [160] = 160, + [161] = 160, + [162] = 159, + [163] = 156, + [164] = 155, + [165] = 155, + [166] = 155, + [167] = 160, + [168] = 159, + [169] = 159, + [170] = 159, + [171] = 160, + [172] = 156, + [173] = 159, + [174] = 155, + [175] = 160, + [176] = 159, + [177] = 160, + [178] = 156, + [179] = 155, + [180] = 160, + [181] = 156, + [182] = 156, + [183] = 183, + [184] = 184, + [185] = 185, + [186] = 186, + [187] = 187, + [188] = 188, + [189] = 189, + [190] = 190, + [191] = 191, + [192] = 192, + [193] = 188, + [194] = 187, + [195] = 185, + [196] = 191, + [197] = 186, + [198] = 198, + [199] = 189, + [200] = 200, + [201] = 191, + [202] = 188, + [203] = 200, + [204] = 191, + [205] = 191, + [206] = 200, + [207] = 198, + [208] = 188, + [209] = 190, + [210] = 188, + [211] = 191, + [212] = 188, + [213] = 200, + [214] = 200, + [215] = 191, + [216] = 192, + [217] = 188, + [218] = 218, + [219] = 218, + [220] = 218, + [221] = 221, + [222] = 222, + [223] = 218, + [224] = 218, + [225] = 225, + [226] = 225, + [227] = 221, + [228] = 218, + [229] = 222, + [230] = 230, + [231] = 221, + [232] = 222, + [233] = 221, + [234] = 234, + [235] = 221, + [236] = 225, + [237] = 218, + [238] = 221, + [239] = 221, + [240] = 240, + [241] = 240, + [242] = 240, + [243] = 243, + [244] = 244, + [245] = 240, + [246] = 246, + [247] = 247, + [248] = 248, + [249] = 249, + [250] = 243, + [251] = 251, + [252] = 240, + [253] = 243, + [254] = 244, + [255] = 244, + [256] = 244, + [257] = 248, + [258] = 244, + [259] = 248, + [260] = 243, + [261] = 243, + [262] = 240, + [263] = 244, + [264] = 244, + [265] = 243, + [266] = 266, + [267] = 243, + [268] = 240, + [269] = 266, + [270] = 270, + [271] = 271, + [272] = 272, + [273] = 273, + [274] = 274, + [275] = 275, + [276] = 276, + [277] = 277, + [278] = 278, + [279] = 270, + [280] = 276, + [281] = 281, + [282] = 234, + [283] = 283, + [284] = 230, + [285] = 285, + [286] = 276, + [287] = 287, + [288] = 276, + [289] = 276, + [290] = 278, + [291] = 291, + [292] = 292, + [293] = 271, + [294] = 294, + [295] = 295, + [296] = 274, + [297] = 297, + [298] = 298, + [299] = 276, + [300] = 300, + [301] = 301, + [302] = 283, + [303] = 303, + [304] = 304, + [305] = 294, + [306] = 281, + [307] = 307, + [308] = 308, + [309] = 309, + [310] = 272, + [311] = 276, + [312] = 230, + [313] = 313, + [314] = 314, + [315] = 315, + [316] = 234, + [317] = 317, + [318] = 313, + [319] = 319, + [320] = 314, + [321] = 321, + [322] = 322, + [323] = 323, + [324] = 319, + [325] = 317, + [326] = 326, + [327] = 315, + [328] = 328, + [329] = 329, + [330] = 328, + [331] = 331, + [332] = 332, + [333] = 332, + [334] = 334, + [335] = 335, + [336] = 334, + [337] = 337, + [338] = 338, + [339] = 339, + [340] = 334, + [341] = 341, + [342] = 342, + [343] = 343, + [344] = 344, + [345] = 345, + [346] = 346, + [347] = 347, + [348] = 348, + [349] = 344, + [350] = 350, + [351] = 351, + [352] = 352, + [353] = 353, + [354] = 341, + [355] = 345, + [356] = 356, + [357] = 357, + [358] = 358, + [359] = 359, + [360] = 360, + [361] = 346, + [362] = 353, + [363] = 335, + [364] = 359, + [365] = 365, + [366] = 366, + [367] = 367, + [368] = 352, + [369] = 344, + [370] = 341, + [371] = 334, + [372] = 372, + [373] = 347, + [374] = 352, + [375] = 367, + [376] = 367, + [377] = 343, + [378] = 335, + [379] = 334, + [380] = 380, + [381] = 353, + [382] = 382, + [383] = 342, + [384] = 346, + [385] = 385, + [386] = 345, + [387] = 335, + [388] = 345, + [389] = 389, + [390] = 341, + [391] = 335, + [392] = 353, + [393] = 341, + [394] = 394, + [395] = 380, + [396] = 380, + [397] = 334, + [398] = 398, + [399] = 346, + [400] = 352, + [401] = 344, + [402] = 341, + [403] = 367, + [404] = 367, + [405] = 385, + [406] = 356, + [407] = 338, + [408] = 346, + [409] = 394, + [410] = 353, + [411] = 359, + [412] = 412, + [413] = 346, + [414] = 353, + [415] = 344, + [416] = 335, + [417] = 417, + [418] = 344, + [419] = 385, + [420] = 420, + [421] = 367, + [422] = 345, + [423] = 423, + [424] = 424, + [425] = 366, + [426] = 352, + [427] = 352, + [428] = 428, + [429] = 429, + [430] = 345, + [431] = 344, + [432] = 345, + [433] = 341, + [434] = 389, + [435] = 346, + [436] = 352, + [437] = 437, + [438] = 353, + [439] = 334, + [440] = 367, + [441] = 335, + [442] = 423, + [443] = 337, + [444] = 358, + [445] = 412, + [446] = 417, + [447] = 420, + [448] = 424, + [449] = 449, + [450] = 449, + [451] = 451, + [452] = 452, + [453] = 453, + [454] = 454, + [455] = 455, + [456] = 456, + [457] = 457, + [458] = 454, + [459] = 455, + [460] = 460, + [461] = 461, + [462] = 462, + [463] = 461, + [464] = 462, + [465] = 457, + [466] = 451, + [467] = 453, + [468] = 452, + [469] = 460, + [470] = 456, + [471] = 471, + [472] = 472, + [473] = 471, + [474] = 471, + [475] = 472, + [476] = 476, + [477] = 477, + [478] = 478, + [479] = 479, + [480] = 480, + [481] = 481, + [482] = 482, + [483] = 483, + [484] = 480, + [485] = 485, + [486] = 477, + [487] = 483, + [488] = 476, + [489] = 481, + [490] = 482, + [491] = 491, + [492] = 479, + [493] = 493, + [494] = 494, + [495] = 478, + [496] = 485, + [497] = 497, + [498] = 498, + [499] = 497, + [500] = 491, + [501] = 493, + [502] = 494, + [503] = 498, + [504] = 504, + [505] = 505, + [506] = 506, + [507] = 507, + [508] = 508, + [509] = 509, + [510] = 504, + [511] = 511, + [512] = 505, + [513] = 513, + [514] = 514, + [515] = 508, + [516] = 507, + [517] = 506, + [518] = 513, + [519] = 509, + [520] = 514, + [521] = 511, + [522] = 522, + [523] = 523, + [524] = 524, + [525] = 525, + [526] = 524, + [527] = 527, + [528] = 527, + [529] = 525, + [530] = 530, + [531] = 531, + [532] = 532, + [533] = 533, + [534] = 534, + [535] = 535, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 540, + [541] = 541, + [542] = 542, + [543] = 523, + [544] = 544, + [545] = 545, + [546] = 546, + [547] = 547, + [548] = 548, + [549] = 549, + [550] = 550, + [551] = 551, + [552] = 552, + [553] = 553, + [554] = 554, + [555] = 544, + [556] = 530, + [557] = 557, + [558] = 558, + [559] = 559, + [560] = 522, + [561] = 561, + [562] = 559, + [563] = 558, + [564] = 536, + [565] = 557, + [566] = 554, + [567] = 549, + [568] = 547, + [569] = 569, + [570] = 539, + [571] = 533, + [572] = 532, + [573] = 531, + [574] = 553, + [575] = 551, + [576] = 569, + [577] = 550, + [578] = 548, + [579] = 546, + [580] = 545, + [581] = 561, + [582] = 542, + [583] = 540, + [584] = 538, + [585] = 537, + [586] = 535, + [587] = 534, + [588] = 552, + [589] = 541, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 593, + [594] = 594, + [595] = 595, + [596] = 596, + [597] = 597, + [598] = 597, + [599] = 596, + [600] = 600, + [601] = 595, + [602] = 602, + [603] = 603, + [604] = 604, + [605] = 605, + [606] = 606, + [607] = 607, + [608] = 594, + [609] = 609, + [610] = 610, + [611] = 593, + [612] = 603, + [613] = 613, + [614] = 614, + [615] = 615, + [616] = 616, + [617] = 617, + [618] = 618, + [619] = 619, + [620] = 620, + [621] = 614, + [622] = 604, + [623] = 605, + [624] = 624, + [625] = 613, + [626] = 609, + [627] = 607, + [628] = 606, + [629] = 610, + [630] = 602, + [631] = 620, + [632] = 619, + [633] = 618, + [634] = 617, + [635] = 600, + [636] = 624, + [637] = 616, + [638] = 615, + [639] = 592, + [640] = 590, + [641] = 591, + [642] = 642, + [643] = 643, + [644] = 644, + [645] = 645, + [646] = 646, + [647] = 645, + [648] = 645, + [649] = 649, + [650] = 644, + [651] = 651, + [652] = 652, + [653] = 649, + [654] = 651, + [655] = 644, + [656] = 646, + [657] = 645, + [658] = 658, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 662, + [663] = 595, + [664] = 658, + [665] = 665, + [666] = 666, + [667] = 666, + [668] = 665, + [669] = 643, + [670] = 665, + [671] = 658, + [672] = 660, + [673] = 642, + [674] = 659, + [675] = 643, + [676] = 646, + [677] = 649, + [678] = 651, + [679] = 644, + [680] = 645, + [681] = 659, + [682] = 642, + [683] = 658, + [684] = 684, + [685] = 646, + [686] = 649, + [687] = 651, + [688] = 660, + [689] = 642, + [690] = 649, + [691] = 646, + [692] = 692, + [693] = 665, + [694] = 643, + [695] = 659, + [696] = 643, + [697] = 642, + [698] = 661, + [699] = 662, + [700] = 659, + [701] = 595, + [702] = 644, + [703] = 643, + [704] = 665, + [705] = 659, + [706] = 643, + [707] = 646, + [708] = 708, + [709] = 709, + [710] = 710, + [711] = 711, + [712] = 665, + [713] = 713, + [714] = 658, + [715] = 715, + [716] = 716, + [717] = 717, + [718] = 710, + [719] = 649, + [720] = 717, + [721] = 716, + [722] = 665, + [723] = 715, + [724] = 651, + [725] = 658, + [726] = 713, + [727] = 644, + [728] = 711, + [729] = 642, + [730] = 645, + [731] = 684, + [732] = 709, + [733] = 708, + [734] = 652, + [735] = 645, + [736] = 658, + [737] = 644, + [738] = 651, + [739] = 649, + [740] = 646, + [741] = 595, + [742] = 651, + [743] = 642, + [744] = 659, + [745] = 745, + [746] = 412, + [747] = 747, + [748] = 417, + [749] = 420, + [750] = 750, + [751] = 751, + [752] = 709, + [753] = 708, + [754] = 754, + [755] = 711, + [756] = 756, + [757] = 713, + [758] = 758, + [759] = 759, + [760] = 715, + [761] = 424, + [762] = 716, + [763] = 661, + [764] = 662, + [765] = 765, + [766] = 423, + [767] = 337, + [768] = 768, + [769] = 595, + [770] = 717, + [771] = 710, + [772] = 358, + [773] = 684, + [774] = 774, + [775] = 775, + [776] = 776, + [777] = 777, + [778] = 778, + [779] = 779, + [780] = 412, + [781] = 745, + [782] = 710, + [783] = 783, + [784] = 784, + [785] = 684, + [786] = 768, + [787] = 337, + [788] = 788, + [789] = 661, + [790] = 765, + [791] = 662, + [792] = 750, + [793] = 788, + [794] = 783, + [795] = 775, + [796] = 796, + [797] = 652, + [798] = 798, + [799] = 799, + [800] = 779, + [801] = 801, + [802] = 802, + [803] = 777, + [804] = 778, + [805] = 323, + [806] = 774, + [807] = 358, + [808] = 808, + [809] = 808, + [810] = 595, + [811] = 784, + [812] = 751, + [813] = 747, + [814] = 798, + [815] = 759, + [816] = 776, + [817] = 758, + [818] = 417, + [819] = 708, + [820] = 709, + [821] = 821, + [822] = 711, + [823] = 420, + [824] = 708, + [825] = 754, + [826] = 826, + [827] = 827, + [828] = 662, + [829] = 709, + [830] = 661, + [831] = 652, + [832] = 756, + [833] = 713, + [834] = 322, + [835] = 711, + [836] = 715, + [837] = 713, + [838] = 424, + [839] = 796, + [840] = 716, + [841] = 717, + [842] = 710, + [843] = 652, + [844] = 684, + [845] = 715, + [846] = 716, + [847] = 717, + [848] = 423, + [849] = 799, + [850] = 827, + [851] = 802, + [852] = 801, + [853] = 398, + [854] = 788, + [855] = 768, + [856] = 759, + [857] = 357, + [858] = 858, + [859] = 339, + [860] = 860, + [861] = 765, + [862] = 799, + [863] = 801, + [864] = 750, + [865] = 788, + [866] = 775, + [867] = 827, + [868] = 428, + [869] = 783, + [870] = 758, + [871] = 871, + [872] = 652, + [873] = 661, + [874] = 662, + [875] = 796, + [876] = 802, + [877] = 784, + [878] = 423, + [879] = 808, + [880] = 424, + [881] = 756, + [882] = 754, + [883] = 420, + [884] = 778, + [885] = 776, + [886] = 417, + [887] = 423, + [888] = 424, + [889] = 412, + [890] = 684, + [891] = 827, + [892] = 775, + [893] = 798, + [894] = 747, + [895] = 750, + [896] = 765, + [897] = 751, + [898] = 796, + [899] = 745, + [900] = 358, + [901] = 774, + [902] = 777, + [903] = 756, + [904] = 710, + [905] = 717, + [906] = 716, + [907] = 768, + [908] = 715, + [909] = 779, + [910] = 420, + [911] = 417, + [912] = 412, + [913] = 779, + [914] = 745, + [915] = 713, + [916] = 783, + [917] = 711, + [918] = 754, + [919] = 709, + [920] = 708, + [921] = 759, + [922] = 758, + [923] = 801, + [924] = 784, + [925] = 788, + [926] = 777, + [927] = 783, + [928] = 745, + [929] = 779, + [930] = 337, + [931] = 684, + [932] = 777, + [933] = 774, + [934] = 358, + [935] = 708, + [936] = 709, + [937] = 751, + [938] = 711, + [939] = 747, + [940] = 798, + [941] = 768, + [942] = 337, + [943] = 798, + [944] = 754, + [945] = 756, + [946] = 799, + [947] = 747, + [948] = 799, + [949] = 357, + [950] = 765, + [951] = 750, + [952] = 398, + [953] = 827, + [954] = 428, + [955] = 713, + [956] = 802, + [957] = 751, + [958] = 775, + [959] = 774, + [960] = 758, + [961] = 759, + [962] = 339, + [963] = 776, + [964] = 778, + [965] = 802, + [966] = 801, + [967] = 715, + [968] = 652, + [969] = 716, + [970] = 661, + [971] = 662, + [972] = 776, + [973] = 778, + [974] = 808, + [975] = 796, + [976] = 808, + [977] = 784, + [978] = 710, + [979] = 717, + [980] = 754, + [981] = 981, + [982] = 827, + [983] = 802, + [984] = 796, + [985] = 788, + [986] = 801, + [987] = 784, + [988] = 808, + [989] = 778, + [990] = 783, + [991] = 776, + [992] = 745, + [993] = 779, + [994] = 799, + [995] = 759, + [996] = 758, + [997] = 774, + [998] = 768, + [999] = 775, + [1000] = 750, + [1001] = 765, + [1002] = 337, + [1003] = 768, + [1004] = 776, + [1005] = 1005, + [1006] = 423, + [1007] = 759, + [1008] = 778, + [1009] = 323, + [1010] = 751, + [1011] = 747, + [1012] = 798, + [1013] = 788, + [1014] = 783, + [1015] = 745, + [1016] = 779, + [1017] = 777, + [1018] = 784, + [1019] = 799, + [1020] = 777, + [1021] = 358, + [1022] = 756, + [1023] = 751, + [1024] = 747, + [1025] = 798, + [1026] = 412, + [1027] = 417, + [1028] = 420, + [1029] = 322, + [1030] = 758, + [1031] = 775, + [1032] = 827, + [1033] = 981, + [1034] = 808, + [1035] = 754, + [1036] = 774, + [1037] = 765, + [1038] = 756, + [1039] = 796, + [1040] = 424, + [1041] = 801, + [1042] = 750, + [1043] = 802, + [1044] = 339, + [1045] = 821, + [1046] = 826, + [1047] = 826, + [1048] = 821, + [1049] = 428, + [1050] = 398, + [1051] = 357, + [1052] = 1052, + [1053] = 1053, + [1054] = 1054, + [1055] = 1055, + [1056] = 1055, + [1057] = 1052, + [1058] = 821, + [1059] = 826, + [1060] = 871, + [1061] = 339, + [1062] = 1062, + [1063] = 339, + [1064] = 428, + [1065] = 871, + [1066] = 1052, + [1067] = 1067, + [1068] = 1052, + [1069] = 1055, + [1070] = 398, + [1071] = 357, + [1072] = 357, + [1073] = 1073, + [1074] = 1055, + [1075] = 1055, + [1076] = 398, + [1077] = 1053, + [1078] = 428, + [1079] = 1052, + [1080] = 1054, + [1081] = 821, + [1082] = 826, + [1083] = 1083, + [1084] = 1084, + [1085] = 1085, + [1086] = 1052, + [1087] = 1083, + [1088] = 1052, + [1089] = 1083, + [1090] = 1085, + [1091] = 1091, + [1092] = 1092, + [1093] = 1093, + [1094] = 1094, + [1095] = 1083, + [1096] = 1093, + [1097] = 1093, + [1098] = 1083, + [1099] = 1099, + [1100] = 1055, + [1101] = 1055, + [1102] = 1083, + [1103] = 1083, + [1104] = 1104, + [1105] = 1105, + [1106] = 1106, + [1107] = 1107, + [1108] = 1105, + [1109] = 1106, + [1110] = 1110, + [1111] = 1110, + [1112] = 1112, + [1113] = 1112, + [1114] = 1112, + [1115] = 1112, + [1116] = 1112, + [1117] = 1112, + [1118] = 1112, + [1119] = 1119, + [1120] = 1119, + [1121] = 1119, + [1122] = 1119, + [1123] = 1119, + [1124] = 1119, + [1125] = 1119, + [1126] = 1126, + [1127] = 1126, + [1128] = 1126, + [1129] = 1126, + [1130] = 1130, + [1131] = 1126, + [1132] = 1126, + [1133] = 1133, + [1134] = 1133, + [1135] = 1133, + [1136] = 1133, + [1137] = 1126, + [1138] = 1133, + [1139] = 1133, + [1140] = 1133, + [1141] = 1141, + [1142] = 1142, + [1143] = 1143, + [1144] = 1143, + [1145] = 1145, + [1146] = 1146, + [1147] = 1147, + [1148] = 1148, + [1149] = 1147, + [1150] = 1150, + [1151] = 1151, + [1152] = 1152, + [1153] = 1153, + [1154] = 1154, + [1155] = 1150, + [1156] = 1151, + [1157] = 1154, + [1158] = 1145, + [1159] = 1153, + [1160] = 1152, + [1161] = 1142, + [1162] = 1148, + [1163] = 1163, + [1164] = 1154, + [1165] = 1165, + [1166] = 1153, + [1167] = 1152, + [1168] = 1147, + [1169] = 1154, + [1170] = 1165, + [1171] = 1150, + [1172] = 1172, + [1173] = 1173, + [1174] = 1143, + [1175] = 1151, + [1176] = 1176, + [1177] = 1150, + [1178] = 1165, + [1179] = 1147, + [1180] = 1154, + [1181] = 1153, + [1182] = 1182, + [1183] = 1183, + [1184] = 1142, + [1185] = 1152, + [1186] = 1186, + [1187] = 1187, + [1188] = 1148, + [1189] = 1145, + [1190] = 1190, + [1191] = 1148, + [1192] = 1192, + [1193] = 1151, + [1194] = 1145, + [1195] = 1165, + [1196] = 1165, + [1197] = 1197, + [1198] = 1198, + [1199] = 1173, + [1200] = 1148, + [1201] = 1152, + [1202] = 1153, + [1203] = 1198, + [1204] = 1147, + [1205] = 1150, + [1206] = 1165, + [1207] = 1186, + [1208] = 1192, + [1209] = 1143, + [1210] = 1142, + [1211] = 1145, + [1212] = 1143, + [1213] = 1142, + [1214] = 1151, + [1215] = 1165, + [1216] = 1146, + [1217] = 1217, + [1218] = 1218, + [1219] = 1219, + [1220] = 1153, + [1221] = 1221, + [1222] = 1221, + [1223] = 1148, + [1224] = 1224, + [1225] = 1225, + [1226] = 1226, + [1227] = 1152, + [1228] = 1153, + [1229] = 1154, + [1230] = 1150, + [1231] = 1231, + [1232] = 1154, + [1233] = 1221, + [1234] = 1234, + [1235] = 1231, + [1236] = 1145, + [1237] = 1142, + [1238] = 1238, + [1239] = 1231, + [1240] = 1240, + [1241] = 1241, + [1242] = 1242, + [1243] = 1150, + [1244] = 1145, + [1245] = 1221, + [1246] = 1147, + [1247] = 1247, + [1248] = 1248, + [1249] = 1249, + [1250] = 1249, + [1251] = 1231, + [1252] = 1252, + [1253] = 1253, + [1254] = 1142, + [1255] = 1241, + [1256] = 1218, + [1257] = 1249, + [1258] = 1221, + [1259] = 1226, + [1260] = 1151, + [1261] = 1148, + [1262] = 1218, + [1263] = 1147, + [1264] = 1143, + [1265] = 1221, + [1266] = 1218, + [1267] = 1152, + [1268] = 1268, + [1269] = 1269, + [1270] = 1218, + [1271] = 1231, + [1272] = 1272, + [1273] = 1218, + [1274] = 1217, + [1275] = 1143, + [1276] = 1248, + [1277] = 1151, + [1278] = 1269, + [1279] = 1218, + [1280] = 1231, + [1281] = 1224, + [1282] = 1231, + [1283] = 1268, + [1284] = 1221, + [1285] = 1285, + [1286] = 1286, + [1287] = 1287, + [1288] = 1288, + [1289] = 1289, + [1290] = 1290, + [1291] = 1291, + [1292] = 1292, + [1293] = 1293, + [1294] = 1293, + [1295] = 1295, + [1296] = 1296, + [1297] = 1293, + [1298] = 1289, + [1299] = 1299, + [1300] = 1300, + [1301] = 1301, + [1302] = 1302, + [1303] = 1303, + [1304] = 1304, + [1305] = 1304, + [1306] = 1287, + [1307] = 1307, + [1308] = 1291, + [1309] = 1309, + [1310] = 1296, + [1311] = 1290, + [1312] = 1146, + [1313] = 1313, + [1314] = 1314, + [1315] = 1302, + [1316] = 1316, + [1317] = 1314, + [1318] = 1316, + [1319] = 1301, + [1320] = 1287, + [1321] = 1295, + [1322] = 1322, + [1323] = 1197, + [1324] = 1324, + [1325] = 1325, + [1326] = 1326, + [1327] = 1327, + [1328] = 1241, + [1329] = 1329, + [1330] = 1330, + [1331] = 1331, + [1332] = 1332, + [1333] = 1333, + [1334] = 1334, + [1335] = 1335, + [1336] = 1336, + [1337] = 1325, + [1338] = 1336, + [1339] = 1325, + [1340] = 1325, + [1341] = 1335, + [1342] = 1329, + [1343] = 1326, + [1344] = 1325, + [1345] = 1325, + [1346] = 1327, + [1347] = 1347, + [1348] = 1330, + [1349] = 1331, + [1350] = 1332, + [1351] = 1351, + [1352] = 1352, + [1353] = 1325, + [1354] = 1354, + [1355] = 1334, + [1356] = 1356, + [1357] = 1357, + [1358] = 1358, + [1359] = 1359, + [1360] = 1360, + [1361] = 1361, + [1362] = 1307, + [1363] = 1363, + [1364] = 1364, + [1365] = 1365, + [1366] = 1366, + [1367] = 1367, + [1368] = 1313, + [1369] = 1369, + [1370] = 1370, + [1371] = 1371, + [1372] = 1372, + [1373] = 1373, + [1374] = 1374, + [1375] = 1375, + [1376] = 1376, + [1377] = 1375, + [1378] = 1378, + [1379] = 1379, + [1380] = 1380, + [1381] = 1381, + [1382] = 1382, + [1383] = 1383, + [1384] = 1384, + [1385] = 1313, + [1386] = 1067, + [1387] = 1387, + [1388] = 1307, + [1389] = 1389, + [1390] = 1380, + [1391] = 1391, + [1392] = 1392, + [1393] = 1393, + [1394] = 1394, + [1395] = 1391, + [1396] = 1389, + [1397] = 1397, + [1398] = 1394, + [1399] = 1387, + [1400] = 1379, + [1401] = 1401, + [1402] = 1382, + [1403] = 1384, + [1404] = 1404, + [1405] = 1378, + [1406] = 1406, + [1407] = 1381, + [1408] = 1408, + [1409] = 1379, + [1410] = 1410, + [1411] = 1411, + [1412] = 1412, + [1413] = 1413, + [1414] = 1414, + [1415] = 1415, + [1416] = 1406, + [1417] = 1417, + [1418] = 1418, + [1419] = 1374, + [1420] = 1420, + [1421] = 1418, + [1422] = 1417, + [1423] = 1369, + [1424] = 1393, + [1425] = 1415, + [1426] = 1412, + [1427] = 1427, + [1428] = 1392, + [1429] = 1429, + [1430] = 1380, + [1431] = 1414, + [1432] = 1432, + [1433] = 1413, + [1434] = 1371, + [1435] = 1376, + [1436] = 1413, + [1437] = 1379, + [1438] = 1414, + [1439] = 1387, + [1440] = 1440, + [1441] = 1417, + [1442] = 1389, + [1443] = 1067, + [1444] = 1387, + [1445] = 1418, + [1446] = 1412, + [1447] = 1415, + [1448] = 1369, + [1449] = 1369, + [1450] = 1418, + [1451] = 1415, + [1452] = 1379, + [1453] = 1364, + [1454] = 1417, + [1455] = 1455, + [1456] = 1414, + [1457] = 1413, + [1458] = 1414, + [1459] = 1413, + [1460] = 1379, + [1461] = 1417, + [1462] = 1462, + [1463] = 1410, + [1464] = 1418, + [1465] = 1404, + [1466] = 1369, + [1467] = 1413, + [1468] = 1415, + [1469] = 1412, + [1470] = 1381, + [1471] = 1471, + [1472] = 1387, + [1473] = 1406, + [1474] = 1412, + [1475] = 1378, + [1476] = 1418, + [1477] = 1387, + [1478] = 1414, + [1479] = 1417, + [1480] = 1480, + [1481] = 1401, + [1482] = 1369, + [1483] = 1383, + [1484] = 1412, + [1485] = 1415, + [1486] = 1415, + [1487] = 1369, + [1488] = 1488, + [1489] = 1418, + [1490] = 1387, + [1491] = 1417, + [1492] = 1492, + [1493] = 1414, + [1494] = 1413, + [1495] = 1412, + [1496] = 1379, + [1497] = 1497, + [1498] = 1498, + [1499] = 1499, + [1500] = 1500, + [1501] = 1501, + [1502] = 1502, + [1503] = 1099, + [1504] = 1504, + [1505] = 1505, + [1506] = 1506, + [1507] = 1507, + [1508] = 1498, + [1509] = 1094, + [1510] = 1510, + [1511] = 1511, + [1512] = 1084, + [1513] = 1092, + [1514] = 1514, + [1515] = 1515, + [1516] = 1516, + [1517] = 1517, + [1518] = 1518, + [1519] = 1519, + [1520] = 1520, + [1521] = 1517, + [1522] = 1516, + [1523] = 1514, + [1524] = 1520, + [1525] = 1092, + [1526] = 1526, + [1527] = 1497, + [1528] = 1526, + [1529] = 1529, + [1530] = 1408, + [1531] = 1531, + [1532] = 1084, + [1533] = 1533, + [1534] = 1094, + [1535] = 1535, + [1536] = 1536, + [1537] = 1537, + [1538] = 1519, + [1539] = 1539, + [1540] = 1529, + [1541] = 1516, + [1542] = 1542, + [1543] = 1517, + [1544] = 1544, + [1545] = 1539, + [1546] = 1514, + [1547] = 1518, + [1548] = 1507, + [1549] = 1535, + [1550] = 1099, + [1551] = 1551, + [1552] = 1552, + [1553] = 1553, + [1554] = 1554, + [1555] = 1555, + [1556] = 1556, + [1557] = 1557, + [1558] = 1551, + [1559] = 1551, + [1560] = 1560, + [1561] = 1561, + [1562] = 1556, + [1563] = 1555, + [1564] = 1557, + [1565] = 1565, + [1566] = 1566, + [1567] = 1567, + [1568] = 1568, + [1569] = 1569, + [1570] = 1570, + [1571] = 1571, + [1572] = 1572, + [1573] = 1573, + [1574] = 1574, + [1575] = 1575, + [1576] = 1576, + [1577] = 1577, + [1578] = 1561, + [1579] = 1579, + [1580] = 1568, + [1581] = 1561, + [1582] = 1575, + [1583] = 1568, + [1584] = 1584, + [1585] = 1567, + [1586] = 1577, + [1587] = 1566, + [1588] = 1557, + [1589] = 1589, + [1590] = 1555, + [1591] = 1556, + [1592] = 1574, + [1593] = 1551, + [1594] = 1594, + [1595] = 1595, + [1596] = 1574, + [1597] = 1555, + [1598] = 1566, + [1599] = 1599, + [1600] = 1600, + [1601] = 1601, + [1602] = 1551, + [1603] = 1577, + [1604] = 1604, + [1605] = 1551, + [1606] = 1567, + [1607] = 1556, + [1608] = 1584, + [1609] = 1609, + [1610] = 1555, + [1611] = 1556, + [1612] = 1555, + [1613] = 1579, + [1614] = 1557, + [1615] = 1615, + [1616] = 1557, + [1617] = 1575, + [1618] = 1595, + [1619] = 1568, + [1620] = 1577, + [1621] = 1621, + [1622] = 1557, + [1623] = 1566, + [1624] = 1624, + [1625] = 1625, + [1626] = 1569, + [1627] = 1604, + [1628] = 1609, + [1629] = 1574, + [1630] = 1630, + [1631] = 1567, + [1632] = 1632, + [1633] = 1584, + [1634] = 1634, + [1635] = 1621, + [1636] = 1568, + [1637] = 1557, + [1638] = 1625, + [1639] = 1575, + [1640] = 1560, + [1641] = 1641, + [1642] = 1576, + [1643] = 1643, + [1644] = 1570, + [1645] = 1571, + [1646] = 1572, + [1647] = 1573, + [1648] = 1574, + [1649] = 1575, + [1650] = 1632, + [1651] = 1561, + [1652] = 1577, + [1653] = 1561, + [1654] = 1634, + [1655] = 1568, + [1656] = 1569, + [1657] = 1657, + [1658] = 1561, + [1659] = 1599, + [1660] = 1575, + [1661] = 1577, + [1662] = 1584, + [1663] = 1577, + [1664] = 1630, + [1665] = 1624, + [1666] = 1599, + [1667] = 1568, + [1668] = 1561, + [1669] = 1574, + [1670] = 1670, + [1671] = 1575, + [1672] = 1584, + [1673] = 1567, + [1674] = 1566, + [1675] = 1584, + [1676] = 1574, + [1677] = 1567, + [1678] = 1566, + [1679] = 1679, + [1680] = 1555, + [1681] = 1567, + [1682] = 1682, + [1683] = 1566, + [1684] = 1682, + [1685] = 1600, + [1686] = 1556, + [1687] = 1589, + [1688] = 1670, + [1689] = 1551, + [1690] = 1594, + [1691] = 1601, + [1692] = 1584, + [1693] = 1556, +}; + +static inline bool sym_identifier_character_set_1(int32_t c) { + return (c < 43646 + ? (c < 4213 + ? (c < 2738 + ? (c < 2036 + ? (c < 931 + ? (c < 748 + ? (c < 192 + ? (c < 170 + ? (c < 'a' + ? (c >= 'A' && c <= '_') + : c <= 'z') + : (c <= 170 || (c < 186 + ? c == 181 + : c <= 186))) + : (c <= 214 || (c < 710 + ? (c < 248 + ? (c >= 216 && c <= 246) + : c <= 705) + : (c <= 721 || (c >= 736 && c <= 740))))) + : (c <= 748 || (c < 895 + ? (c < 886 + ? (c < 880 + ? c == 750 + : c <= 884) + : (c <= 887 || (c >= 891 && c <= 893))) + : (c <= 895 || (c < 908 + ? (c < 904 + ? c == 902 + : c <= 906) + : (c <= 908 || (c >= 910 && c <= 929))))))) + : (c <= 1013 || (c < 1749 + ? (c < 1488 + ? (c < 1329 + ? (c < 1162 + ? (c >= 1015 && c <= 1153) + : c <= 1327) + : (c <= 1366 || (c < 1376 + ? c == 1369 + : c <= 1416))) + : (c <= 1514 || (c < 1646 + ? (c < 1568 + ? (c >= 1519 && c <= 1522) + : c <= 1610) + : (c <= 1647 || (c >= 1649 && c <= 1747))))) + : (c <= 1749 || (c < 1808 + ? (c < 1786 + ? (c < 1774 + ? (c >= 1765 && c <= 1766) + : c <= 1775) + : (c <= 1788 || c == 1791)) + : (c <= 1808 || (c < 1969 + ? (c < 1869 + ? (c >= 1810 && c <= 1839) + : c <= 1957) + : (c <= 1969 || (c >= 1994 && c <= 2026))))))))) + : (c <= 2037 || (c < 2486 + ? (c < 2308 + ? (c < 2112 + ? (c < 2074 + ? (c < 2048 + ? c == 2042 + : c <= 2069) + : (c <= 2074 || (c < 2088 + ? c == 2084 + : c <= 2088))) + : (c <= 2136 || (c < 2185 + ? (c < 2160 + ? (c >= 2144 && c <= 2154) + : c <= 2183) + : (c <= 2190 || (c >= 2208 && c <= 2249))))) + : (c <= 2361 || (c < 2437 + ? (c < 2392 + ? (c < 2384 + ? c == 2365 + : c <= 2384) + : (c <= 2401 || (c >= 2417 && c <= 2432))) + : (c <= 2444 || (c < 2474 + ? (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472) + : (c <= 2480 || c == 2482)))))) + : (c <= 2489 || (c < 2610 + ? (c < 2556 + ? (c < 2524 + ? (c < 2510 + ? c == 2493 + : c <= 2510) + : (c <= 2525 || (c < 2544 + ? (c >= 2527 && c <= 2529) + : c <= 2545))) + : (c <= 2556 || (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c >= 2602 && c <= 2608))))) + : (c <= 2611 || (c < 2674 + ? (c < 2649 + ? (c < 2616 + ? (c >= 2613 && c <= 2614) + : c <= 2617) + : (c <= 2652 || c == 2654)) + : (c <= 2676 || (c < 2707 + ? (c < 2703 + ? (c >= 2693 && c <= 2701) + : c <= 2705) + : (c <= 2728 || (c >= 2730 && c <= 2736))))))))))) + : (c <= 2739 || (c < 3293 + ? (c < 2972 + ? (c < 2869 + ? (c < 2821 + ? (c < 2768 + ? (c < 2749 + ? (c >= 2741 && c <= 2745) + : c <= 2749) + : (c <= 2768 || (c < 2809 + ? (c >= 2784 && c <= 2785) + : c <= 2809))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c >= 2866 && c <= 2867))))) + : (c <= 2873 || (c < 2947 + ? (c < 2911 + ? (c < 2908 + ? c == 2877 + : c <= 2909) + : (c <= 2913 || c == 2929)) + : (c <= 2947 || (c < 2962 + ? (c < 2958 + ? (c >= 2949 && c <= 2954) + : c <= 2960) + : (c <= 2965 || (c >= 2969 && c <= 2970))))))) + : (c <= 2972 || (c < 3160 + ? (c < 3077 + ? (c < 2984 + ? (c < 2979 + ? (c >= 2974 && c <= 2975) + : c <= 2980) + : (c <= 2986 || (c < 3024 + ? (c >= 2990 && c <= 3001) + : c <= 3024))) + : (c <= 3084 || (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || c == 3133)))) + : (c <= 3162 || (c < 3214 + ? (c < 3200 + ? (c < 3168 + ? c == 3165 + : c <= 3169) + : (c <= 3200 || (c >= 3205 && c <= 3212))) + : (c <= 3216 || (c < 3253 + ? (c < 3242 + ? (c >= 3218 && c <= 3240) + : c <= 3251) + : (c <= 3257 || c == 3261)))))))) + : (c <= 3294 || (c < 3718 + ? (c < 3461 + ? (c < 3389 + ? (c < 3332 + ? (c < 3313 + ? (c >= 3296 && c <= 3297) + : c <= 3314) + : (c <= 3340 || (c < 3346 + ? (c >= 3342 && c <= 3344) + : c <= 3386))) + : (c <= 3389 || (c < 3423 + ? (c < 3412 + ? c == 3406 + : c <= 3414) + : (c <= 3425 || (c >= 3450 && c <= 3455))))) + : (c <= 3478 || (c < 3585 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c >= 3520 && c <= 3526))) + : (c <= 3632 || (c < 3713 + ? (c < 3648 + ? c == 3634 + : c <= 3654) + : (c <= 3714 || c == 3716)))))) + : (c <= 3722 || (c < 3904 + ? (c < 3773 + ? (c < 3751 + ? (c < 3749 + ? (c >= 3724 && c <= 3747) + : c <= 3749) + : (c <= 3760 || c == 3762)) + : (c <= 3773 || (c < 3804 + ? (c < 3782 + ? (c >= 3776 && c <= 3780) + : c <= 3782) + : (c <= 3807 || c == 3840)))) + : (c <= 3911 || (c < 4176 + ? (c < 4096 + ? (c < 3976 + ? (c >= 3913 && c <= 3948) + : c <= 3980) + : (c <= 4138 || c == 4159)) + : (c <= 4181 || (c < 4197 + ? (c < 4193 + ? (c >= 4186 && c <= 4189) + : c <= 4193) + : (c <= 4198 || (c >= 4206 && c <= 4208))))))))))))) + : (c <= 4225 || (c < 8182 + ? (c < 6400 + ? (c < 4888 + ? (c < 4704 + ? (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? c == 4238 + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c >= 4698 && c <= 4701))))) + : (c <= 4744 || (c < 4800 + ? (c < 4786 + ? (c < 4752 + ? (c >= 4746 && c <= 4749) + : c <= 4784) + : (c <= 4789 || (c >= 4792 && c <= 4798))) + : (c <= 4800 || (c < 4824 + ? (c < 4808 + ? (c >= 4802 && c <= 4805) + : c <= 4822) + : (c <= 4880 || (c >= 4882 && c <= 4885))))))) + : (c <= 4954 || (c < 5952 + ? (c < 5761 + ? (c < 5112 + ? (c < 5024 + ? (c >= 4992 && c <= 5007) + : c <= 5109) + : (c <= 5117 || (c < 5743 + ? (c >= 5121 && c <= 5740) + : c <= 5759))) + : (c <= 5786 || (c < 5888 + ? (c < 5870 + ? (c >= 5792 && c <= 5866) + : c <= 5880) + : (c <= 5905 || (c >= 5919 && c <= 5937))))) + : (c <= 5969 || (c < 6108 + ? (c < 6016 + ? (c < 5998 + ? (c >= 5984 && c <= 5996) + : c <= 6000) + : (c <= 6067 || c == 6103)) + : (c <= 6108 || (c < 6314 + ? (c < 6272 + ? (c >= 6176 && c <= 6264) + : c <= 6312) + : (c <= 6314 || (c >= 6320 && c <= 6389))))))))) + : (c <= 6430 || (c < 7413 + ? (c < 7086 + ? (c < 6688 + ? (c < 6528 + ? (c < 6512 + ? (c >= 6480 && c <= 6509) + : c <= 6516) + : (c <= 6571 || (c < 6656 + ? (c >= 6576 && c <= 6601) + : c <= 6678))) + : (c <= 6740 || (c < 6981 + ? (c < 6917 + ? c == 6823 + : c <= 6963) + : (c <= 6988 || (c >= 7043 && c <= 7072))))) + : (c <= 7087 || (c < 7296 + ? (c < 7245 + ? (c < 7168 + ? (c >= 7098 && c <= 7141) + : c <= 7203) + : (c <= 7247 || (c >= 7258 && c <= 7293))) + : (c <= 7304 || (c < 7401 + ? (c < 7357 + ? (c >= 7312 && c <= 7354) + : c <= 7359) + : (c <= 7404 || (c >= 7406 && c <= 7411))))))) + : (c <= 7414 || (c < 8031 + ? (c < 8008 + ? (c < 7680 + ? (c < 7424 + ? c == 7418 + : c <= 7615) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || c == 8029)))) + : (c <= 8061 || (c < 8134 + ? (c < 8126 + ? (c < 8118 + ? (c >= 8064 && c <= 8116) + : c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8160 + ? (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155) + : (c <= 8172 || (c >= 8178 && c <= 8180))))))))))) + : (c <= 8188 || (c < 12549 + ? (c < 11559 + ? (c < 8488 + ? (c < 8458 + ? (c < 8336 + ? (c < 8319 + ? c == 8305 + : c <= 8319) + : (c <= 8348 || (c < 8455 + ? c == 8450 + : c <= 8455))) + : (c <= 8467 || (c < 8484 + ? (c < 8472 + ? c == 8469 + : c <= 8477) + : (c <= 8484 || c == 8486)))) + : (c <= 8488 || (c < 8544 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || c == 8526)) + : (c <= 8584 || (c < 11506 + ? (c < 11499 + ? (c >= 11264 && c <= 11492) + : c <= 11502) + : (c <= 11507 || (c >= 11520 && c <= 11557))))))) + : (c <= 11559 || (c < 11728 + ? (c < 11688 + ? (c < 11631 + ? (c < 11568 + ? c == 11565 + : c <= 11623) + : (c <= 11631 || (c < 11680 + ? (c >= 11648 && c <= 11670) + : c <= 11686))) + : (c <= 11694 || (c < 11712 + ? (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710) + : (c <= 11718 || (c >= 11720 && c <= 11726))))) + : (c <= 11734 || (c < 12344 + ? (c < 12321 + ? (c < 12293 + ? (c >= 11736 && c <= 11742) + : c <= 12295) + : (c <= 12329 || (c >= 12337 && c <= 12341))) + : (c <= 12348 || (c < 12449 + ? (c < 12445 + ? (c >= 12353 && c <= 12438) + : c <= 12447) + : (c <= 12538 || (c >= 12540 && c <= 12543))))))))) + : (c <= 12591 || (c < 43015 + ? (c < 42623 + ? (c < 42192 + ? (c < 12784 + ? (c < 12704 + ? (c >= 12593 && c <= 12686) + : c <= 12735) + : (c <= 12799 || (c < 19968 + ? (c >= 13312 && c <= 19903) + : c <= 42124))) + : (c <= 42237 || (c < 42538 + ? (c < 42512 + ? (c >= 42240 && c <= 42508) + : c <= 42527) + : (c <= 42539 || (c >= 42560 && c <= 42606))))) + : (c <= 42653 || (c < 42960 + ? (c < 42786 + ? (c < 42775 + ? (c >= 42656 && c <= 42735) + : c <= 42783) + : (c <= 42888 || (c >= 42891 && c <= 42954))) + : (c <= 42961 || (c < 42994 + ? (c < 42965 + ? c == 42963 + : c <= 42969) + : (c <= 43009 || (c >= 43011 && c <= 43013))))))) + : (c <= 43018 || (c < 43396 + ? (c < 43259 + ? (c < 43138 + ? (c < 43072 + ? (c >= 43020 && c <= 43042) + : c <= 43123) + : (c <= 43187 || (c >= 43250 && c <= 43255))) + : (c <= 43259 || (c < 43312 + ? (c < 43274 + ? (c >= 43261 && c <= 43262) + : c <= 43301) + : (c <= 43334 || (c >= 43360 && c <= 43388))))) + : (c <= 43442 || (c < 43520 + ? (c < 43494 + ? (c < 43488 + ? c == 43471 + : c <= 43492) + : (c <= 43503 || (c >= 43514 && c <= 43518))) + : (c <= 43560 || (c < 43616 + ? (c < 43588 + ? (c >= 43584 && c <= 43586) + : c <= 43595) + : (c <= 43638 || c == 43642)))))))))))))) + : (c <= 43695 || (c < 71236 + ? (c < 67424 + ? (c < 65149 + ? (c < 64112 + ? (c < 43793 + ? (c < 43739 + ? (c < 43705 + ? (c < 43701 + ? c == 43697 + : c <= 43702) + : (c <= 43709 || (c < 43714 + ? c == 43712 + : c <= 43714))) + : (c <= 43741 || (c < 43777 + ? (c < 43762 + ? (c >= 43744 && c <= 43754) + : c <= 43764) + : (c <= 43782 || (c >= 43785 && c <= 43790))))) + : (c <= 43798 || (c < 43888 + ? (c < 43824 + ? (c < 43816 + ? (c >= 43808 && c <= 43814) + : c <= 43822) + : (c <= 43866 || (c >= 43868 && c <= 43881))) + : (c <= 44002 || (c < 55243 + ? (c < 55216 + ? (c >= 44032 && c <= 55203) + : c <= 55238) + : (c <= 55291 || (c >= 63744 && c <= 64109))))))) + : (c <= 64217 || (c < 64467 + ? (c < 64312 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64285 || (c < 64298 + ? (c >= 64287 && c <= 64296) + : c <= 64310))) + : (c <= 64316 || (c < 64323 + ? (c < 64320 + ? c == 64318 + : c <= 64321) + : (c <= 64324 || (c >= 64326 && c <= 64433))))) + : (c <= 64605 || (c < 65137 + ? (c < 64914 + ? (c < 64848 + ? (c >= 64612 && c <= 64829) + : c <= 64911) + : (c <= 64967 || (c >= 65008 && c <= 65017))) + : (c <= 65137 || (c < 65145 + ? (c < 65143 + ? c == 65139 + : c <= 65143) + : (c <= 65145 || c == 65147)))))))) + : (c <= 65149 || (c < 66349 + ? (c < 65549 + ? (c < 65474 + ? (c < 65345 + ? (c < 65313 + ? (c >= 65151 && c <= 65276) + : c <= 65338) + : (c <= 65370 || (c < 65440 + ? (c >= 65382 && c <= 65437) + : c <= 65470))) + : (c <= 65479 || (c < 65498 + ? (c < 65490 + ? (c >= 65482 && c <= 65487) + : c <= 65495) + : (c <= 65500 || (c >= 65536 && c <= 65547))))) + : (c <= 65574 || (c < 65664 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c >= 65616 && c <= 65629))) + : (c <= 65786 || (c < 66208 + ? (c < 66176 + ? (c >= 65856 && c <= 65908) + : c <= 66204) + : (c <= 66256 || (c >= 66304 && c <= 66335))))))) + : (c <= 66378 || (c < 66928 + ? (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66421) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66816 + ? (c < 66776 + ? (c >= 66736 && c <= 66771) + : c <= 66811) + : (c <= 66855 || (c >= 66864 && c <= 66915))))) + : (c <= 66938 || (c < 66979 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c >= 66967 && c <= 66977))) + : (c <= 66993 || (c < 67072 + ? (c < 67003 + ? (c >= 66995 && c <= 67001) + : c <= 67004) + : (c <= 67382 || (c >= 67392 && c <= 67413))))))))))) + : (c <= 67431 || (c < 69635 + ? (c < 68121 + ? (c < 67712 + ? (c < 67594 + ? (c < 67506 + ? (c < 67463 + ? (c >= 67456 && c <= 67461) + : c <= 67504) + : (c <= 67514 || (c < 67592 + ? (c >= 67584 && c <= 67589) + : c <= 67592))) + : (c <= 67637 || (c < 67647 + ? (c < 67644 + ? (c >= 67639 && c <= 67640) + : c <= 67644) + : (c <= 67669 || (c >= 67680 && c <= 67702))))) + : (c <= 67742 || (c < 67968 + ? (c < 67840 + ? (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829) + : (c <= 67861 || (c >= 67872 && c <= 67897))) + : (c <= 68023 || (c < 68112 + ? (c < 68096 + ? (c >= 68030 && c <= 68031) + : c <= 68096) + : (c <= 68115 || (c >= 68117 && c <= 68119))))))) + : (c <= 68149 || (c < 68800 + ? (c < 68416 + ? (c < 68288 + ? (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252) + : (c <= 68295 || (c < 68352 + ? (c >= 68297 && c <= 68324) + : c <= 68405))) + : (c <= 68437 || (c < 68608 + ? (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497) + : (c <= 68680 || (c >= 68736 && c <= 68786))))) + : (c <= 68850 || (c < 69415 + ? (c < 69296 + ? (c < 69248 + ? (c >= 68864 && c <= 68899) + : c <= 69289) + : (c <= 69297 || (c >= 69376 && c <= 69404))) + : (c <= 69415 || (c < 69552 + ? (c < 69488 + ? (c >= 69424 && c <= 69445) + : c <= 69505) + : (c <= 69572 || (c >= 69600 && c <= 69622))))))))) + : (c <= 69687 || (c < 70303 + ? (c < 70081 + ? (c < 69956 + ? (c < 69763 + ? (c < 69749 + ? (c >= 69745 && c <= 69746) + : c <= 69749) + : (c <= 69807 || (c < 69891 + ? (c >= 69840 && c <= 69864) + : c <= 69926))) + : (c <= 69956 || (c < 70006 + ? (c < 69968 + ? c == 69959 + : c <= 70002) + : (c <= 70006 || (c >= 70019 && c <= 70066))))) + : (c <= 70084 || (c < 70207 + ? (c < 70144 + ? (c < 70108 + ? c == 70106 + : c <= 70108) + : (c <= 70161 || (c >= 70163 && c <= 70187))) + : (c <= 70208 || (c < 70282 + ? (c < 70280 + ? (c >= 70272 && c <= 70278) + : c <= 70280) + : (c <= 70285 || (c >= 70287 && c <= 70301))))))) + : (c <= 70312 || (c < 70493 + ? (c < 70442 + ? (c < 70415 + ? (c < 70405 + ? (c >= 70320 && c <= 70366) + : c <= 70412) + : (c <= 70416 || (c >= 70419 && c <= 70440))) + : (c <= 70448 || (c < 70461 + ? (c < 70453 + ? (c >= 70450 && c <= 70451) + : c <= 70457) + : (c <= 70461 || c == 70480)))) + : (c <= 70497 || (c < 70852 + ? (c < 70751 + ? (c < 70727 + ? (c >= 70656 && c <= 70708) + : c <= 70730) + : (c <= 70753 || (c >= 70784 && c <= 70831))) + : (c <= 70853 || (c < 71128 + ? (c < 71040 + ? c == 70855 + : c <= 71086) + : (c <= 71131 || (c >= 71168 && c <= 71215))))))))))))) + : (c <= 71236 || (c < 119973 + ? (c < 73728 + ? (c < 72272 + ? (c < 71960 + ? (c < 71840 + ? (c < 71424 + ? (c < 71352 + ? (c >= 71296 && c <= 71338) + : c <= 71352) + : (c <= 71450 || (c < 71680 + ? (c >= 71488 && c <= 71494) + : c <= 71723))) + : (c <= 71903 || (c < 71948 + ? (c < 71945 + ? (c >= 71935 && c <= 71942) + : c <= 71945) + : (c <= 71955 || (c >= 71957 && c <= 71958))))) + : (c <= 71983 || (c < 72161 + ? (c < 72096 + ? (c < 72001 + ? c == 71999 + : c <= 72001) + : (c <= 72103 || (c >= 72106 && c <= 72144))) + : (c <= 72161 || (c < 72203 + ? (c < 72192 + ? c == 72163 + : c <= 72192) + : (c <= 72242 || c == 72250)))))) + : (c <= 72272 || (c < 73030 + ? (c < 72768 + ? (c < 72368 + ? (c < 72349 + ? (c >= 72284 && c <= 72329) + : c <= 72349) + : (c <= 72440 || (c < 72714 + ? (c >= 72704 && c <= 72712) + : c <= 72750))) + : (c <= 72768 || (c < 72968 + ? (c < 72960 + ? (c >= 72818 && c <= 72847) + : c <= 72966) + : (c <= 72969 || (c >= 72971 && c <= 73008))))) + : (c <= 73030 || (c < 73440 + ? (c < 73066 + ? (c < 73063 + ? (c >= 73056 && c <= 73061) + : c <= 73064) + : (c <= 73097 || c == 73112)) + : (c <= 73458 || (c < 73490 + ? (c < 73476 + ? c == 73474 + : c <= 73488) + : (c <= 73523 || c == 73648)))))))) + : (c <= 74649 || (c < 94208 + ? (c < 92928 + ? (c < 82944 + ? (c < 77712 + ? (c < 74880 + ? (c >= 74752 && c <= 74862) + : c <= 75075) + : (c <= 77808 || (c < 78913 + ? (c >= 77824 && c <= 78895) + : c <= 78918))) + : (c <= 83526 || (c < 92784 + ? (c < 92736 + ? (c >= 92160 && c <= 92728) + : c <= 92766) + : (c <= 92862 || (c >= 92880 && c <= 92909))))) + : (c <= 92975 || (c < 93952 + ? (c < 93053 + ? (c < 93027 + ? (c >= 92992 && c <= 92995) + : c <= 93047) + : (c <= 93071 || (c >= 93760 && c <= 93823))) + : (c <= 94026 || (c < 94176 + ? (c < 94099 + ? c == 94032 + : c <= 94111) + : (c <= 94177 || c == 94179)))))) + : (c <= 100343 || (c < 110948 + ? (c < 110589 + ? (c < 110576 + ? (c < 101632 + ? (c >= 100352 && c <= 101589) + : c <= 101640) + : (c <= 110579 || (c >= 110581 && c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_2(int32_t c) { + return (c < 43642 + ? (c < 4206 + ? (c < 2730 + ? (c < 1994 + ? (c < 910 + ? (c < 736 + ? (c < 186 + ? (c < 'a' + ? (c < '_' + ? (c >= 'A' && c <= 'Z') + : c <= '_') + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 186 || (c < 248 + ? (c < 216 + ? (c >= 192 && c <= 214) + : c <= 246) + : (c <= 705 || (c >= 710 && c <= 721))))) + : (c <= 740 || (c < 891 + ? (c < 880 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c >= 886 && c <= 887))) + : (c <= 893 || (c < 904 + ? (c < 902 + ? c == 895 + : c <= 902) + : (c <= 906 || c == 908)))))) + : (c <= 929 || (c < 1649 + ? (c < 1376 + ? (c < 1162 + ? (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153) + : (c <= 1327 || (c < 1369 + ? (c >= 1329 && c <= 1366) + : c <= 1369))) + : (c <= 1416 || (c < 1568 + ? (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522) + : (c <= 1610 || (c >= 1646 && c <= 1647))))) + : (c <= 1747 || (c < 1791 + ? (c < 1774 + ? (c < 1765 + ? c == 1749 + : c <= 1766) + : (c <= 1775 || (c >= 1786 && c <= 1788))) + : (c <= 1791 || (c < 1869 + ? (c < 1810 + ? c == 1808 + : c <= 1839) + : (c <= 1957 || c == 1969)))))))) + : (c <= 2026 || (c < 2482 + ? (c < 2208 + ? (c < 2088 + ? (c < 2048 + ? (c < 2042 + ? (c >= 2036 && c <= 2037) + : c <= 2042) + : (c <= 2069 || (c < 2084 + ? c == 2074 + : c <= 2084))) + : (c <= 2088 || (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2136) + : c <= 2154) + : (c <= 2183 || (c >= 2185 && c <= 2190))))) + : (c <= 2249 || (c < 2417 + ? (c < 2384 + ? (c < 2365 + ? (c >= 2308 && c <= 2361) + : c <= 2365) + : (c <= 2384 || (c >= 2392 && c <= 2401))) + : (c <= 2432 || (c < 2451 + ? (c < 2447 + ? (c >= 2437 && c <= 2444) + : c <= 2448) + : (c <= 2472 || (c >= 2474 && c <= 2480))))))) + : (c <= 2482 || (c < 2602 + ? (c < 2544 + ? (c < 2510 + ? (c < 2493 + ? (c >= 2486 && c <= 2489) + : c <= 2493) + : (c <= 2510 || (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2529))) + : (c <= 2545 || (c < 2575 + ? (c < 2565 + ? c == 2556 + : c <= 2570) + : (c <= 2576 || (c >= 2579 && c <= 2600))))) + : (c <= 2608 || (c < 2654 + ? (c < 2616 + ? (c < 2613 + ? (c >= 2610 && c <= 2611) + : c <= 2614) + : (c <= 2617 || (c >= 2649 && c <= 2652))) + : (c <= 2654 || (c < 2703 + ? (c < 2693 + ? (c >= 2674 && c <= 2676) + : c <= 2701) + : (c <= 2705 || (c >= 2707 && c <= 2728))))))))))) + : (c <= 2736 || (c < 3261 + ? (c < 2969 + ? (c < 2866 + ? (c < 2809 + ? (c < 2749 + ? (c < 2741 + ? (c >= 2738 && c <= 2739) + : c <= 2745) + : (c <= 2749 || (c < 2784 + ? c == 2768 + : c <= 2785))) + : (c <= 2809 || (c < 2835 + ? (c < 2831 + ? (c >= 2821 && c <= 2828) + : c <= 2832) + : (c <= 2856 || (c >= 2858 && c <= 2864))))) + : (c <= 2867 || (c < 2929 + ? (c < 2908 + ? (c < 2877 + ? (c >= 2869 && c <= 2873) + : c <= 2877) + : (c <= 2909 || (c >= 2911 && c <= 2913))) + : (c <= 2929 || (c < 2958 + ? (c < 2949 + ? c == 2947 + : c <= 2954) + : (c <= 2960 || (c >= 2962 && c <= 2965))))))) + : (c <= 2970 || (c < 3133 + ? (c < 3024 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3024 || (c < 3090 + ? (c < 3086 + ? (c >= 3077 && c <= 3084) + : c <= 3088) + : (c <= 3112 || (c >= 3114 && c <= 3129))))) + : (c <= 3133 || (c < 3205 + ? (c < 3168 + ? (c < 3165 + ? (c >= 3160 && c <= 3162) + : c <= 3165) + : (c <= 3169 || c == 3200)) + : (c <= 3212 || (c < 3242 + ? (c < 3218 + ? (c >= 3214 && c <= 3216) + : c <= 3240) + : (c <= 3251 || (c >= 3253 && c <= 3257))))))))) + : (c <= 3261 || (c < 3716 + ? (c < 3450 + ? (c < 3346 + ? (c < 3313 + ? (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3297) + : (c <= 3314 || (c < 3342 + ? (c >= 3332 && c <= 3340) + : c <= 3344))) + : (c <= 3386 || (c < 3412 + ? (c < 3406 + ? c == 3389 + : c <= 3406) + : (c <= 3414 || (c >= 3423 && c <= 3425))))) + : (c <= 3455 || (c < 3520 + ? (c < 3507 + ? (c < 3482 + ? (c >= 3461 && c <= 3478) + : c <= 3505) + : (c <= 3515 || c == 3517)) + : (c <= 3526 || (c < 3648 + ? (c < 3634 + ? (c >= 3585 && c <= 3632) + : c <= 3634) + : (c <= 3654 || (c >= 3713 && c <= 3714))))))) + : (c <= 3716 || (c < 3840 + ? (c < 3762 + ? (c < 3749 + ? (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747) + : (c <= 3749 || (c >= 3751 && c <= 3760))) + : (c <= 3762 || (c < 3782 + ? (c < 3776 + ? c == 3773 + : c <= 3780) + : (c <= 3782 || (c >= 3804 && c <= 3807))))) + : (c <= 3840 || (c < 4159 + ? (c < 3976 + ? (c < 3913 + ? (c >= 3904 && c <= 3911) + : c <= 3948) + : (c <= 3980 || (c >= 4096 && c <= 4138))) + : (c <= 4159 || (c < 4193 + ? (c < 4186 + ? (c >= 4176 && c <= 4181) + : c <= 4189) + : (c <= 4193 || (c >= 4197 && c <= 4198))))))))))))) + : (c <= 4208 || (c < 8178 + ? (c < 6320 + ? (c < 4882 + ? (c < 4698 + ? (c < 4304 + ? (c < 4256 + ? (c < 4238 + ? (c >= 4213 && c <= 4225) + : c <= 4238) + : (c <= 4293 || (c < 4301 + ? c == 4295 + : c <= 4301))) + : (c <= 4346 || (c < 4688 + ? (c < 4682 + ? (c >= 4348 && c <= 4680) + : c <= 4685) + : (c <= 4694 || c == 4696)))) + : (c <= 4701 || (c < 4792 + ? (c < 4752 + ? (c < 4746 + ? (c >= 4704 && c <= 4744) + : c <= 4749) + : (c <= 4784 || (c >= 4786 && c <= 4789))) + : (c <= 4798 || (c < 4808 + ? (c < 4802 + ? c == 4800 + : c <= 4805) + : (c <= 4822 || (c >= 4824 && c <= 4880))))))) + : (c <= 4885 || (c < 5919 + ? (c < 5743 + ? (c < 5024 + ? (c < 4992 + ? (c >= 4888 && c <= 4954) + : c <= 5007) + : (c <= 5109 || (c < 5121 + ? (c >= 5112 && c <= 5117) + : c <= 5740))) + : (c <= 5759 || (c < 5870 + ? (c < 5792 + ? (c >= 5761 && c <= 5786) + : c <= 5866) + : (c <= 5880 || (c >= 5888 && c <= 5905))))) + : (c <= 5937 || (c < 6103 + ? (c < 5998 + ? (c < 5984 + ? (c >= 5952 && c <= 5969) + : c <= 5996) + : (c <= 6000 || (c >= 6016 && c <= 6067))) + : (c <= 6103 || (c < 6272 + ? (c < 6176 + ? c == 6108 + : c <= 6264) + : (c <= 6312 || c == 6314)))))))) + : (c <= 6389 || (c < 7406 + ? (c < 7043 + ? (c < 6656 + ? (c < 6512 + ? (c < 6480 + ? (c >= 6400 && c <= 6430) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6678 || (c < 6917 + ? (c < 6823 + ? (c >= 6688 && c <= 6740) + : c <= 6823) + : (c <= 6963 || (c >= 6981 && c <= 6988))))) + : (c <= 7072 || (c < 7258 + ? (c < 7168 + ? (c < 7098 + ? (c >= 7086 && c <= 7087) + : c <= 7141) + : (c <= 7203 || (c >= 7245 && c <= 7247))) + : (c <= 7293 || (c < 7357 + ? (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354) + : (c <= 7359 || (c >= 7401 && c <= 7404))))))) + : (c <= 7411 || (c < 8029 + ? (c < 7968 + ? (c < 7424 + ? (c < 7418 + ? (c >= 7413 && c <= 7414) + : c <= 7418) + : (c <= 7615 || (c < 7960 + ? (c >= 7680 && c <= 7957) + : c <= 7965))) + : (c <= 8005 || (c < 8025 + ? (c < 8016 + ? (c >= 8008 && c <= 8013) + : c <= 8023) + : (c <= 8025 || c == 8027)))) + : (c <= 8029 || (c < 8130 + ? (c < 8118 + ? (c < 8064 + ? (c >= 8031 && c <= 8061) + : c <= 8116) + : (c <= 8124 || c == 8126)) + : (c <= 8132 || (c < 8150 + ? (c < 8144 + ? (c >= 8134 && c <= 8140) + : c <= 8147) + : (c <= 8155 || (c >= 8160 && c <= 8172))))))))))) + : (c <= 8180 || (c < 12540 + ? (c < 11520 + ? (c < 8486 + ? (c < 8455 + ? (c < 8319 + ? (c < 8305 + ? (c >= 8182 && c <= 8188) + : c <= 8305) + : (c <= 8319 || (c < 8450 + ? (c >= 8336 && c <= 8348) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || c == 8484)))) + : (c <= 8486 || (c < 8526 + ? (c < 8508 + ? (c < 8490 + ? c == 8488 + : c <= 8505) + : (c <= 8511 || (c >= 8517 && c <= 8521))) + : (c <= 8526 || (c < 11499 + ? (c < 11264 + ? (c >= 8544 && c <= 8584) + : c <= 11492) + : (c <= 11502 || (c >= 11506 && c <= 11507))))))) + : (c <= 11557 || (c < 11720 + ? (c < 11680 + ? (c < 11568 + ? (c < 11565 + ? c == 11559 + : c <= 11565) + : (c <= 11623 || (c < 11648 + ? c == 11631 + : c <= 11670))) + : (c <= 11686 || (c < 11704 + ? (c < 11696 + ? (c >= 11688 && c <= 11694) + : c <= 11702) + : (c <= 11710 || (c >= 11712 && c <= 11718))))) + : (c <= 11726 || (c < 12337 + ? (c < 12293 + ? (c < 11736 + ? (c >= 11728 && c <= 11734) + : c <= 11742) + : (c <= 12295 || (c >= 12321 && c <= 12329))) + : (c <= 12341 || (c < 12445 + ? (c < 12353 + ? (c >= 12344 && c <= 12348) + : c <= 12438) + : (c <= 12447 || (c >= 12449 && c <= 12538))))))))) + : (c <= 12543 || (c < 43011 + ? (c < 42560 + ? (c < 19968 + ? (c < 12704 + ? (c < 12593 + ? (c >= 12549 && c <= 12591) + : c <= 12686) + : (c <= 12735 || (c < 13312 + ? (c >= 12784 && c <= 12799) + : c <= 19903))) + : (c <= 42124 || (c < 42512 + ? (c < 42240 + ? (c >= 42192 && c <= 42237) + : c <= 42508) + : (c <= 42527 || (c >= 42538 && c <= 42539))))) + : (c <= 42606 || (c < 42891 + ? (c < 42775 + ? (c < 42656 + ? (c >= 42623 && c <= 42653) + : c <= 42735) + : (c <= 42783 || (c >= 42786 && c <= 42888))) + : (c <= 42954 || (c < 42965 + ? (c < 42963 + ? (c >= 42960 && c <= 42961) + : c <= 42963) + : (c <= 42969 || (c >= 42994 && c <= 43009))))))) + : (c <= 43013 || (c < 43360 + ? (c < 43250 + ? (c < 43072 + ? (c < 43020 + ? (c >= 43015 && c <= 43018) + : c <= 43042) + : (c <= 43123 || (c >= 43138 && c <= 43187))) + : (c <= 43255 || (c < 43274 + ? (c < 43261 + ? c == 43259 + : c <= 43262) + : (c <= 43301 || (c >= 43312 && c <= 43334))))) + : (c <= 43388 || (c < 43514 + ? (c < 43488 + ? (c < 43471 + ? (c >= 43396 && c <= 43442) + : c <= 43471) + : (c <= 43492 || (c >= 43494 && c <= 43503))) + : (c <= 43518 || (c < 43588 + ? (c < 43584 + ? (c >= 43520 && c <= 43560) + : c <= 43586) + : (c <= 43595 || (c >= 43616 && c <= 43638))))))))))))))) + : (c <= 43642 || (c < 71168 + ? (c < 67392 + ? (c < 65147 + ? (c < 63744 + ? (c < 43785 + ? (c < 43714 + ? (c < 43701 + ? (c < 43697 + ? (c >= 43646 && c <= 43695) + : c <= 43697) + : (c <= 43702 || (c < 43712 + ? (c >= 43705 && c <= 43709) + : c <= 43712))) + : (c <= 43714 || (c < 43762 + ? (c < 43744 + ? (c >= 43739 && c <= 43741) + : c <= 43754) + : (c <= 43764 || (c >= 43777 && c <= 43782))))) + : (c <= 43790 || (c < 43868 + ? (c < 43816 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : c <= 43814) + : (c <= 43822 || (c >= 43824 && c <= 43866))) + : (c <= 43881 || (c < 55216 + ? (c < 44032 + ? (c >= 43888 && c <= 44002) + : c <= 55203) + : (c <= 55238 || (c >= 55243 && c <= 55291))))))) + : (c <= 64109 || (c < 64326 + ? (c < 64298 + ? (c < 64275 + ? (c < 64256 + ? (c >= 64112 && c <= 64217) + : c <= 64262) + : (c <= 64279 || (c < 64287 + ? c == 64285 + : c <= 64296))) + : (c <= 64310 || (c < 64320 + ? (c < 64318 + ? (c >= 64312 && c <= 64316) + : c <= 64318) + : (c <= 64321 || (c >= 64323 && c <= 64324))))) + : (c <= 64433 || (c < 65008 + ? (c < 64848 + ? (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829) + : (c <= 64911 || (c >= 64914 && c <= 64967))) + : (c <= 65017 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || c == 65145)))))))) + : (c <= 65147 || (c < 66304 + ? (c < 65536 + ? (c < 65440 + ? (c < 65313 + ? (c < 65151 + ? c == 65149 + : c <= 65276) + : (c <= 65338 || (c < 65382 + ? (c >= 65345 && c <= 65370) + : c <= 65437))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c >= 65498 && c <= 65500))))) + : (c <= 65547 || (c < 65616 + ? (c < 65596 + ? (c < 65576 + ? (c >= 65549 && c <= 65574) + : c <= 65594) + : (c <= 65597 || (c >= 65599 && c <= 65613))) + : (c <= 65629 || (c < 66176 + ? (c < 65856 + ? (c >= 65664 && c <= 65786) + : c <= 65908) + : (c <= 66204 || (c >= 66208 && c <= 66256))))))) + : (c <= 66335 || (c < 66864 + ? (c < 66513 + ? (c < 66432 + ? (c < 66384 + ? (c >= 66349 && c <= 66378) + : c <= 66421) + : (c <= 66461 || (c < 66504 + ? (c >= 66464 && c <= 66499) + : c <= 66511))) + : (c <= 66517 || (c < 66776 + ? (c < 66736 + ? (c >= 66560 && c <= 66717) + : c <= 66771) + : (c <= 66811 || (c >= 66816 && c <= 66855))))) + : (c <= 66915 || (c < 66967 + ? (c < 66956 + ? (c < 66940 + ? (c >= 66928 && c <= 66938) + : c <= 66954) + : (c <= 66962 || (c >= 66964 && c <= 66965))) + : (c <= 66977 || (c < 67003 + ? (c < 66995 + ? (c >= 66979 && c <= 66993) + : c <= 67001) + : (c <= 67004 || (c >= 67072 && c <= 67382))))))))))) + : (c <= 67413 || (c < 69600 + ? (c < 68117 + ? (c < 67680 + ? (c < 67592 + ? (c < 67463 + ? (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461) + : (c <= 67504 || (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589))) + : (c <= 67592 || (c < 67644 + ? (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640) + : (c <= 67644 || (c >= 67647 && c <= 67669))))) + : (c <= 67702 || (c < 67872 + ? (c < 67828 + ? (c < 67808 + ? (c >= 67712 && c <= 67742) + : c <= 67826) + : (c <= 67829 || (c >= 67840 && c <= 67861))) + : (c <= 67897 || (c < 68096 + ? (c < 68030 + ? (c >= 67968 && c <= 68023) + : c <= 68031) + : (c <= 68096 || (c >= 68112 && c <= 68115))))))) + : (c <= 68119 || (c < 68736 + ? (c < 68352 + ? (c < 68224 + ? (c < 68192 + ? (c >= 68121 && c <= 68149) + : c <= 68220) + : (c <= 68252 || (c < 68297 + ? (c >= 68288 && c <= 68295) + : c <= 68324))) + : (c <= 68405 || (c < 68480 + ? (c < 68448 + ? (c >= 68416 && c <= 68437) + : c <= 68466) + : (c <= 68497 || (c >= 68608 && c <= 68680))))) + : (c <= 68786 || (c < 69376 + ? (c < 69248 + ? (c < 68864 + ? (c >= 68800 && c <= 68850) + : c <= 68899) + : (c <= 69289 || (c >= 69296 && c <= 69297))) + : (c <= 69404 || (c < 69488 + ? (c < 69424 + ? c == 69415 + : c <= 69445) + : (c <= 69505 || (c >= 69552 && c <= 69572))))))))) + : (c <= 69622 || (c < 70287 + ? (c < 70019 + ? (c < 69891 + ? (c < 69749 + ? (c < 69745 + ? (c >= 69635 && c <= 69687) + : c <= 69746) + : (c <= 69749 || (c < 69840 + ? (c >= 69763 && c <= 69807) + : c <= 69864))) + : (c <= 69926 || (c < 69968 + ? (c < 69959 + ? c == 69956 + : c <= 69959) + : (c <= 70002 || c == 70006)))) + : (c <= 70066 || (c < 70163 + ? (c < 70108 + ? (c < 70106 + ? (c >= 70081 && c <= 70084) + : c <= 70106) + : (c <= 70108 || (c >= 70144 && c <= 70161))) + : (c <= 70187 || (c < 70280 + ? (c < 70272 + ? (c >= 70207 && c <= 70208) + : c <= 70278) + : (c <= 70280 || (c >= 70282 && c <= 70285))))))) + : (c <= 70301 || (c < 70480 + ? (c < 70419 + ? (c < 70405 + ? (c < 70320 + ? (c >= 70303 && c <= 70312) + : c <= 70366) + : (c <= 70412 || (c >= 70415 && c <= 70416))) + : (c <= 70440 || (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || c == 70461)))) + : (c <= 70480 || (c < 70784 + ? (c < 70727 + ? (c < 70656 + ? (c >= 70493 && c <= 70497) + : c <= 70708) + : (c <= 70730 || (c >= 70751 && c <= 70753))) + : (c <= 70831 || (c < 71040 + ? (c < 70855 + ? (c >= 70852 && c <= 70853) + : c <= 70855) + : (c <= 71086 || (c >= 71128 && c <= 71131))))))))))))) + : (c <= 71215 || (c < 119973 + ? (c < 73648 + ? (c < 72250 + ? (c < 71957 + ? (c < 71680 + ? (c < 71352 + ? (c < 71296 + ? c == 71236 + : c <= 71338) + : (c <= 71352 || (c < 71488 + ? (c >= 71424 && c <= 71450) + : c <= 71494))) + : (c <= 71723 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71903) + : c <= 71942) + : (c <= 71945 || (c >= 71948 && c <= 71955))))) + : (c <= 71958 || (c < 72106 + ? (c < 72001 + ? (c < 71999 + ? (c >= 71960 && c <= 71983) + : c <= 71999) + : (c <= 72001 || (c >= 72096 && c <= 72103))) + : (c <= 72144 || (c < 72192 + ? (c < 72163 + ? c == 72161 + : c <= 72163) + : (c <= 72192 || (c >= 72203 && c <= 72242))))))) + : (c <= 72250 || (c < 72971 + ? (c < 72714 + ? (c < 72349 + ? (c < 72284 + ? c == 72272 + : c <= 72329) + : (c <= 72349 || (c < 72704 + ? (c >= 72368 && c <= 72440) + : c <= 72712))) + : (c <= 72750 || (c < 72960 + ? (c < 72818 + ? c == 72768 + : c <= 72847) + : (c <= 72966 || (c >= 72968 && c <= 72969))))) + : (c <= 73008 || (c < 73112 + ? (c < 73063 + ? (c < 73056 + ? c == 73030 + : c <= 73061) + : (c <= 73064 || (c >= 73066 && c <= 73097))) + : (c <= 73112 || (c < 73476 + ? (c < 73474 + ? (c >= 73440 && c <= 73458) + : c <= 73474) + : (c <= 73488 || (c >= 73490 && c <= 73523))))))))) + : (c <= 73648 || (c < 94179 + ? (c < 92880 + ? (c < 78913 + ? (c < 74880 + ? (c < 74752 + ? (c >= 73728 && c <= 74649) + : c <= 74862) + : (c <= 75075 || (c < 77824 + ? (c >= 77712 && c <= 77808) + : c <= 78895))) + : (c <= 78918 || (c < 92736 + ? (c < 92160 + ? (c >= 82944 && c <= 83526) + : c <= 92728) + : (c <= 92766 || (c >= 92784 && c <= 92862))))) + : (c <= 92909 || (c < 93760 + ? (c < 93027 + ? (c < 92992 + ? (c >= 92928 && c <= 92975) + : c <= 92995) + : (c <= 93047 || (c >= 93053 && c <= 93071))) + : (c <= 93823 || (c < 94099 + ? (c < 94032 + ? (c >= 93952 && c <= 94026) + : c <= 94032) + : (c <= 94111 || (c >= 94176 && c <= 94177))))))) + : (c <= 94179 || (c < 110948 + ? (c < 110589 + ? (c < 101632 + ? (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589) + : (c <= 101640 || (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587))) + : (c <= 110590 || (c < 110928 + ? (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898) + : (c <= 110930 || c == 110933)))) + : (c <= 110951 || (c < 113808 + ? (c < 113776 + ? (c < 113664 + ? (c >= 110960 && c <= 111355) + : c <= 113770) + : (c <= 113788 || (c >= 113792 && c <= 113800))) + : (c <= 113817 || (c < 119966 + ? (c < 119894 + ? (c >= 119808 && c <= 119892) + : c <= 119964) + : (c <= 119967 || c == 119970)))))))))) + : (c <= 119974 || (c < 126464 + ? (c < 120656 + ? (c < 120128 + ? (c < 120071 + ? (c < 119995 + ? (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993) + : (c <= 119995 || (c < 120005 + ? (c >= 119997 && c <= 120003) + : c <= 120069))) + : (c <= 120074 || (c < 120094 + ? (c < 120086 + ? (c >= 120077 && c <= 120084) + : c <= 120092) + : (c <= 120121 || (c >= 120123 && c <= 120126))))) + : (c <= 120132 || (c < 120514 + ? (c < 120146 + ? (c < 120138 + ? c == 120134 + : c <= 120144) + : (c <= 120485 || (c >= 120488 && c <= 120512))) + : (c <= 120538 || (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c >= 120630 && c <= 120654))))))) + : (c <= 120686 || (c < 123536 + ? (c < 122661 + ? (c < 120746 + ? (c < 120714 + ? (c >= 120688 && c <= 120712) + : c <= 120744) + : (c <= 120770 || (c < 122624 + ? (c >= 120772 && c <= 120779) + : c <= 122654))) + : (c <= 122666 || (c < 123191 + ? (c < 123136 + ? (c >= 122928 && c <= 122989) + : c <= 123180) + : (c <= 123197 || c == 123214)))) + : (c <= 123565 || (c < 124909 + ? (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123627) + : c <= 124139) + : (c <= 124902 || (c >= 124904 && c <= 124907))) + : (c <= 124910 || (c < 125184 + ? (c < 124928 + ? (c >= 124912 && c <= 124926) + : c <= 125124) + : (c <= 125251 || c == 125259)))))))) + : (c <= 126467 || (c < 126561 + ? (c < 126537 + ? (c < 126516 + ? (c < 126500 + ? (c < 126497 + ? (c >= 126469 && c <= 126495) + : c <= 126498) + : (c <= 126500 || (c < 126505 + ? c == 126503 + : c <= 126514))) + : (c <= 126519 || (c < 126530 + ? (c < 126523 + ? c == 126521 + : c <= 126523) + : (c <= 126530 || c == 126535)))) + : (c <= 126537 || (c < 126551 + ? (c < 126545 + ? (c < 126541 + ? c == 126539 + : c <= 126543) + : (c <= 126546 || c == 126548)) + : (c <= 126551 || (c < 126557 + ? (c < 126555 + ? c == 126553 + : c <= 126555) + : (c <= 126557 || c == 126559)))))) + : (c <= 126562 || (c < 126629 + ? (c < 126585 + ? (c < 126572 + ? (c < 126567 + ? c == 126564 + : c <= 126570) + : (c <= 126578 || (c >= 126580 && c <= 126583))) + : (c <= 126588 || (c < 126603 + ? (c < 126592 + ? c == 126590 + : c <= 126601) + : (c <= 126619 || (c >= 126625 && c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 173824 + ? (c < 131072 + ? (c >= 126635 && c <= 126651) + : c <= 173791) + : (c <= 177977 || (c >= 177984 && c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c >= 201552 && c <= 205743))))))))))))))))); +} + +static inline bool sym_identifier_character_set_3(int32_t c) { + return (c < 43785 + ? (c < 3804 + ? (c < 2759 + ? (c < 2048 + ? (c < 1155 + ? (c < 736 + ? (c < 183 + ? (c < 'a' + ? (c < 'A' + ? (c >= '0' && c <= '9') + : (c <= 'Z' || c == '_')) + : (c <= 'z' || (c < 181 + ? c == 170 + : c <= 181))) + : (c <= 183 || (c < 216 + ? (c < 192 + ? c == 186 + : c <= 214) + : (c <= 246 || (c < 710 + ? (c >= 248 && c <= 705) + : c <= 721))))) + : (c <= 740 || (c < 895 + ? (c < 768 + ? (c < 750 + ? c == 748 + : c <= 750) + : (c <= 884 || (c < 891 + ? (c >= 886 && c <= 887) + : c <= 893))) + : (c <= 895 || (c < 910 + ? (c < 908 + ? (c >= 902 && c <= 906) + : c <= 908) + : (c <= 929 || (c < 1015 + ? (c >= 931 && c <= 1013) + : c <= 1153))))))) + : (c <= 1159 || (c < 1552 + ? (c < 1471 + ? (c < 1369 + ? (c < 1329 + ? (c >= 1162 && c <= 1327) + : c <= 1366) + : (c <= 1369 || (c < 1425 + ? (c >= 1376 && c <= 1416) + : c <= 1469))) + : (c <= 1471 || (c < 1479 + ? (c < 1476 + ? (c >= 1473 && c <= 1474) + : c <= 1477) + : (c <= 1479 || (c < 1519 + ? (c >= 1488 && c <= 1514) + : c <= 1522))))) + : (c <= 1562 || (c < 1791 + ? (c < 1749 + ? (c < 1646 + ? (c >= 1568 && c <= 1641) + : c <= 1747) + : (c <= 1756 || (c < 1770 + ? (c >= 1759 && c <= 1768) + : c <= 1788))) + : (c <= 1791 || (c < 1984 + ? (c < 1869 + ? (c >= 1808 && c <= 1866) + : c <= 1969) + : (c <= 2037 || (c < 2045 + ? c == 2042 + : c <= 2045))))))))) + : (c <= 2093 || (c < 2561 + ? (c < 2474 + ? (c < 2275 + ? (c < 2160 + ? (c < 2144 + ? (c >= 2112 && c <= 2139) + : c <= 2154) + : (c <= 2183 || (c < 2200 + ? (c >= 2185 && c <= 2190) + : c <= 2273))) + : (c <= 2403 || (c < 2437 + ? (c < 2417 + ? (c >= 2406 && c <= 2415) + : c <= 2435) + : (c <= 2444 || (c < 2451 + ? (c >= 2447 && c <= 2448) + : c <= 2472))))) + : (c <= 2480 || (c < 2519 + ? (c < 2492 + ? (c < 2486 + ? c == 2482 + : c <= 2489) + : (c <= 2500 || (c < 2507 + ? (c >= 2503 && c <= 2504) + : c <= 2510))) + : (c <= 2519 || (c < 2534 + ? (c < 2527 + ? (c >= 2524 && c <= 2525) + : c <= 2531) + : (c <= 2545 || (c < 2558 + ? c == 2556 + : c <= 2558))))))) + : (c <= 2563 || (c < 2641 + ? (c < 2613 + ? (c < 2579 + ? (c < 2575 + ? (c >= 2565 && c <= 2570) + : c <= 2576) + : (c <= 2600 || (c < 2610 + ? (c >= 2602 && c <= 2608) + : c <= 2611))) + : (c <= 2614 || (c < 2622 + ? (c < 2620 + ? (c >= 2616 && c <= 2617) + : c <= 2620) + : (c <= 2626 || (c < 2635 + ? (c >= 2631 && c <= 2632) + : c <= 2637))))) + : (c <= 2641 || (c < 2703 + ? (c < 2662 + ? (c < 2654 + ? (c >= 2649 && c <= 2652) + : c <= 2654) + : (c <= 2677 || (c < 2693 + ? (c >= 2689 && c <= 2691) + : c <= 2701))) + : (c <= 2705 || (c < 2738 + ? (c < 2730 + ? (c >= 2707 && c <= 2728) + : c <= 2736) + : (c <= 2739 || (c < 2748 + ? (c >= 2741 && c <= 2745) + : c <= 2757))))))))))) + : (c <= 2761 || (c < 3200 + ? (c < 2969 + ? (c < 2876 + ? (c < 2821 + ? (c < 2790 + ? (c < 2768 + ? (c >= 2763 && c <= 2765) + : (c <= 2768 || (c >= 2784 && c <= 2787))) + : (c <= 2799 || (c < 2817 + ? (c >= 2809 && c <= 2815) + : c <= 2819))) + : (c <= 2828 || (c < 2858 + ? (c < 2835 + ? (c >= 2831 && c <= 2832) + : c <= 2856) + : (c <= 2864 || (c < 2869 + ? (c >= 2866 && c <= 2867) + : c <= 2873))))) + : (c <= 2884 || (c < 2918 + ? (c < 2901 + ? (c < 2891 + ? (c >= 2887 && c <= 2888) + : c <= 2893) + : (c <= 2903 || (c < 2911 + ? (c >= 2908 && c <= 2909) + : c <= 2915))) + : (c <= 2927 || (c < 2949 + ? (c < 2946 + ? c == 2929 + : c <= 2947) + : (c <= 2954 || (c < 2962 + ? (c >= 2958 && c <= 2960) + : c <= 2965))))))) + : (c <= 2970 || (c < 3072 + ? (c < 3006 + ? (c < 2979 + ? (c < 2974 + ? c == 2972 + : c <= 2975) + : (c <= 2980 || (c < 2990 + ? (c >= 2984 && c <= 2986) + : c <= 3001))) + : (c <= 3010 || (c < 3024 + ? (c < 3018 + ? (c >= 3014 && c <= 3016) + : c <= 3021) + : (c <= 3024 || (c < 3046 + ? c == 3031 + : c <= 3055))))) + : (c <= 3084 || (c < 3146 + ? (c < 3114 + ? (c < 3090 + ? (c >= 3086 && c <= 3088) + : c <= 3112) + : (c <= 3129 || (c < 3142 + ? (c >= 3132 && c <= 3140) + : c <= 3144))) + : (c <= 3149 || (c < 3165 + ? (c < 3160 + ? (c >= 3157 && c <= 3158) + : c <= 3162) + : (c <= 3165 || (c < 3174 + ? (c >= 3168 && c <= 3171) + : c <= 3183))))))))) + : (c <= 3203 || (c < 3461 + ? (c < 3302 + ? (c < 3260 + ? (c < 3218 + ? (c < 3214 + ? (c >= 3205 && c <= 3212) + : c <= 3216) + : (c <= 3240 || (c < 3253 + ? (c >= 3242 && c <= 3251) + : c <= 3257))) + : (c <= 3268 || (c < 3285 + ? (c < 3274 + ? (c >= 3270 && c <= 3272) + : c <= 3277) + : (c <= 3286 || (c < 3296 + ? (c >= 3293 && c <= 3294) + : c <= 3299))))) + : (c <= 3311 || (c < 3402 + ? (c < 3342 + ? (c < 3328 + ? (c >= 3313 && c <= 3315) + : c <= 3340) + : (c <= 3344 || (c < 3398 + ? (c >= 3346 && c <= 3396) + : c <= 3400))) + : (c <= 3406 || (c < 3430 + ? (c < 3423 + ? (c >= 3412 && c <= 3415) + : c <= 3427) + : (c <= 3439 || (c < 3457 + ? (c >= 3450 && c <= 3455) + : c <= 3459))))))) + : (c <= 3478 || (c < 3648 + ? (c < 3535 + ? (c < 3517 + ? (c < 3507 + ? (c >= 3482 && c <= 3505) + : c <= 3515) + : (c <= 3517 || (c < 3530 + ? (c >= 3520 && c <= 3526) + : c <= 3530))) + : (c <= 3540 || (c < 3558 + ? (c < 3544 + ? c == 3542 + : c <= 3551) + : (c <= 3567 || (c < 3585 + ? (c >= 3570 && c <= 3571) + : c <= 3642))))) + : (c <= 3662 || (c < 3749 + ? (c < 3716 + ? (c < 3713 + ? (c >= 3664 && c <= 3673) + : c <= 3714) + : (c <= 3716 || (c < 3724 + ? (c >= 3718 && c <= 3722) + : c <= 3747))) + : (c <= 3749 || (c < 3782 + ? (c < 3776 + ? (c >= 3751 && c <= 3773) + : c <= 3780) + : (c <= 3782 || (c < 3792 + ? (c >= 3784 && c <= 3790) + : c <= 3801))))))))))))) + : (c <= 3807 || (c < 8064 + ? (c < 5998 + ? (c < 4746 + ? (c < 4096 + ? (c < 3902 + ? (c < 3893 + ? (c < 3864 + ? c == 3840 + : (c <= 3865 || (c >= 3872 && c <= 3881))) + : (c <= 3893 || (c < 3897 + ? c == 3895 + : c <= 3897))) + : (c <= 3911 || (c < 3974 + ? (c < 3953 + ? (c >= 3913 && c <= 3948) + : c <= 3972) + : (c <= 3991 || (c < 4038 + ? (c >= 3993 && c <= 4028) + : c <= 4038))))) + : (c <= 4169 || (c < 4348 + ? (c < 4295 + ? (c < 4256 + ? (c >= 4176 && c <= 4253) + : c <= 4293) + : (c <= 4295 || (c < 4304 + ? c == 4301 + : c <= 4346))) + : (c <= 4680 || (c < 4696 + ? (c < 4688 + ? (c >= 4682 && c <= 4685) + : c <= 4694) + : (c <= 4696 || (c < 4704 + ? (c >= 4698 && c <= 4701) + : c <= 4744))))))) + : (c <= 4749 || (c < 4992 + ? (c < 4808 + ? (c < 4792 + ? (c < 4786 + ? (c >= 4752 && c <= 4784) + : c <= 4789) + : (c <= 4798 || (c < 4802 + ? c == 4800 + : c <= 4805))) + : (c <= 4822 || (c < 4888 + ? (c < 4882 + ? (c >= 4824 && c <= 4880) + : c <= 4885) + : (c <= 4954 || (c < 4969 + ? (c >= 4957 && c <= 4959) + : c <= 4977))))) + : (c <= 5007 || (c < 5792 + ? (c < 5121 + ? (c < 5112 + ? (c >= 5024 && c <= 5109) + : c <= 5117) + : (c <= 5740 || (c < 5761 + ? (c >= 5743 && c <= 5759) + : c <= 5786))) + : (c <= 5866 || (c < 5919 + ? (c < 5888 + ? (c >= 5870 && c <= 5880) + : c <= 5909) + : (c <= 5940 || (c < 5984 + ? (c >= 5952 && c <= 5971) + : c <= 5996))))))))) + : (c <= 6000 || (c < 6823 + ? (c < 6432 + ? (c < 6155 + ? (c < 6103 + ? (c < 6016 + ? (c >= 6002 && c <= 6003) + : c <= 6099) + : (c <= 6103 || (c < 6112 + ? (c >= 6108 && c <= 6109) + : c <= 6121))) + : (c <= 6157 || (c < 6272 + ? (c < 6176 + ? (c >= 6159 && c <= 6169) + : c <= 6264) + : (c <= 6314 || (c < 6400 + ? (c >= 6320 && c <= 6389) + : c <= 6430))))) + : (c <= 6443 || (c < 6608 + ? (c < 6512 + ? (c < 6470 + ? (c >= 6448 && c <= 6459) + : c <= 6509) + : (c <= 6516 || (c < 6576 + ? (c >= 6528 && c <= 6571) + : c <= 6601))) + : (c <= 6618 || (c < 6752 + ? (c < 6688 + ? (c >= 6656 && c <= 6683) + : c <= 6750) + : (c <= 6780 || (c < 6800 + ? (c >= 6783 && c <= 6793) + : c <= 6809))))))) + : (c <= 6823 || (c < 7357 + ? (c < 7040 + ? (c < 6912 + ? (c < 6847 + ? (c >= 6832 && c <= 6845) + : c <= 6862) + : (c <= 6988 || (c < 7019 + ? (c >= 6992 && c <= 7001) + : c <= 7027))) + : (c <= 7155 || (c < 7245 + ? (c < 7232 + ? (c >= 7168 && c <= 7223) + : c <= 7241) + : (c <= 7293 || (c < 7312 + ? (c >= 7296 && c <= 7304) + : c <= 7354))))) + : (c <= 7359 || (c < 8008 + ? (c < 7424 + ? (c < 7380 + ? (c >= 7376 && c <= 7378) + : c <= 7418) + : (c <= 7957 || (c < 7968 + ? (c >= 7960 && c <= 7965) + : c <= 8005))) + : (c <= 8013 || (c < 8027 + ? (c < 8025 + ? (c >= 8016 && c <= 8023) + : c <= 8025) + : (c <= 8027 || (c < 8031 + ? c == 8029 + : c <= 8061))))))))))) + : (c <= 8116 || (c < 12321 + ? (c < 8488 + ? (c < 8319 + ? (c < 8160 + ? (c < 8134 + ? (c < 8126 + ? (c >= 8118 && c <= 8124) + : (c <= 8126 || (c >= 8130 && c <= 8132))) + : (c <= 8140 || (c < 8150 + ? (c >= 8144 && c <= 8147) + : c <= 8155))) + : (c <= 8172 || (c < 8255 + ? (c < 8182 + ? (c >= 8178 && c <= 8180) + : c <= 8188) + : (c <= 8256 || (c < 8305 + ? c == 8276 + : c <= 8305))))) + : (c <= 8319 || (c < 8455 + ? (c < 8417 + ? (c < 8400 + ? (c >= 8336 && c <= 8348) + : c <= 8412) + : (c <= 8417 || (c < 8450 + ? (c >= 8421 && c <= 8432) + : c <= 8450))) + : (c <= 8455 || (c < 8472 + ? (c < 8469 + ? (c >= 8458 && c <= 8467) + : c <= 8469) + : (c <= 8477 || (c < 8486 + ? c == 8484 + : c <= 8486))))))) + : (c <= 8488 || (c < 11631 + ? (c < 11264 + ? (c < 8517 + ? (c < 8508 + ? (c >= 8490 && c <= 8505) + : c <= 8511) + : (c <= 8521 || (c < 8544 + ? c == 8526 + : c <= 8584))) + : (c <= 11492 || (c < 11559 + ? (c < 11520 + ? (c >= 11499 && c <= 11507) + : c <= 11557) + : (c <= 11559 || (c < 11568 + ? c == 11565 + : c <= 11623))))) + : (c <= 11631 || (c < 11712 + ? (c < 11688 + ? (c < 11680 + ? (c >= 11647 && c <= 11670) + : c <= 11686) + : (c <= 11694 || (c < 11704 + ? (c >= 11696 && c <= 11702) + : c <= 11710))) + : (c <= 11718 || (c < 11736 + ? (c < 11728 + ? (c >= 11720 && c <= 11726) + : c <= 11734) + : (c <= 11742 || (c < 12293 + ? (c >= 11744 && c <= 11775) + : c <= 12295))))))))) + : (c <= 12335 || (c < 42963 + ? (c < 13312 + ? (c < 12449 + ? (c < 12353 + ? (c < 12344 + ? (c >= 12337 && c <= 12341) + : c <= 12348) + : (c <= 12438 || (c < 12445 + ? (c >= 12441 && c <= 12442) + : c <= 12447))) + : (c <= 12538 || (c < 12593 + ? (c < 12549 + ? (c >= 12540 && c <= 12543) + : c <= 12591) + : (c <= 12686 || (c < 12784 + ? (c >= 12704 && c <= 12735) + : c <= 12799))))) + : (c <= 19903 || (c < 42612 + ? (c < 42240 + ? (c < 42192 + ? (c >= 19968 && c <= 42124) + : c <= 42237) + : (c <= 42508 || (c < 42560 + ? (c >= 42512 && c <= 42539) + : c <= 42607))) + : (c <= 42621 || (c < 42786 + ? (c < 42775 + ? (c >= 42623 && c <= 42737) + : c <= 42783) + : (c <= 42888 || (c < 42960 + ? (c >= 42891 && c <= 42954) + : c <= 42961))))))) + : (c <= 42963 || (c < 43392 + ? (c < 43216 + ? (c < 43052 + ? (c < 42994 + ? (c >= 42965 && c <= 42969) + : c <= 43047) + : (c <= 43052 || (c < 43136 + ? (c >= 43072 && c <= 43123) + : c <= 43205))) + : (c <= 43225 || (c < 43261 + ? (c < 43259 + ? (c >= 43232 && c <= 43255) + : c <= 43259) + : (c <= 43309 || (c < 43360 + ? (c >= 43312 && c <= 43347) + : c <= 43388))))) + : (c <= 43456 || (c < 43616 + ? (c < 43520 + ? (c < 43488 + ? (c >= 43471 && c <= 43481) + : c <= 43518) + : (c <= 43574 || (c < 43600 + ? (c >= 43584 && c <= 43597) + : c <= 43609))) + : (c <= 43638 || (c < 43744 + ? (c < 43739 + ? (c >= 43642 && c <= 43714) + : c <= 43741) + : (c <= 43759 || (c < 43777 + ? (c >= 43762 && c <= 43766) + : c <= 43782))))))))))))))) + : (c <= 43790 || (c < 71960 + ? (c < 67840 + ? (c < 65549 + ? (c < 64848 + ? (c < 64112 + ? (c < 44012 + ? (c < 43824 + ? (c < 43808 + ? (c >= 43793 && c <= 43798) + : (c <= 43814 || (c >= 43816 && c <= 43822))) + : (c <= 43866 || (c < 43888 + ? (c >= 43868 && c <= 43881) + : c <= 44010))) + : (c <= 44013 || (c < 55216 + ? (c < 44032 + ? (c >= 44016 && c <= 44025) + : c <= 55203) + : (c <= 55238 || (c < 63744 + ? (c >= 55243 && c <= 55291) + : c <= 64109))))) + : (c <= 64217 || (c < 64318 + ? (c < 64285 + ? (c < 64275 + ? (c >= 64256 && c <= 64262) + : c <= 64279) + : (c <= 64296 || (c < 64312 + ? (c >= 64298 && c <= 64310) + : c <= 64316))) + : (c <= 64318 || (c < 64326 + ? (c < 64323 + ? (c >= 64320 && c <= 64321) + : c <= 64324) + : (c <= 64433 || (c < 64612 + ? (c >= 64467 && c <= 64605) + : c <= 64829))))))) + : (c <= 64911 || (c < 65149 + ? (c < 65101 + ? (c < 65024 + ? (c < 65008 + ? (c >= 64914 && c <= 64967) + : c <= 65017) + : (c <= 65039 || (c < 65075 + ? (c >= 65056 && c <= 65071) + : c <= 65076))) + : (c <= 65103 || (c < 65143 + ? (c < 65139 + ? c == 65137 + : c <= 65139) + : (c <= 65143 || (c < 65147 + ? c == 65145 + : c <= 65147))))) + : (c <= 65149 || (c < 65382 + ? (c < 65313 + ? (c < 65296 + ? (c >= 65151 && c <= 65276) + : c <= 65305) + : (c <= 65338 || (c < 65345 + ? c == 65343 + : c <= 65370))) + : (c <= 65470 || (c < 65490 + ? (c < 65482 + ? (c >= 65474 && c <= 65479) + : c <= 65487) + : (c <= 65495 || (c < 65536 + ? (c >= 65498 && c <= 65500) + : c <= 65547))))))))) + : (c <= 65574 || (c < 66928 + ? (c < 66349 + ? (c < 65856 + ? (c < 65599 + ? (c < 65596 + ? (c >= 65576 && c <= 65594) + : c <= 65597) + : (c <= 65613 || (c < 65664 + ? (c >= 65616 && c <= 65629) + : c <= 65786))) + : (c <= 65908 || (c < 66208 + ? (c < 66176 + ? c == 66045 + : c <= 66204) + : (c <= 66256 || (c < 66304 + ? c == 66272 + : c <= 66335))))) + : (c <= 66378 || (c < 66560 + ? (c < 66464 + ? (c < 66432 + ? (c >= 66384 && c <= 66426) + : c <= 66461) + : (c <= 66499 || (c < 66513 + ? (c >= 66504 && c <= 66511) + : c <= 66517))) + : (c <= 66717 || (c < 66776 + ? (c < 66736 + ? (c >= 66720 && c <= 66729) + : c <= 66771) + : (c <= 66811 || (c < 66864 + ? (c >= 66816 && c <= 66855) + : c <= 66915))))))) + : (c <= 66938 || (c < 67463 + ? (c < 66995 + ? (c < 66964 + ? (c < 66956 + ? (c >= 66940 && c <= 66954) + : c <= 66962) + : (c <= 66965 || (c < 66979 + ? (c >= 66967 && c <= 66977) + : c <= 66993))) + : (c <= 67001 || (c < 67392 + ? (c < 67072 + ? (c >= 67003 && c <= 67004) + : c <= 67382) + : (c <= 67413 || (c < 67456 + ? (c >= 67424 && c <= 67431) + : c <= 67461))))) + : (c <= 67504 || (c < 67644 + ? (c < 67592 + ? (c < 67584 + ? (c >= 67506 && c <= 67514) + : c <= 67589) + : (c <= 67592 || (c < 67639 + ? (c >= 67594 && c <= 67637) + : c <= 67640))) + : (c <= 67644 || (c < 67712 + ? (c < 67680 + ? (c >= 67647 && c <= 67669) + : c <= 67702) + : (c <= 67742 || (c < 67828 + ? (c >= 67808 && c <= 67826) + : c <= 67829))))))))))) + : (c <= 67861 || (c < 70163 + ? (c < 69291 + ? (c < 68288 + ? (c < 68117 + ? (c < 68096 + ? (c < 67968 + ? (c >= 67872 && c <= 67897) + : (c <= 68023 || (c >= 68030 && c <= 68031))) + : (c <= 68099 || (c < 68108 + ? (c >= 68101 && c <= 68102) + : c <= 68115))) + : (c <= 68119 || (c < 68159 + ? (c < 68152 + ? (c >= 68121 && c <= 68149) + : c <= 68154) + : (c <= 68159 || (c < 68224 + ? (c >= 68192 && c <= 68220) + : c <= 68252))))) + : (c <= 68295 || (c < 68608 + ? (c < 68416 + ? (c < 68352 + ? (c >= 68297 && c <= 68326) + : c <= 68405) + : (c <= 68437 || (c < 68480 + ? (c >= 68448 && c <= 68466) + : c <= 68497))) + : (c <= 68680 || (c < 68864 + ? (c < 68800 + ? (c >= 68736 && c <= 68786) + : c <= 68850) + : (c <= 68903 || (c < 69248 + ? (c >= 68912 && c <= 68921) + : c <= 69289))))))) + : (c <= 69292 || (c < 69840 + ? (c < 69552 + ? (c < 69415 + ? (c < 69373 + ? (c >= 69296 && c <= 69297) + : c <= 69404) + : (c <= 69415 || (c < 69488 + ? (c >= 69424 && c <= 69456) + : c <= 69509))) + : (c <= 69572 || (c < 69734 + ? (c < 69632 + ? (c >= 69600 && c <= 69622) + : c <= 69702) + : (c <= 69749 || (c < 69826 + ? (c >= 69759 && c <= 69818) + : c <= 69826))))) + : (c <= 69864 || (c < 70006 + ? (c < 69942 + ? (c < 69888 + ? (c >= 69872 && c <= 69881) + : c <= 69940) + : (c <= 69951 || (c < 69968 + ? (c >= 69956 && c <= 69959) + : c <= 70003))) + : (c <= 70006 || (c < 70094 + ? (c < 70089 + ? (c >= 70016 && c <= 70084) + : c <= 70092) + : (c <= 70106 || (c < 70144 + ? c == 70108 + : c <= 70161))))))))) + : (c <= 70199 || (c < 70656 + ? (c < 70419 + ? (c < 70303 + ? (c < 70280 + ? (c < 70272 + ? (c >= 70206 && c <= 70209) + : c <= 70278) + : (c <= 70280 || (c < 70287 + ? (c >= 70282 && c <= 70285) + : c <= 70301))) + : (c <= 70312 || (c < 70400 + ? (c < 70384 + ? (c >= 70320 && c <= 70378) + : c <= 70393) + : (c <= 70403 || (c < 70415 + ? (c >= 70405 && c <= 70412) + : c <= 70416))))) + : (c <= 70440 || (c < 70475 + ? (c < 70453 + ? (c < 70450 + ? (c >= 70442 && c <= 70448) + : c <= 70451) + : (c <= 70457 || (c < 70471 + ? (c >= 70459 && c <= 70468) + : c <= 70472))) + : (c <= 70477 || (c < 70493 + ? (c < 70487 + ? c == 70480 + : c <= 70487) + : (c <= 70499 || (c < 70512 + ? (c >= 70502 && c <= 70508) + : c <= 70516))))))) + : (c <= 70730 || (c < 71296 + ? (c < 71040 + ? (c < 70784 + ? (c < 70750 + ? (c >= 70736 && c <= 70745) + : c <= 70753) + : (c <= 70853 || (c < 70864 + ? c == 70855 + : c <= 70873))) + : (c <= 71093 || (c < 71168 + ? (c < 71128 + ? (c >= 71096 && c <= 71104) + : c <= 71133) + : (c <= 71232 || (c < 71248 + ? c == 71236 + : c <= 71257))))) + : (c <= 71352 || (c < 71680 + ? (c < 71453 + ? (c < 71424 + ? (c >= 71360 && c <= 71369) + : c <= 71450) + : (c <= 71467 || (c < 71488 + ? (c >= 71472 && c <= 71481) + : c <= 71494))) + : (c <= 71738 || (c < 71945 + ? (c < 71935 + ? (c >= 71840 && c <= 71913) + : c <= 71942) + : (c <= 71945 || (c < 71957 + ? (c >= 71948 && c <= 71955) + : c <= 71958))))))))))))) + : (c <= 71989 || (c < 119995 + ? (c < 92784 + ? (c < 73023 + ? (c < 72704 + ? (c < 72163 + ? (c < 72096 + ? (c < 71995 + ? (c >= 71991 && c <= 71992) + : (c <= 72003 || (c >= 72016 && c <= 72025))) + : (c <= 72103 || (c < 72154 + ? (c >= 72106 && c <= 72151) + : c <= 72161))) + : (c <= 72164 || (c < 72272 + ? (c < 72263 + ? (c >= 72192 && c <= 72254) + : c <= 72263) + : (c <= 72345 || (c < 72368 + ? c == 72349 + : c <= 72440))))) + : (c <= 72712 || (c < 72873 + ? (c < 72784 + ? (c < 72760 + ? (c >= 72714 && c <= 72758) + : c <= 72768) + : (c <= 72793 || (c < 72850 + ? (c >= 72818 && c <= 72847) + : c <= 72871))) + : (c <= 72886 || (c < 72971 + ? (c < 72968 + ? (c >= 72960 && c <= 72966) + : c <= 72969) + : (c <= 73014 || (c < 73020 + ? c == 73018 + : c <= 73021))))))) + : (c <= 73031 || (c < 73552 + ? (c < 73107 + ? (c < 73063 + ? (c < 73056 + ? (c >= 73040 && c <= 73049) + : c <= 73061) + : (c <= 73064 || (c < 73104 + ? (c >= 73066 && c <= 73102) + : c <= 73105))) + : (c <= 73112 || (c < 73472 + ? (c < 73440 + ? (c >= 73120 && c <= 73129) + : c <= 73462) + : (c <= 73488 || (c < 73534 + ? (c >= 73490 && c <= 73530) + : c <= 73538))))) + : (c <= 73561 || (c < 77824 + ? (c < 74752 + ? (c < 73728 + ? c == 73648 + : c <= 74649) + : (c <= 74862 || (c < 77712 + ? (c >= 74880 && c <= 75075) + : c <= 77808))) + : (c <= 78895 || (c < 92160 + ? (c < 82944 + ? (c >= 78912 && c <= 78933) + : c <= 83526) + : (c <= 92728 || (c < 92768 + ? (c >= 92736 && c <= 92766) + : c <= 92777))))))))) + : (c <= 92862 || (c < 110928 + ? (c < 94095 + ? (c < 93008 + ? (c < 92912 + ? (c < 92880 + ? (c >= 92864 && c <= 92873) + : c <= 92909) + : (c <= 92916 || (c < 92992 + ? (c >= 92928 && c <= 92982) + : c <= 92995))) + : (c <= 93017 || (c < 93760 + ? (c < 93053 + ? (c >= 93027 && c <= 93047) + : c <= 93071) + : (c <= 93823 || (c < 94031 + ? (c >= 93952 && c <= 94026) + : c <= 94087))))) + : (c <= 94111 || (c < 101632 + ? (c < 94192 + ? (c < 94179 + ? (c >= 94176 && c <= 94177) + : c <= 94180) + : (c <= 94193 || (c < 100352 + ? (c >= 94208 && c <= 100343) + : c <= 101589))) + : (c <= 101640 || (c < 110589 + ? (c < 110581 + ? (c >= 110576 && c <= 110579) + : c <= 110587) + : (c <= 110590 || (c < 110898 + ? (c >= 110592 && c <= 110882) + : c <= 110898))))))) + : (c <= 110930 || (c < 119149 + ? (c < 113792 + ? (c < 110960 + ? (c < 110948 + ? c == 110933 + : c <= 110951) + : (c <= 111355 || (c < 113776 + ? (c >= 113664 && c <= 113770) + : c <= 113788))) + : (c <= 113800 || (c < 118528 + ? (c < 113821 + ? (c >= 113808 && c <= 113817) + : c <= 113822) + : (c <= 118573 || (c < 119141 + ? (c >= 118576 && c <= 118598) + : c <= 119145))))) + : (c <= 119154 || (c < 119894 + ? (c < 119210 + ? (c < 119173 + ? (c >= 119163 && c <= 119170) + : c <= 119179) + : (c <= 119213 || (c < 119808 + ? (c >= 119362 && c <= 119364) + : c <= 119892))) + : (c <= 119964 || (c < 119973 + ? (c < 119970 + ? (c >= 119966 && c <= 119967) + : c <= 119970) + : (c <= 119974 || (c < 119982 + ? (c >= 119977 && c <= 119980) + : c <= 119993))))))))))) + : (c <= 119995 || (c < 124912 + ? (c < 121403 + ? (c < 120514 + ? (c < 120123 + ? (c < 120077 + ? (c < 120005 + ? (c >= 119997 && c <= 120003) + : (c <= 120069 || (c >= 120071 && c <= 120074))) + : (c <= 120084 || (c < 120094 + ? (c >= 120086 && c <= 120092) + : c <= 120121))) + : (c <= 120126 || (c < 120138 + ? (c < 120134 + ? (c >= 120128 && c <= 120132) + : c <= 120134) + : (c <= 120144 || (c < 120488 + ? (c >= 120146 && c <= 120485) + : c <= 120512))))) + : (c <= 120538 || (c < 120688 + ? (c < 120598 + ? (c < 120572 + ? (c >= 120540 && c <= 120570) + : c <= 120596) + : (c <= 120628 || (c < 120656 + ? (c >= 120630 && c <= 120654) + : c <= 120686))) + : (c <= 120712 || (c < 120772 + ? (c < 120746 + ? (c >= 120714 && c <= 120744) + : c <= 120770) + : (c <= 120779 || (c < 121344 + ? (c >= 120782 && c <= 120831) + : c <= 121398))))))) + : (c <= 121452 || (c < 122928 + ? (c < 122661 + ? (c < 121499 + ? (c < 121476 + ? c == 121461 + : c <= 121476) + : (c <= 121503 || (c < 122624 + ? (c >= 121505 && c <= 121519) + : c <= 122654))) + : (c <= 122666 || (c < 122907 + ? (c < 122888 + ? (c >= 122880 && c <= 122886) + : c <= 122904) + : (c <= 122913 || (c < 122918 + ? (c >= 122915 && c <= 122916) + : c <= 122922))))) + : (c <= 122989 || (c < 123536 + ? (c < 123184 + ? (c < 123136 + ? c == 123023 + : c <= 123180) + : (c <= 123197 || (c < 123214 + ? (c >= 123200 && c <= 123209) + : c <= 123214))) + : (c <= 123566 || (c < 124896 + ? (c < 124112 + ? (c >= 123584 && c <= 123641) + : c <= 124153) + : (c <= 124902 || (c < 124909 + ? (c >= 124904 && c <= 124907) + : c <= 124910))))))))) + : (c <= 124926 || (c < 126557 + ? (c < 126521 + ? (c < 126469 + ? (c < 125184 + ? (c < 125136 + ? (c >= 124928 && c <= 125124) + : c <= 125142) + : (c <= 125259 || (c < 126464 + ? (c >= 125264 && c <= 125273) + : c <= 126467))) + : (c <= 126495 || (c < 126503 + ? (c < 126500 + ? (c >= 126497 && c <= 126498) + : c <= 126500) + : (c <= 126503 || (c < 126516 + ? (c >= 126505 && c <= 126514) + : c <= 126519))))) + : (c <= 126521 || (c < 126541 + ? (c < 126535 + ? (c < 126530 + ? c == 126523 + : c <= 126530) + : (c <= 126535 || (c < 126539 + ? c == 126537 + : c <= 126539))) + : (c <= 126543 || (c < 126551 + ? (c < 126548 + ? (c >= 126545 && c <= 126546) + : c <= 126548) + : (c <= 126551 || (c < 126555 + ? c == 126553 + : c <= 126555))))))) + : (c <= 126557 || (c < 126629 + ? (c < 126580 + ? (c < 126564 + ? (c < 126561 + ? c == 126559 + : c <= 126562) + : (c <= 126564 || (c < 126572 + ? (c >= 126567 && c <= 126570) + : c <= 126578))) + : (c <= 126583 || (c < 126592 + ? (c < 126590 + ? (c >= 126585 && c <= 126588) + : c <= 126590) + : (c <= 126601 || (c < 126625 + ? (c >= 126603 && c <= 126619) + : c <= 126627))))) + : (c <= 126633 || (c < 178208 + ? (c < 131072 + ? (c < 130032 + ? (c >= 126635 && c <= 126651) + : c <= 130041) + : (c <= 173791 || (c < 177984 + ? (c >= 173824 && c <= 177977) + : c <= 178205))) + : (c <= 183969 || (c < 196608 + ? (c < 194560 + ? (c >= 183984 && c <= 191456) + : c <= 195101) + : (c <= 201546 || (c < 917760 + ? (c >= 201552 && c <= 205743) + : c <= 917999))))))))))))))))); +} + +static bool ts_lex(TSLexer *lexer, TSStateId state) { + START_LEXER(); + eof = lexer->eof(lexer); + switch (state) { + case 0: + if (eof) ADVANCE(44); + if (lookahead == '!') ADVANCE(18); + if (lookahead == '#') ADVANCE(126); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(70); + if (lookahead == '(') ADVANCE(48); + if (lookahead == ')') ADVANCE(49); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '+') ADVANCE(63); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(65); + if (lookahead == '.') ADVANCE(47); + if (lookahead == '/') ADVANCE(66); + if (lookahead == '0') ADVANCE(109); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(45); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(62); + if (lookahead == '>') ADVANCE(79); + if (lookahead == '@') ADVANCE(59); + if (lookahead == '[') ADVANCE(60); + if (lookahead == '\\') SKIP(40) + if (lookahead == ']') ADVANCE(61); + if (lookahead == '^') ADVANCE(71); + if (lookahead == 'e') ADVANCE(124); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '|') ADVANCE(69); + if (lookahead == '}') ADVANCE(97); + if (lookahead == '~') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(0) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(108); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(125); + END_STATE(); + case 1: + if (lookahead == '\n') SKIP(13) + END_STATE(); + case 2: + if (lookahead == '\n') SKIP(13) + if (lookahead == '\r') SKIP(1) + END_STATE(); + case 3: + if (lookahead == '\n') SKIP(12) + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(12) + if (lookahead == '\r') SKIP(3) + END_STATE(); + case 5: + if (lookahead == '\n') ADVANCE(101); + END_STATE(); + case 6: + if (lookahead == '\n') SKIP(6) + if (lookahead == '#') ADVANCE(105); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '}') ADVANCE(97); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(104); + if (lookahead != 0) ADVANCE(105); + END_STATE(); + case 7: + if (lookahead == '\n') SKIP(14) + END_STATE(); + case 8: + if (lookahead == '\n') SKIP(14) + if (lookahead == '\r') SKIP(7) + END_STATE(); + case 9: + if (lookahead == '\n') SKIP(11) + END_STATE(); + case 10: + if (lookahead == '\n') SKIP(11) + if (lookahead == '\r') SKIP(9) + END_STATE(); + case 11: + if (lookahead == '!') ADVANCE(18); + if (lookahead == '#') ADVANCE(126); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(70); + if (lookahead == '(') ADVANCE(48); + if (lookahead == ')') ADVANCE(49); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '+') ADVANCE(63); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(46); + if (lookahead == '/') ADVANCE(66); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(45); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(62); + if (lookahead == '>') ADVANCE(79); + if (lookahead == '@') ADVANCE(59); + if (lookahead == '[') ADVANCE(60); + if (lookahead == '\\') SKIP(10) + if (lookahead == ']') ADVANCE(61); + if (lookahead == '^') ADVANCE(71); + if (lookahead == '|') ADVANCE(69); + if (lookahead == '}') ADVANCE(97); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(11) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(125); + END_STATE(); + case 12: + if (lookahead == '!') ADVANCE(18); + if (lookahead == '#') ADVANCE(126); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(70); + if (lookahead == '(') ADVANCE(48); + if (lookahead == ')') ADVANCE(49); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '+') ADVANCE(63); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(46); + if (lookahead == '/') ADVANCE(66); + if (lookahead == ':') ADVANCE(54); + if (lookahead == ';') ADVANCE(45); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(62); + if (lookahead == '>') ADVANCE(79); + if (lookahead == '@') ADVANCE(59); + if (lookahead == '[') ADVANCE(60); + if (lookahead == '\\') SKIP(4) + if (lookahead == ']') ADVANCE(61); + if (lookahead == '^') ADVANCE(71); + if (lookahead == '|') ADVANCE(69); + if (lookahead == '}') ADVANCE(97); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(12) + if (sym_identifier_character_set_1(lookahead)) ADVANCE(125); + END_STATE(); + case 13: + if (lookahead == '!') ADVANCE(17); + if (lookahead == '#') ADVANCE(126); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(70); + if (lookahead == '(') ADVANCE(48); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '+') ADVANCE(63); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(47); + if (lookahead == '/') ADVANCE(66); + if (lookahead == '0') ADVANCE(109); + if (lookahead == ':') ADVANCE(55); + if (lookahead == ';') ADVANCE(45); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(62); + if (lookahead == '>') ADVANCE(79); + if (lookahead == '@') ADVANCE(59); + if (lookahead == '[') ADVANCE(60); + if (lookahead == '\\') SKIP(2) + if (lookahead == '^') ADVANCE(71); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(69); + if (lookahead == '~') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(13) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(108); + if (sym_identifier_character_set_2(lookahead)) ADVANCE(125); + END_STATE(); + case 14: + if (lookahead == '#') ADVANCE(126); + if (lookahead == '-') ADVANCE(19); + if (lookahead == ':') ADVANCE(54); + if (lookahead == '\\') SKIP(8) + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(14) + END_STATE(); + case 15: + if (lookahead == '#') ADVANCE(126); + if (lookahead == '\\') ADVANCE(102); + if (lookahead == '{') ADVANCE(96); + if (lookahead == '}') ADVANCE(23); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(15) + END_STATE(); + case 16: + if (lookahead == '.') ADVANCE(94); + END_STATE(); + case 17: + if (lookahead == '=') ADVANCE(77); + END_STATE(); + case 18: + if (lookahead == '=') ADVANCE(77); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(106); + END_STATE(); + case 19: + if (lookahead == '>') ADVANCE(57); + END_STATE(); + case 20: + if (lookahead == '_') ADVANCE(25); + if (lookahead == '0' || + lookahead == '1') ADVANCE(111); + END_STATE(); + case 21: + if (lookahead == '_') ADVANCE(26); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + END_STATE(); + case 22: + if (lookahead == '_') ADVANCE(30); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + END_STATE(); + case 23: + if (lookahead == '}') ADVANCE(99); + END_STATE(); + case 24: + if (lookahead == '+' || + lookahead == '-') ADVANCE(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); + END_STATE(); + case 25: + if (lookahead == '0' || + lookahead == '1') ADVANCE(111); + END_STATE(); + case 26: + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + END_STATE(); + case 27: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); + END_STATE(); + case 28: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(100); + END_STATE(); + case 29: + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(28); + END_STATE(); + case 30: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + END_STATE(); + case 31: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(100); + END_STATE(); + case 32: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(31); + END_STATE(); + case 33: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(32); + END_STATE(); + case 34: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(33); + END_STATE(); + case 35: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(34); + END_STATE(); + case 36: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(35); + END_STATE(); + case 37: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(36); + END_STATE(); + case 38: + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(37); + END_STATE(); + case 39: + if (eof) ADVANCE(44); + if (lookahead == '\n') SKIP(0) + END_STATE(); + case 40: + if (eof) ADVANCE(44); + if (lookahead == '\n') SKIP(0) + if (lookahead == '\r') SKIP(39) + END_STATE(); + case 41: + if (eof) ADVANCE(44); + if (lookahead == '\n') SKIP(43) + END_STATE(); + case 42: + if (eof) ADVANCE(44); + if (lookahead == '\n') SKIP(43) + if (lookahead == '\r') SKIP(41) + END_STATE(); + case 43: + if (eof) ADVANCE(44); + if (lookahead == '!') ADVANCE(18); + if (lookahead == '#') ADVANCE(126); + if (lookahead == '%') ADVANCE(67); + if (lookahead == '&') ADVANCE(70); + if (lookahead == '(') ADVANCE(48); + if (lookahead == ')') ADVANCE(49); + if (lookahead == '*') ADVANCE(51); + if (lookahead == '+') ADVANCE(63); + if (lookahead == ',') ADVANCE(50); + if (lookahead == '-') ADVANCE(64); + if (lookahead == '.') ADVANCE(47); + if (lookahead == '/') ADVANCE(66); + if (lookahead == '0') ADVANCE(109); + if (lookahead == ':') ADVANCE(54); + if (lookahead == ';') ADVANCE(45); + if (lookahead == '<') ADVANCE(74); + if (lookahead == '=') ADVANCE(62); + if (lookahead == '>') ADVANCE(79); + if (lookahead == '@') ADVANCE(59); + if (lookahead == '[') ADVANCE(60); + if (lookahead == '\\') SKIP(42) + if (lookahead == ']') ADVANCE(61); + if (lookahead == '^') ADVANCE(71); + if (lookahead == '{') ADVANCE(95); + if (lookahead == '|') ADVANCE(69); + if (lookahead == '}') ADVANCE(97); + if (lookahead == '~') ADVANCE(73); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(43) + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(108); + if (sym_identifier_character_set_1(lookahead)) ADVANCE(125); + END_STATE(); + case 44: + ACCEPT_TOKEN(ts_builtin_sym_end); + END_STATE(); + case 45: + ACCEPT_TOKEN(anon_sym_SEMI); + END_STATE(); + case 46: + ACCEPT_TOKEN(anon_sym_DOT); + END_STATE(); + case 47: + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '.') ADVANCE(16); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + END_STATE(); + case 48: + ACCEPT_TOKEN(anon_sym_LPAREN); + END_STATE(); + case 49: + ACCEPT_TOKEN(anon_sym_RPAREN); + END_STATE(); + case 50: + ACCEPT_TOKEN(anon_sym_COMMA); + END_STATE(); + case 51: + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(58); + if (lookahead == '=') ADVANCE(83); + END_STATE(); + case 52: + ACCEPT_TOKEN(anon_sym_GT_GT); + if (lookahead == '=') ADVANCE(89); + END_STATE(); + case 53: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 54: + ACCEPT_TOKEN(anon_sym_COLON); + END_STATE(); + case 55: + ACCEPT_TOKEN(anon_sym_COLON); + if (lookahead == '=') ADVANCE(53); + END_STATE(); + case 56: + ACCEPT_TOKEN(anon_sym_except_STAR); + END_STATE(); + case 57: + ACCEPT_TOKEN(anon_sym_DASH_GT); + END_STATE(); + case 58: + ACCEPT_TOKEN(anon_sym_STAR_STAR); + if (lookahead == '=') ADVANCE(88); + END_STATE(); + case 59: + ACCEPT_TOKEN(anon_sym_AT); + if (lookahead == '=') ADVANCE(85); + END_STATE(); + case 60: + ACCEPT_TOKEN(anon_sym_LBRACK); + END_STATE(); + case 61: + ACCEPT_TOKEN(anon_sym_RBRACK); + END_STATE(); + case 62: + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') ADVANCE(76); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '=') ADVANCE(81); + END_STATE(); + case 64: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(82); + END_STATE(); + case 65: + ACCEPT_TOKEN(anon_sym_DASH); + if (lookahead == '=') ADVANCE(82); + if (lookahead == '>') ADVANCE(57); + END_STATE(); + case 66: + ACCEPT_TOKEN(anon_sym_SLASH); + if (lookahead == '/') ADVANCE(68); + if (lookahead == '=') ADVANCE(84); + END_STATE(); + case 67: + ACCEPT_TOKEN(anon_sym_PERCENT); + if (lookahead == '=') ADVANCE(87); + END_STATE(); + case 68: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + if (lookahead == '=') ADVANCE(86); + END_STATE(); + case 69: + ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '=') ADVANCE(93); + END_STATE(); + case 70: + ACCEPT_TOKEN(anon_sym_AMP); + if (lookahead == '=') ADVANCE(91); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_CARET); + if (lookahead == '=') ADVANCE(92); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_LT_LT); + if (lookahead == '=') ADVANCE(90); + END_STATE(); + case 73: + ACCEPT_TOKEN(anon_sym_TILDE); + END_STATE(); + case 74: + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '<') ADVANCE(72); + if (lookahead == '=') ADVANCE(75); + if (lookahead == '>') ADVANCE(80); + END_STATE(); + case 75: + ACCEPT_TOKEN(anon_sym_LT_EQ); + END_STATE(); + case 76: + ACCEPT_TOKEN(anon_sym_EQ_EQ); + END_STATE(); + case 77: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_GT_EQ); + END_STATE(); + case 79: + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(78); + if (lookahead == '>') ADVANCE(52); + END_STATE(); + case 80: + ACCEPT_TOKEN(anon_sym_LT_GT); + END_STATE(); + case 81: + ACCEPT_TOKEN(anon_sym_PLUS_EQ); + END_STATE(); + case 82: + ACCEPT_TOKEN(anon_sym_DASH_EQ); + END_STATE(); + case 83: + ACCEPT_TOKEN(anon_sym_STAR_EQ); + END_STATE(); + case 84: + ACCEPT_TOKEN(anon_sym_SLASH_EQ); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_AT_EQ); + END_STATE(); + case 86: + ACCEPT_TOKEN(anon_sym_SLASH_SLASH_EQ); + END_STATE(); + case 87: + ACCEPT_TOKEN(anon_sym_PERCENT_EQ); + END_STATE(); + case 88: + ACCEPT_TOKEN(anon_sym_STAR_STAR_EQ); + END_STATE(); + case 89: + ACCEPT_TOKEN(anon_sym_GT_GT_EQ); + END_STATE(); + case 90: + ACCEPT_TOKEN(anon_sym_LT_LT_EQ); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_AMP_EQ); + END_STATE(); + case 92: + ACCEPT_TOKEN(anon_sym_CARET_EQ); + END_STATE(); + case 93: + ACCEPT_TOKEN(anon_sym_PIPE_EQ); + END_STATE(); + case 94: + ACCEPT_TOKEN(sym_ellipsis); + END_STATE(); + case 95: + ACCEPT_TOKEN(anon_sym_LBRACE); + END_STATE(); + case 96: + ACCEPT_TOKEN(anon_sym_LBRACE); + if (lookahead == '{') ADVANCE(98); + END_STATE(); + case 97: + ACCEPT_TOKEN(anon_sym_RBRACE); + END_STATE(); + case 98: + ACCEPT_TOKEN(anon_sym_LBRACE_LBRACE); + END_STATE(); + case 99: + ACCEPT_TOKEN(anon_sym_RBRACE_RBRACE); + END_STATE(); + case 100: + ACCEPT_TOKEN(sym_escape_sequence); + END_STATE(); + case 101: + ACCEPT_TOKEN(sym_escape_sequence); + if (lookahead == '\\') ADVANCE(102); + END_STATE(); + case 102: + ACCEPT_TOKEN(sym__not_escape_sequence); + if (lookahead == '\n') ADVANCE(101); + if (lookahead == '\r') ADVANCE(5); + if (lookahead == 'U') ADVANCE(38); + if (lookahead == 'u') ADVANCE(34); + if (lookahead == 'x') ADVANCE(32); + if (lookahead == '"' || + lookahead == '\'' || + lookahead == '\\' || + lookahead == 'a' || + lookahead == 'b' || + lookahead == 'f' || + lookahead == 'n' || + lookahead == 'r' || + ('t' <= lookahead && lookahead <= 'v')) ADVANCE(100); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(29); + END_STATE(); + case 103: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == '\r') ADVANCE(105); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(105); + END_STATE(); + case 104: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead == '#') ADVANCE(105); + if (lookahead == '\\') ADVANCE(103); + if (lookahead == '\t' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) ADVANCE(104); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(105); + END_STATE(); + case 105: + ACCEPT_TOKEN(aux_sym_format_specifier_token1); + if (lookahead != 0 && + lookahead != '\n' && + lookahead != '{' && + lookahead != '}') ADVANCE(105); + END_STATE(); + case 106: + ACCEPT_TOKEN(sym_type_conversion); + END_STATE(); + case 107: + ACCEPT_TOKEN(sym_integer); + END_STATE(); + case 108: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(117); + if (lookahead == '_') ADVANCE(110); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(24); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + END_STATE(); + case 109: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(117); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(20); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(21); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(22); + if (lookahead == '_') ADVANCE(110); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(24); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + END_STATE(); + case 110: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '.') ADVANCE(117); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(24); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(108); + END_STATE(); + case 111: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(25); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(107); + if (lookahead == '0' || + lookahead == '1') ADVANCE(111); + END_STATE(); + case 112: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(26); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '7')) ADVANCE(112); + END_STATE(); + case 113: + ACCEPT_TOKEN(sym_integer); + if (lookahead == '_') ADVANCE(30); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(107); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(113); + END_STATE(); + case 114: + ACCEPT_TOKEN(sym_float); + END_STATE(); + case 115: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(117); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(24); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + END_STATE(); + case 116: + ACCEPT_TOKEN(sym_float); + if (lookahead == '_') ADVANCE(118); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); + END_STATE(); + case 117: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(24); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(115); + END_STATE(); + case 118: + ACCEPT_TOKEN(sym_float); + if (lookahead == 'J' || + lookahead == 'L' || + lookahead == 'j' || + lookahead == 'l') ADVANCE(114); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(116); + END_STATE(); + case 119: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == '*') ADVANCE(56); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(125); + END_STATE(); + case 120: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'c') ADVANCE(121); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(125); + END_STATE(); + case 121: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'e') ADVANCE(122); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(125); + END_STATE(); + case 122: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'p') ADVANCE(123); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(125); + END_STATE(); + case 123: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 't') ADVANCE(119); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(125); + END_STATE(); + case 124: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'x') ADVANCE(120); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(125); + END_STATE(); + case 125: + ACCEPT_TOKEN(sym_identifier); + if (sym_identifier_character_set_3(lookahead)) ADVANCE(125); + END_STATE(); + case 126: + ACCEPT_TOKEN(sym_comment); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(126); + 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 == 'F') ADVANCE(1); + if (lookahead == 'N') ADVANCE(2); + if (lookahead == 'T') ADVANCE(3); + if (lookahead == '\\') SKIP(4) + if (lookahead == '_') ADVANCE(5); + if (lookahead == 'a') ADVANCE(6); + if (lookahead == 'b') ADVANCE(7); + if (lookahead == 'c') ADVANCE(8); + if (lookahead == 'd') ADVANCE(9); + if (lookahead == 'e') ADVANCE(10); + if (lookahead == 'f') ADVANCE(11); + if (lookahead == 'g') ADVANCE(12); + if (lookahead == 'i') ADVANCE(13); + if (lookahead == 'l') ADVANCE(14); + if (lookahead == 'm') ADVANCE(15); + if (lookahead == 'n') ADVANCE(16); + if (lookahead == 'o') ADVANCE(17); + if (lookahead == 'p') ADVANCE(18); + if (lookahead == 'r') ADVANCE(19); + if (lookahead == 's') ADVANCE(20); + if (lookahead == 't') ADVANCE(21); + if (lookahead == 'w') ADVANCE(22); + if (lookahead == 'y') ADVANCE(23); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\f' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == 8203 || + lookahead == 8288 || + lookahead == 65279) SKIP(0) + END_STATE(); + case 1: + if (lookahead == 'a') ADVANCE(24); + END_STATE(); + case 2: + if (lookahead == 'o') ADVANCE(25); + END_STATE(); + case 3: + if (lookahead == 'r') ADVANCE(26); + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(0) + if (lookahead == '\r') SKIP(27) + END_STATE(); + case 5: + if (lookahead == '_') ADVANCE(28); + END_STATE(); + case 6: + if (lookahead == 'n') ADVANCE(29); + if (lookahead == 's') ADVANCE(30); + if (lookahead == 'w') ADVANCE(31); + END_STATE(); + case 7: + if (lookahead == 'r') ADVANCE(32); + END_STATE(); + case 8: + if (lookahead == 'a') ADVANCE(33); + if (lookahead == 'l') ADVANCE(34); + if (lookahead == 'o') ADVANCE(35); + END_STATE(); + case 9: + if (lookahead == 'e') ADVANCE(36); + END_STATE(); + case 10: + if (lookahead == 'l') ADVANCE(37); + if (lookahead == 'x') ADVANCE(38); + END_STATE(); + case 11: + if (lookahead == 'i') ADVANCE(39); + if (lookahead == 'o') ADVANCE(40); + if (lookahead == 'r') ADVANCE(41); + END_STATE(); + case 12: + if (lookahead == 'l') ADVANCE(42); + END_STATE(); + case 13: + if (lookahead == 'f') ADVANCE(43); + if (lookahead == 'm') ADVANCE(44); + if (lookahead == 'n') ADVANCE(45); + END_STATE(); + case 14: + if (lookahead == 'a') ADVANCE(46); + END_STATE(); + case 15: + if (lookahead == 'a') ADVANCE(47); + END_STATE(); + case 16: + if (lookahead == 'o') ADVANCE(48); + END_STATE(); + case 17: + if (lookahead == 'r') ADVANCE(49); + END_STATE(); + case 18: + if (lookahead == 'a') ADVANCE(50); + if (lookahead == 'r') ADVANCE(51); + END_STATE(); + case 19: + if (lookahead == 'a') ADVANCE(52); + if (lookahead == 'e') ADVANCE(53); + END_STATE(); + case 20: + if (lookahead == 't') ADVANCE(54); + END_STATE(); + case 21: + if (lookahead == 'r') ADVANCE(55); + END_STATE(); + case 22: + if (lookahead == 'h') ADVANCE(56); + if (lookahead == 'i') ADVANCE(57); + END_STATE(); + case 23: + if (lookahead == 'i') ADVANCE(58); + END_STATE(); + case 24: + if (lookahead == 'l') ADVANCE(59); + END_STATE(); + case 25: + if (lookahead == 'n') ADVANCE(60); + END_STATE(); + case 26: + if (lookahead == 'u') ADVANCE(61); + END_STATE(); + case 27: + if (lookahead == '\n') SKIP(0) + END_STATE(); + case 28: + if (lookahead == 'f') ADVANCE(62); + END_STATE(); + case 29: + if (lookahead == 'd') ADVANCE(63); + END_STATE(); + case 30: + ACCEPT_TOKEN(anon_sym_as); + if (lookahead == 's') ADVANCE(64); + if (lookahead == 'y') ADVANCE(65); + END_STATE(); + case 31: + if (lookahead == 'a') ADVANCE(66); + END_STATE(); + case 32: + if (lookahead == 'e') ADVANCE(67); + END_STATE(); + case 33: + if (lookahead == 's') ADVANCE(68); + END_STATE(); + case 34: + if (lookahead == 'a') ADVANCE(69); + END_STATE(); + case 35: + if (lookahead == 'n') ADVANCE(70); + END_STATE(); + case 36: + if (lookahead == 'f') ADVANCE(71); + if (lookahead == 'l') ADVANCE(72); + END_STATE(); + case 37: + if (lookahead == 'i') ADVANCE(73); + if (lookahead == 's') ADVANCE(74); + END_STATE(); + case 38: + if (lookahead == 'c') ADVANCE(75); + if (lookahead == 'e') ADVANCE(76); + END_STATE(); + case 39: + if (lookahead == 'n') ADVANCE(77); + END_STATE(); + case 40: + if (lookahead == 'r') ADVANCE(78); + END_STATE(); + case 41: + if (lookahead == 'o') ADVANCE(79); + END_STATE(); + case 42: + if (lookahead == 'o') ADVANCE(80); + END_STATE(); + case 43: + ACCEPT_TOKEN(anon_sym_if); + END_STATE(); + case 44: + if (lookahead == 'p') ADVANCE(81); + END_STATE(); + case 45: + ACCEPT_TOKEN(anon_sym_in); + END_STATE(); + case 46: + if (lookahead == 'm') ADVANCE(82); + END_STATE(); + case 47: + if (lookahead == 't') ADVANCE(83); + END_STATE(); + case 48: + if (lookahead == 'n') ADVANCE(84); + if (lookahead == 't') ADVANCE(85); + END_STATE(); + case 49: + ACCEPT_TOKEN(anon_sym_or); + END_STATE(); + case 50: + if (lookahead == 's') ADVANCE(86); + END_STATE(); + case 51: + if (lookahead == 'i') ADVANCE(87); + END_STATE(); + case 52: + if (lookahead == 'i') ADVANCE(88); + END_STATE(); + case 53: + if (lookahead == 't') ADVANCE(89); + END_STATE(); + case 54: + if (lookahead == 'r') ADVANCE(90); + END_STATE(); + case 55: + if (lookahead == 'y') ADVANCE(91); + END_STATE(); + case 56: + if (lookahead == 'i') ADVANCE(92); + END_STATE(); + case 57: + if (lookahead == 't') ADVANCE(93); + END_STATE(); + case 58: + if (lookahead == 'e') ADVANCE(94); + END_STATE(); + case 59: + if (lookahead == 's') ADVANCE(95); + END_STATE(); + case 60: + if (lookahead == 'e') ADVANCE(96); + END_STATE(); + case 61: + if (lookahead == 'e') ADVANCE(97); + END_STATE(); + case 62: + if (lookahead == 'u') ADVANCE(98); + END_STATE(); + case 63: + ACCEPT_TOKEN(anon_sym_and); + END_STATE(); + case 64: + if (lookahead == 'e') ADVANCE(99); + END_STATE(); + case 65: + if (lookahead == 'n') ADVANCE(100); + END_STATE(); + case 66: + if (lookahead == 'i') ADVANCE(101); + END_STATE(); + case 67: + if (lookahead == 'a') ADVANCE(102); + END_STATE(); + case 68: + if (lookahead == 'e') ADVANCE(103); + END_STATE(); + case 69: + if (lookahead == 's') ADVANCE(104); + END_STATE(); + case 70: + if (lookahead == 't') ADVANCE(105); + END_STATE(); + case 71: + ACCEPT_TOKEN(anon_sym_def); + END_STATE(); + case 72: + ACCEPT_TOKEN(anon_sym_del); + END_STATE(); + case 73: + if (lookahead == 'f') ADVANCE(106); + END_STATE(); + case 74: + if (lookahead == 'e') ADVANCE(107); + END_STATE(); + case 75: + if (lookahead == 'e') ADVANCE(108); + END_STATE(); + case 76: + if (lookahead == 'c') ADVANCE(109); + END_STATE(); + case 77: + if (lookahead == 'a') ADVANCE(110); + END_STATE(); + case 78: + ACCEPT_TOKEN(anon_sym_for); + END_STATE(); + case 79: + if (lookahead == 'm') ADVANCE(111); + END_STATE(); + case 80: + if (lookahead == 'b') ADVANCE(112); + END_STATE(); + case 81: + if (lookahead == 'o') ADVANCE(113); + END_STATE(); + case 82: + if (lookahead == 'b') ADVANCE(114); + END_STATE(); + case 83: + if (lookahead == 'c') ADVANCE(115); + END_STATE(); + case 84: + if (lookahead == 'l') ADVANCE(116); + END_STATE(); + case 85: + ACCEPT_TOKEN(anon_sym_not); + END_STATE(); + case 86: + if (lookahead == 's') ADVANCE(117); + END_STATE(); + case 87: + if (lookahead == 'n') ADVANCE(118); + END_STATE(); + case 88: + if (lookahead == 's') ADVANCE(119); + END_STATE(); + case 89: + if (lookahead == 'u') ADVANCE(120); + END_STATE(); + case 90: + if (lookahead == 'u') ADVANCE(121); + END_STATE(); + case 91: + ACCEPT_TOKEN(anon_sym_try); + END_STATE(); + case 92: + if (lookahead == 'l') ADVANCE(122); + END_STATE(); + case 93: + if (lookahead == 'h') ADVANCE(123); + END_STATE(); + case 94: + if (lookahead == 'l') ADVANCE(124); + END_STATE(); + case 95: + if (lookahead == 'e') ADVANCE(125); + END_STATE(); + case 96: + ACCEPT_TOKEN(sym_none); + END_STATE(); + case 97: + ACCEPT_TOKEN(sym_true); + END_STATE(); + case 98: + if (lookahead == 't') ADVANCE(126); + END_STATE(); + case 99: + if (lookahead == 'r') ADVANCE(127); + END_STATE(); + case 100: + if (lookahead == 'c') ADVANCE(128); + END_STATE(); + case 101: + if (lookahead == 't') ADVANCE(129); + END_STATE(); + case 102: + if (lookahead == 'k') ADVANCE(130); + END_STATE(); + case 103: + ACCEPT_TOKEN(anon_sym_case); + END_STATE(); + case 104: + if (lookahead == 's') ADVANCE(131); + END_STATE(); + case 105: + if (lookahead == 'i') ADVANCE(132); + END_STATE(); + case 106: + ACCEPT_TOKEN(anon_sym_elif); + END_STATE(); + case 107: + ACCEPT_TOKEN(anon_sym_else); + END_STATE(); + case 108: + if (lookahead == 'p') ADVANCE(133); + END_STATE(); + case 109: + ACCEPT_TOKEN(anon_sym_exec); + END_STATE(); + case 110: + if (lookahead == 'l') ADVANCE(134); + END_STATE(); + case 111: + ACCEPT_TOKEN(anon_sym_from); + END_STATE(); + case 112: + if (lookahead == 'a') ADVANCE(135); + END_STATE(); + case 113: + if (lookahead == 'r') ADVANCE(136); + END_STATE(); + case 114: + if (lookahead == 'd') ADVANCE(137); + END_STATE(); + case 115: + if (lookahead == 'h') ADVANCE(138); + END_STATE(); + case 116: + if (lookahead == 'o') ADVANCE(139); + END_STATE(); + case 117: + ACCEPT_TOKEN(anon_sym_pass); + END_STATE(); + case 118: + if (lookahead == 't') ADVANCE(140); + END_STATE(); + case 119: + if (lookahead == 'e') ADVANCE(141); + END_STATE(); + case 120: + if (lookahead == 'r') ADVANCE(142); + END_STATE(); + case 121: + if (lookahead == 'c') ADVANCE(143); + END_STATE(); + case 122: + if (lookahead == 'e') ADVANCE(144); + END_STATE(); + case 123: + ACCEPT_TOKEN(anon_sym_with); + END_STATE(); + case 124: + if (lookahead == 'd') ADVANCE(145); + END_STATE(); + case 125: + ACCEPT_TOKEN(sym_false); + END_STATE(); + case 126: + if (lookahead == 'u') ADVANCE(146); + END_STATE(); + case 127: + if (lookahead == 't') ADVANCE(147); + END_STATE(); + case 128: + ACCEPT_TOKEN(anon_sym_async); + END_STATE(); + case 129: + ACCEPT_TOKEN(anon_sym_await); + END_STATE(); + case 130: + ACCEPT_TOKEN(anon_sym_break); + END_STATE(); + case 131: + ACCEPT_TOKEN(anon_sym_class); + END_STATE(); + case 132: + if (lookahead == 'n') ADVANCE(148); + END_STATE(); + case 133: + if (lookahead == 't') ADVANCE(149); + END_STATE(); + case 134: + if (lookahead == 'l') ADVANCE(150); + END_STATE(); + case 135: + if (lookahead == 'l') ADVANCE(151); + END_STATE(); + case 136: + if (lookahead == 't') ADVANCE(152); + END_STATE(); + case 137: + if (lookahead == 'a') ADVANCE(153); + END_STATE(); + case 138: + ACCEPT_TOKEN(anon_sym_match); + END_STATE(); + case 139: + if (lookahead == 'c') ADVANCE(154); + END_STATE(); + case 140: + ACCEPT_TOKEN(anon_sym_print); + END_STATE(); + case 141: + ACCEPT_TOKEN(anon_sym_raise); + END_STATE(); + case 142: + if (lookahead == 'n') ADVANCE(155); + END_STATE(); + case 143: + if (lookahead == 't') ADVANCE(156); + END_STATE(); + case 144: + ACCEPT_TOKEN(anon_sym_while); + END_STATE(); + case 145: + ACCEPT_TOKEN(anon_sym_yield); + END_STATE(); + case 146: + if (lookahead == 'r') ADVANCE(157); + END_STATE(); + case 147: + ACCEPT_TOKEN(anon_sym_assert); + END_STATE(); + case 148: + if (lookahead == 'u') ADVANCE(158); + END_STATE(); + case 149: + ACCEPT_TOKEN(anon_sym_except); + END_STATE(); + case 150: + if (lookahead == 'y') ADVANCE(159); + END_STATE(); + case 151: + ACCEPT_TOKEN(anon_sym_global); + END_STATE(); + case 152: + ACCEPT_TOKEN(anon_sym_import); + END_STATE(); + case 153: + ACCEPT_TOKEN(anon_sym_lambda); + END_STATE(); + case 154: + if (lookahead == 'a') ADVANCE(160); + END_STATE(); + case 155: + ACCEPT_TOKEN(anon_sym_return); + END_STATE(); + case 156: + ACCEPT_TOKEN(anon_sym_struct); + END_STATE(); + case 157: + if (lookahead == 'e') ADVANCE(161); + END_STATE(); + case 158: + if (lookahead == 'e') ADVANCE(162); + END_STATE(); + case 159: + ACCEPT_TOKEN(anon_sym_finally); + END_STATE(); + case 160: + if (lookahead == 'l') ADVANCE(163); + END_STATE(); + case 161: + if (lookahead == '_') ADVANCE(164); + END_STATE(); + case 162: + ACCEPT_TOKEN(anon_sym_continue); + END_STATE(); + case 163: + ACCEPT_TOKEN(anon_sym_nonlocal); + END_STATE(); + case 164: + if (lookahead == '_') ADVANCE(165); + END_STATE(); + case 165: + ACCEPT_TOKEN(anon_sym___future__); + END_STATE(); + default: + return false; + } +} + +static const TSLexMode ts_lex_modes[STATE_COUNT] = { + [0] = {.lex_state = 0, .external_lex_state = 1}, + [1] = {.lex_state = 43, .external_lex_state = 2}, + [2] = {.lex_state = 43, .external_lex_state = 3}, + [3] = {.lex_state = 43, .external_lex_state = 3}, + [4] = {.lex_state = 43, .external_lex_state = 3}, + [5] = {.lex_state = 43, .external_lex_state = 4}, + [6] = {.lex_state = 43, .external_lex_state = 3}, + [7] = {.lex_state = 13, .external_lex_state = 4}, + [8] = {.lex_state = 43, .external_lex_state = 3}, + [9] = {.lex_state = 43, .external_lex_state = 3}, + [10] = {.lex_state = 43, .external_lex_state = 3}, + [11] = {.lex_state = 43, .external_lex_state = 3}, + [12] = {.lex_state = 43, .external_lex_state = 3}, + [13] = {.lex_state = 43, .external_lex_state = 3}, + [14] = {.lex_state = 43, .external_lex_state = 3}, + [15] = {.lex_state = 13, .external_lex_state = 4}, + [16] = {.lex_state = 43, .external_lex_state = 3}, + [17] = {.lex_state = 43, .external_lex_state = 3}, + [18] = {.lex_state = 43, .external_lex_state = 3}, + [19] = {.lex_state = 43, .external_lex_state = 3}, + [20] = {.lex_state = 43, .external_lex_state = 3}, + [21] = {.lex_state = 43, .external_lex_state = 3}, + [22] = {.lex_state = 43, .external_lex_state = 3}, + [23] = {.lex_state = 43, .external_lex_state = 3}, + [24] = {.lex_state = 43, .external_lex_state = 3}, + [25] = {.lex_state = 43, .external_lex_state = 3}, + [26] = {.lex_state = 43, .external_lex_state = 3}, + [27] = {.lex_state = 43, .external_lex_state = 3}, + [28] = {.lex_state = 43, .external_lex_state = 3}, + [29] = {.lex_state = 43, .external_lex_state = 3}, + [30] = {.lex_state = 43, .external_lex_state = 3}, + [31] = {.lex_state = 43, .external_lex_state = 3}, + [32] = {.lex_state = 43, .external_lex_state = 3}, + [33] = {.lex_state = 43, .external_lex_state = 3}, + [34] = {.lex_state = 43, .external_lex_state = 3}, + [35] = {.lex_state = 43, .external_lex_state = 3}, + [36] = {.lex_state = 43, .external_lex_state = 3}, + [37] = {.lex_state = 43, .external_lex_state = 3}, + [38] = {.lex_state = 43, .external_lex_state = 3}, + [39] = {.lex_state = 43, .external_lex_state = 3}, + [40] = {.lex_state = 43, .external_lex_state = 3}, + [41] = {.lex_state = 43, .external_lex_state = 3}, + [42] = {.lex_state = 43, .external_lex_state = 3}, + [43] = {.lex_state = 43, .external_lex_state = 3}, + [44] = {.lex_state = 43, .external_lex_state = 3}, + [45] = {.lex_state = 43, .external_lex_state = 3}, + [46] = {.lex_state = 43, .external_lex_state = 3}, + [47] = {.lex_state = 43, .external_lex_state = 3}, + [48] = {.lex_state = 43, .external_lex_state = 3}, + [49] = {.lex_state = 43, .external_lex_state = 3}, + [50] = {.lex_state = 43, .external_lex_state = 3}, + [51] = {.lex_state = 43, .external_lex_state = 3}, + [52] = {.lex_state = 43, .external_lex_state = 3}, + [53] = {.lex_state = 43, .external_lex_state = 3}, + [54] = {.lex_state = 43, .external_lex_state = 2}, + [55] = {.lex_state = 43, .external_lex_state = 3}, + [56] = {.lex_state = 43, .external_lex_state = 4}, + [57] = {.lex_state = 43, .external_lex_state = 2}, + [58] = {.lex_state = 43, .external_lex_state = 3}, + [59] = {.lex_state = 43, .external_lex_state = 5}, + [60] = {.lex_state = 43, .external_lex_state = 2}, + [61] = {.lex_state = 43, .external_lex_state = 4}, + [62] = {.lex_state = 43, .external_lex_state = 5}, + [63] = {.lex_state = 43, .external_lex_state = 6}, + [64] = {.lex_state = 43, .external_lex_state = 7}, + [65] = {.lex_state = 43, .external_lex_state = 6}, + [66] = {.lex_state = 43, .external_lex_state = 7}, + [67] = {.lex_state = 43, .external_lex_state = 6}, + [68] = {.lex_state = 43, .external_lex_state = 8}, + [69] = {.lex_state = 43, .external_lex_state = 8}, + [70] = {.lex_state = 43, .external_lex_state = 8}, + [71] = {.lex_state = 43, .external_lex_state = 8}, + [72] = {.lex_state = 43, .external_lex_state = 8}, + [73] = {.lex_state = 43, .external_lex_state = 8}, + [74] = {.lex_state = 43, .external_lex_state = 8}, + [75] = {.lex_state = 43, .external_lex_state = 8}, + [76] = {.lex_state = 43, .external_lex_state = 8}, + [77] = {.lex_state = 43, .external_lex_state = 8}, + [78] = {.lex_state = 43, .external_lex_state = 8}, + [79] = {.lex_state = 43, .external_lex_state = 8}, + [80] = {.lex_state = 43, .external_lex_state = 8}, + [81] = {.lex_state = 43, .external_lex_state = 8}, + [82] = {.lex_state = 43, .external_lex_state = 8}, + [83] = {.lex_state = 43, .external_lex_state = 8}, + [84] = {.lex_state = 43, .external_lex_state = 8}, + [85] = {.lex_state = 43, .external_lex_state = 7}, + [86] = {.lex_state = 43, .external_lex_state = 8}, + [87] = {.lex_state = 43, .external_lex_state = 8}, + [88] = {.lex_state = 43, .external_lex_state = 8}, + [89] = {.lex_state = 43, .external_lex_state = 8}, + [90] = {.lex_state = 43, .external_lex_state = 8}, + [91] = {.lex_state = 43, .external_lex_state = 8}, + [92] = {.lex_state = 43, .external_lex_state = 8}, + [93] = {.lex_state = 43, .external_lex_state = 8}, + [94] = {.lex_state = 43, .external_lex_state = 8}, + [95] = {.lex_state = 43, .external_lex_state = 8}, + [96] = {.lex_state = 43, .external_lex_state = 8}, + [97] = {.lex_state = 43, .external_lex_state = 8}, + [98] = {.lex_state = 43, .external_lex_state = 8}, + [99] = {.lex_state = 43, .external_lex_state = 8}, + [100] = {.lex_state = 43, .external_lex_state = 8}, + [101] = {.lex_state = 43, .external_lex_state = 8}, + [102] = {.lex_state = 43, .external_lex_state = 8}, + [103] = {.lex_state = 43, .external_lex_state = 8}, + [104] = {.lex_state = 43, .external_lex_state = 8}, + [105] = {.lex_state = 43, .external_lex_state = 8}, + [106] = {.lex_state = 43, .external_lex_state = 8}, + [107] = {.lex_state = 43, .external_lex_state = 8}, + [108] = {.lex_state = 43, .external_lex_state = 8}, + [109] = {.lex_state = 43, .external_lex_state = 8}, + [110] = {.lex_state = 43, .external_lex_state = 8}, + [111] = {.lex_state = 43, .external_lex_state = 8}, + [112] = {.lex_state = 43, .external_lex_state = 8}, + [113] = {.lex_state = 43, .external_lex_state = 8}, + [114] = {.lex_state = 43, .external_lex_state = 8}, + [115] = {.lex_state = 43, .external_lex_state = 8}, + [116] = {.lex_state = 43, .external_lex_state = 8}, + [117] = {.lex_state = 43, .external_lex_state = 6}, + [118] = {.lex_state = 43, .external_lex_state = 7}, + [119] = {.lex_state = 43, .external_lex_state = 4}, + [120] = {.lex_state = 43, .external_lex_state = 4}, + [121] = {.lex_state = 43, .external_lex_state = 4}, + [122] = {.lex_state = 43, .external_lex_state = 4}, + [123] = {.lex_state = 43, .external_lex_state = 2}, + [124] = {.lex_state = 43, .external_lex_state = 2}, + [125] = {.lex_state = 43, .external_lex_state = 6}, + [126] = {.lex_state = 43, .external_lex_state = 2}, + [127] = {.lex_state = 43, .external_lex_state = 2}, + [128] = {.lex_state = 43, .external_lex_state = 7}, + [129] = {.lex_state = 43, .external_lex_state = 7}, + [130] = {.lex_state = 43, .external_lex_state = 6}, + [131] = {.lex_state = 43, .external_lex_state = 7}, + [132] = {.lex_state = 43, .external_lex_state = 6}, + [133] = {.lex_state = 43, .external_lex_state = 7}, + [134] = {.lex_state = 43, .external_lex_state = 6}, + [135] = {.lex_state = 43, .external_lex_state = 6}, + [136] = {.lex_state = 43, .external_lex_state = 7}, + [137] = {.lex_state = 43, .external_lex_state = 7}, + [138] = {.lex_state = 43, .external_lex_state = 6}, + [139] = {.lex_state = 43, .external_lex_state = 5}, + [140] = {.lex_state = 43, .external_lex_state = 5}, + [141] = {.lex_state = 43, .external_lex_state = 2}, + [142] = {.lex_state = 43, .external_lex_state = 2}, + [143] = {.lex_state = 43, .external_lex_state = 5}, + [144] = {.lex_state = 43, .external_lex_state = 5}, + [145] = {.lex_state = 43, .external_lex_state = 5}, + [146] = {.lex_state = 43, .external_lex_state = 5}, + [147] = {.lex_state = 43, .external_lex_state = 5}, + [148] = {.lex_state = 43, .external_lex_state = 7}, + [149] = {.lex_state = 43, .external_lex_state = 7}, + [150] = {.lex_state = 43, .external_lex_state = 7}, + [151] = {.lex_state = 43, .external_lex_state = 7}, + [152] = {.lex_state = 43, .external_lex_state = 7}, + [153] = {.lex_state = 43, .external_lex_state = 7}, + [154] = {.lex_state = 43, .external_lex_state = 7}, + [155] = {.lex_state = 43, .external_lex_state = 7}, + [156] = {.lex_state = 43, .external_lex_state = 7}, + [157] = {.lex_state = 43, .external_lex_state = 7}, + [158] = {.lex_state = 43, .external_lex_state = 7}, + [159] = {.lex_state = 43, .external_lex_state = 7}, + [160] = {.lex_state = 43, .external_lex_state = 7}, + [161] = {.lex_state = 43, .external_lex_state = 7}, + [162] = {.lex_state = 43, .external_lex_state = 7}, + [163] = {.lex_state = 43, .external_lex_state = 7}, + [164] = {.lex_state = 43, .external_lex_state = 7}, + [165] = {.lex_state = 43, .external_lex_state = 7}, + [166] = {.lex_state = 43, .external_lex_state = 7}, + [167] = {.lex_state = 43, .external_lex_state = 7}, + [168] = {.lex_state = 43, .external_lex_state = 7}, + [169] = {.lex_state = 43, .external_lex_state = 7}, + [170] = {.lex_state = 43, .external_lex_state = 7}, + [171] = {.lex_state = 43, .external_lex_state = 7}, + [172] = {.lex_state = 43, .external_lex_state = 7}, + [173] = {.lex_state = 43, .external_lex_state = 7}, + [174] = {.lex_state = 43, .external_lex_state = 7}, + [175] = {.lex_state = 43, .external_lex_state = 7}, + [176] = {.lex_state = 43, .external_lex_state = 7}, + [177] = {.lex_state = 43, .external_lex_state = 7}, + [178] = {.lex_state = 43, .external_lex_state = 7}, + [179] = {.lex_state = 43, .external_lex_state = 7}, + [180] = {.lex_state = 43, .external_lex_state = 7}, + [181] = {.lex_state = 43, .external_lex_state = 7}, + [182] = {.lex_state = 43, .external_lex_state = 7}, + [183] = {.lex_state = 43, .external_lex_state = 2}, + [184] = {.lex_state = 43, .external_lex_state = 7}, + [185] = {.lex_state = 43, .external_lex_state = 2}, + [186] = {.lex_state = 43, .external_lex_state = 2}, + [187] = {.lex_state = 43, .external_lex_state = 5}, + [188] = {.lex_state = 43, .external_lex_state = 7}, + [189] = {.lex_state = 43, .external_lex_state = 5}, + [190] = {.lex_state = 43, .external_lex_state = 5}, + [191] = {.lex_state = 43, .external_lex_state = 6}, + [192] = {.lex_state = 43, .external_lex_state = 5}, + [193] = {.lex_state = 43, .external_lex_state = 7}, + [194] = {.lex_state = 43, .external_lex_state = 6}, + [195] = {.lex_state = 43, .external_lex_state = 2}, + [196] = {.lex_state = 43, .external_lex_state = 6}, + [197] = {.lex_state = 43, .external_lex_state = 2}, + [198] = {.lex_state = 43, .external_lex_state = 2}, + [199] = {.lex_state = 43, .external_lex_state = 6}, + [200] = {.lex_state = 43, .external_lex_state = 7}, + [201] = {.lex_state = 43, .external_lex_state = 6}, + [202] = {.lex_state = 43, .external_lex_state = 7}, + [203] = {.lex_state = 43, .external_lex_state = 7}, + [204] = {.lex_state = 43, .external_lex_state = 6}, + [205] = {.lex_state = 43, .external_lex_state = 6}, + [206] = {.lex_state = 43, .external_lex_state = 7}, + [207] = {.lex_state = 43, .external_lex_state = 2}, + [208] = {.lex_state = 43, .external_lex_state = 7}, + [209] = {.lex_state = 43, .external_lex_state = 6}, + [210] = {.lex_state = 43, .external_lex_state = 7}, + [211] = {.lex_state = 43, .external_lex_state = 6}, + [212] = {.lex_state = 43, .external_lex_state = 7}, + [213] = {.lex_state = 43, .external_lex_state = 7}, + [214] = {.lex_state = 43, .external_lex_state = 7}, + [215] = {.lex_state = 43, .external_lex_state = 6}, + [216] = {.lex_state = 43, .external_lex_state = 6}, + [217] = {.lex_state = 43, .external_lex_state = 7}, + [218] = {.lex_state = 43, .external_lex_state = 5}, + [219] = {.lex_state = 43, .external_lex_state = 5}, + [220] = {.lex_state = 43, .external_lex_state = 5}, + [221] = {.lex_state = 43, .external_lex_state = 5}, + [222] = {.lex_state = 43, .external_lex_state = 7}, + [223] = {.lex_state = 43, .external_lex_state = 5}, + [224] = {.lex_state = 43, .external_lex_state = 5}, + [225] = {.lex_state = 43, .external_lex_state = 7}, + [226] = {.lex_state = 43, .external_lex_state = 5}, + [227] = {.lex_state = 43, .external_lex_state = 5}, + [228] = {.lex_state = 43, .external_lex_state = 5}, + [229] = {.lex_state = 43, .external_lex_state = 5}, + [230] = {.lex_state = 43, .external_lex_state = 5}, + [231] = {.lex_state = 43, .external_lex_state = 5}, + [232] = {.lex_state = 43, .external_lex_state = 6}, + [233] = {.lex_state = 43, .external_lex_state = 5}, + [234] = {.lex_state = 43, .external_lex_state = 5}, + [235] = {.lex_state = 43, .external_lex_state = 5}, + [236] = {.lex_state = 43, .external_lex_state = 6}, + [237] = {.lex_state = 43, .external_lex_state = 5}, + [238] = {.lex_state = 43, .external_lex_state = 5}, + [239] = {.lex_state = 43, .external_lex_state = 5}, + [240] = {.lex_state = 43, .external_lex_state = 6}, + [241] = {.lex_state = 43, .external_lex_state = 6}, + [242] = {.lex_state = 43, .external_lex_state = 6}, + [243] = {.lex_state = 43, .external_lex_state = 6}, + [244] = {.lex_state = 43, .external_lex_state = 6}, + [245] = {.lex_state = 43, .external_lex_state = 6}, + [246] = {.lex_state = 43, .external_lex_state = 6}, + [247] = {.lex_state = 43, .external_lex_state = 2}, + [248] = {.lex_state = 43, .external_lex_state = 2}, + [249] = {.lex_state = 43, .external_lex_state = 4}, + [250] = {.lex_state = 43, .external_lex_state = 6}, + [251] = {.lex_state = 43, .external_lex_state = 6}, + [252] = {.lex_state = 43, .external_lex_state = 6}, + [253] = {.lex_state = 43, .external_lex_state = 6}, + [254] = {.lex_state = 43, .external_lex_state = 6}, + [255] = {.lex_state = 43, .external_lex_state = 6}, + [256] = {.lex_state = 43, .external_lex_state = 6}, + [257] = {.lex_state = 43, .external_lex_state = 2}, + [258] = {.lex_state = 43, .external_lex_state = 6}, + [259] = {.lex_state = 43, .external_lex_state = 2}, + [260] = {.lex_state = 43, .external_lex_state = 6}, + [261] = {.lex_state = 43, .external_lex_state = 6}, + [262] = {.lex_state = 43, .external_lex_state = 6}, + [263] = {.lex_state = 43, .external_lex_state = 6}, + [264] = {.lex_state = 43, .external_lex_state = 6}, + [265] = {.lex_state = 43, .external_lex_state = 6}, + [266] = {.lex_state = 12, .external_lex_state = 9}, + [267] = {.lex_state = 43, .external_lex_state = 6}, + [268] = {.lex_state = 43, .external_lex_state = 6}, + [269] = {.lex_state = 12, .external_lex_state = 9}, + [270] = {.lex_state = 43, .external_lex_state = 2}, + [271] = {.lex_state = 43, .external_lex_state = 2}, + [272] = {.lex_state = 43, .external_lex_state = 2}, + [273] = {.lex_state = 43, .external_lex_state = 4}, + [274] = {.lex_state = 43, .external_lex_state = 2}, + [275] = {.lex_state = 43, .external_lex_state = 4}, + [276] = {.lex_state = 43, .external_lex_state = 2}, + [277] = {.lex_state = 43, .external_lex_state = 2}, + [278] = {.lex_state = 43, .external_lex_state = 2}, + [279] = {.lex_state = 43, .external_lex_state = 2}, + [280] = {.lex_state = 43, .external_lex_state = 2}, + [281] = {.lex_state = 43, .external_lex_state = 2}, + [282] = {.lex_state = 43, .external_lex_state = 4}, + [283] = {.lex_state = 43, .external_lex_state = 2}, + [284] = {.lex_state = 43, .external_lex_state = 4}, + [285] = {.lex_state = 43, .external_lex_state = 4}, + [286] = {.lex_state = 43, .external_lex_state = 2}, + [287] = {.lex_state = 12, .external_lex_state = 4}, + [288] = {.lex_state = 43, .external_lex_state = 2}, + [289] = {.lex_state = 43, .external_lex_state = 2}, + [290] = {.lex_state = 43, .external_lex_state = 2}, + [291] = {.lex_state = 43, .external_lex_state = 2}, + [292] = {.lex_state = 43, .external_lex_state = 6}, + [293] = {.lex_state = 43, .external_lex_state = 2}, + [294] = {.lex_state = 43, .external_lex_state = 2}, + [295] = {.lex_state = 43, .external_lex_state = 7}, + [296] = {.lex_state = 43, .external_lex_state = 2}, + [297] = {.lex_state = 43, .external_lex_state = 2}, + [298] = {.lex_state = 43, .external_lex_state = 6}, + [299] = {.lex_state = 43, .external_lex_state = 2}, + [300] = {.lex_state = 43, .external_lex_state = 2}, + [301] = {.lex_state = 43, .external_lex_state = 2}, + [302] = {.lex_state = 43, .external_lex_state = 2}, + [303] = {.lex_state = 43, .external_lex_state = 4}, + [304] = {.lex_state = 43, .external_lex_state = 4}, + [305] = {.lex_state = 43, .external_lex_state = 2}, + [306] = {.lex_state = 43, .external_lex_state = 2}, + [307] = {.lex_state = 43, .external_lex_state = 4}, + [308] = {.lex_state = 43, .external_lex_state = 6}, + [309] = {.lex_state = 43, .external_lex_state = 7}, + [310] = {.lex_state = 43, .external_lex_state = 2}, + [311] = {.lex_state = 43, .external_lex_state = 2}, + [312] = {.lex_state = 43, .external_lex_state = 2}, + [313] = {.lex_state = 43, .external_lex_state = 2}, + [314] = {.lex_state = 43, .external_lex_state = 2}, + [315] = {.lex_state = 43, .external_lex_state = 2}, + [316] = {.lex_state = 43, .external_lex_state = 2}, + [317] = {.lex_state = 43, .external_lex_state = 2}, + [318] = {.lex_state = 43, .external_lex_state = 2}, + [319] = {.lex_state = 43, .external_lex_state = 2}, + [320] = {.lex_state = 43, .external_lex_state = 2}, + [321] = {.lex_state = 43, .external_lex_state = 2}, + [322] = {.lex_state = 11, .external_lex_state = 9}, + [323] = {.lex_state = 11, .external_lex_state = 9}, + [324] = {.lex_state = 43, .external_lex_state = 2}, + [325] = {.lex_state = 43, .external_lex_state = 2}, + [326] = {.lex_state = 43, .external_lex_state = 2}, + [327] = {.lex_state = 43, .external_lex_state = 2}, + [328] = {.lex_state = 43, .external_lex_state = 2}, + [329] = {.lex_state = 43, .external_lex_state = 2}, + [330] = {.lex_state = 43, .external_lex_state = 2}, + [331] = {.lex_state = 43, .external_lex_state = 2}, + [332] = {.lex_state = 43, .external_lex_state = 2}, + [333] = {.lex_state = 43, .external_lex_state = 2}, + [334] = {.lex_state = 43, .external_lex_state = 2}, + [335] = {.lex_state = 43, .external_lex_state = 2}, + [336] = {.lex_state = 43, .external_lex_state = 2}, + [337] = {.lex_state = 12, .external_lex_state = 9}, + [338] = {.lex_state = 43, .external_lex_state = 2}, + [339] = {.lex_state = 12, .external_lex_state = 9}, + [340] = {.lex_state = 43, .external_lex_state = 2}, + [341] = {.lex_state = 43, .external_lex_state = 2}, + [342] = {.lex_state = 43, .external_lex_state = 2}, + [343] = {.lex_state = 43, .external_lex_state = 2}, + [344] = {.lex_state = 43, .external_lex_state = 2}, + [345] = {.lex_state = 43, .external_lex_state = 2}, + [346] = {.lex_state = 43, .external_lex_state = 2}, + [347] = {.lex_state = 43, .external_lex_state = 2}, + [348] = {.lex_state = 43, .external_lex_state = 2}, + [349] = {.lex_state = 43, .external_lex_state = 2}, + [350] = {.lex_state = 43, .external_lex_state = 2}, + [351] = {.lex_state = 43, .external_lex_state = 2}, + [352] = {.lex_state = 43, .external_lex_state = 2}, + [353] = {.lex_state = 43, .external_lex_state = 2}, + [354] = {.lex_state = 43, .external_lex_state = 2}, + [355] = {.lex_state = 43, .external_lex_state = 2}, + [356] = {.lex_state = 43, .external_lex_state = 2}, + [357] = {.lex_state = 12, .external_lex_state = 9}, + [358] = {.lex_state = 12, .external_lex_state = 9}, + [359] = {.lex_state = 43, .external_lex_state = 2}, + [360] = {.lex_state = 43, .external_lex_state = 2}, + [361] = {.lex_state = 43, .external_lex_state = 2}, + [362] = {.lex_state = 43, .external_lex_state = 2}, + [363] = {.lex_state = 43, .external_lex_state = 2}, + [364] = {.lex_state = 43, .external_lex_state = 2}, + [365] = {.lex_state = 43, .external_lex_state = 2}, + [366] = {.lex_state = 43, .external_lex_state = 2}, + [367] = {.lex_state = 43, .external_lex_state = 2}, + [368] = {.lex_state = 43, .external_lex_state = 2}, + [369] = {.lex_state = 43, .external_lex_state = 2}, + [370] = {.lex_state = 43, .external_lex_state = 2}, + [371] = {.lex_state = 43, .external_lex_state = 2}, + [372] = {.lex_state = 43, .external_lex_state = 2}, + [373] = {.lex_state = 43, .external_lex_state = 2}, + [374] = {.lex_state = 43, .external_lex_state = 2}, + [375] = {.lex_state = 43, .external_lex_state = 2}, + [376] = {.lex_state = 43, .external_lex_state = 2}, + [377] = {.lex_state = 43, .external_lex_state = 2}, + [378] = {.lex_state = 43, .external_lex_state = 2}, + [379] = {.lex_state = 43, .external_lex_state = 2}, + [380] = {.lex_state = 43, .external_lex_state = 2}, + [381] = {.lex_state = 43, .external_lex_state = 2}, + [382] = {.lex_state = 43, .external_lex_state = 2}, + [383] = {.lex_state = 43, .external_lex_state = 2}, + [384] = {.lex_state = 43, .external_lex_state = 2}, + [385] = {.lex_state = 43, .external_lex_state = 2}, + [386] = {.lex_state = 43, .external_lex_state = 2}, + [387] = {.lex_state = 43, .external_lex_state = 2}, + [388] = {.lex_state = 43, .external_lex_state = 2}, + [389] = {.lex_state = 43, .external_lex_state = 2}, + [390] = {.lex_state = 43, .external_lex_state = 2}, + [391] = {.lex_state = 43, .external_lex_state = 2}, + [392] = {.lex_state = 43, .external_lex_state = 2}, + [393] = {.lex_state = 43, .external_lex_state = 2}, + [394] = {.lex_state = 43, .external_lex_state = 2}, + [395] = {.lex_state = 43, .external_lex_state = 2}, + [396] = {.lex_state = 43, .external_lex_state = 2}, + [397] = {.lex_state = 43, .external_lex_state = 2}, + [398] = {.lex_state = 12, .external_lex_state = 9}, + [399] = {.lex_state = 43, .external_lex_state = 2}, + [400] = {.lex_state = 43, .external_lex_state = 2}, + [401] = {.lex_state = 43, .external_lex_state = 2}, + [402] = {.lex_state = 43, .external_lex_state = 2}, + [403] = {.lex_state = 43, .external_lex_state = 2}, + [404] = {.lex_state = 43, .external_lex_state = 2}, + [405] = {.lex_state = 43, .external_lex_state = 2}, + [406] = {.lex_state = 43, .external_lex_state = 2}, + [407] = {.lex_state = 43, .external_lex_state = 2}, + [408] = {.lex_state = 43, .external_lex_state = 2}, + [409] = {.lex_state = 43, .external_lex_state = 2}, + [410] = {.lex_state = 43, .external_lex_state = 2}, + [411] = {.lex_state = 43, .external_lex_state = 2}, + [412] = {.lex_state = 12, .external_lex_state = 9}, + [413] = {.lex_state = 43, .external_lex_state = 2}, + [414] = {.lex_state = 43, .external_lex_state = 2}, + [415] = {.lex_state = 43, .external_lex_state = 2}, + [416] = {.lex_state = 43, .external_lex_state = 2}, + [417] = {.lex_state = 12, .external_lex_state = 9}, + [418] = {.lex_state = 43, .external_lex_state = 2}, + [419] = {.lex_state = 43, .external_lex_state = 2}, + [420] = {.lex_state = 12, .external_lex_state = 9}, + [421] = {.lex_state = 43, .external_lex_state = 2}, + [422] = {.lex_state = 43, .external_lex_state = 2}, + [423] = {.lex_state = 12, .external_lex_state = 9}, + [424] = {.lex_state = 12, .external_lex_state = 9}, + [425] = {.lex_state = 43, .external_lex_state = 2}, + [426] = {.lex_state = 43, .external_lex_state = 2}, + [427] = {.lex_state = 43, .external_lex_state = 2}, + [428] = {.lex_state = 12, .external_lex_state = 9}, + [429] = {.lex_state = 43, .external_lex_state = 2}, + [430] = {.lex_state = 43, .external_lex_state = 2}, + [431] = {.lex_state = 43, .external_lex_state = 2}, + [432] = {.lex_state = 43, .external_lex_state = 2}, + [433] = {.lex_state = 43, .external_lex_state = 2}, + [434] = {.lex_state = 43, .external_lex_state = 2}, + [435] = {.lex_state = 43, .external_lex_state = 2}, + [436] = {.lex_state = 43, .external_lex_state = 2}, + [437] = {.lex_state = 43, .external_lex_state = 2}, + [438] = {.lex_state = 43, .external_lex_state = 2}, + [439] = {.lex_state = 43, .external_lex_state = 2}, + [440] = {.lex_state = 43, .external_lex_state = 2}, + [441] = {.lex_state = 43, .external_lex_state = 2}, + [442] = {.lex_state = 12, .external_lex_state = 10}, + [443] = {.lex_state = 12, .external_lex_state = 10}, + [444] = {.lex_state = 12, .external_lex_state = 10}, + [445] = {.lex_state = 12, .external_lex_state = 10}, + [446] = {.lex_state = 12, .external_lex_state = 10}, + [447] = {.lex_state = 12, .external_lex_state = 10}, + [448] = {.lex_state = 12, .external_lex_state = 10}, + [449] = {.lex_state = 43, .external_lex_state = 7}, + [450] = {.lex_state = 43, .external_lex_state = 7}, + [451] = {.lex_state = 43, .external_lex_state = 2}, + [452] = {.lex_state = 43, .external_lex_state = 3}, + [453] = {.lex_state = 43, .external_lex_state = 3}, + [454] = {.lex_state = 43, .external_lex_state = 7}, + [455] = {.lex_state = 43, .external_lex_state = 2}, + [456] = {.lex_state = 43, .external_lex_state = 7}, + [457] = {.lex_state = 43, .external_lex_state = 2}, + [458] = {.lex_state = 43, .external_lex_state = 6}, + [459] = {.lex_state = 43, .external_lex_state = 2}, + [460] = {.lex_state = 43, .external_lex_state = 3}, + [461] = {.lex_state = 43, .external_lex_state = 2}, + [462] = {.lex_state = 43, .external_lex_state = 2}, + [463] = {.lex_state = 43, .external_lex_state = 2}, + [464] = {.lex_state = 43, .external_lex_state = 2}, + [465] = {.lex_state = 43, .external_lex_state = 2}, + [466] = {.lex_state = 43, .external_lex_state = 3}, + [467] = {.lex_state = 43, .external_lex_state = 2}, + [468] = {.lex_state = 43, .external_lex_state = 2}, + [469] = {.lex_state = 43, .external_lex_state = 2}, + [470] = {.lex_state = 43, .external_lex_state = 6}, + [471] = {.lex_state = 43, .external_lex_state = 2}, + [472] = {.lex_state = 43, .external_lex_state = 3}, + [473] = {.lex_state = 43, .external_lex_state = 2}, + [474] = {.lex_state = 43, .external_lex_state = 2}, + [475] = {.lex_state = 43, .external_lex_state = 2}, + [476] = {.lex_state = 43, .external_lex_state = 3}, + [477] = {.lex_state = 43, .external_lex_state = 3}, + [478] = {.lex_state = 43, .external_lex_state = 3}, + [479] = {.lex_state = 43, .external_lex_state = 3}, + [480] = {.lex_state = 43, .external_lex_state = 2}, + [481] = {.lex_state = 43, .external_lex_state = 3}, + [482] = {.lex_state = 43, .external_lex_state = 3}, + [483] = {.lex_state = 43, .external_lex_state = 3}, + [484] = {.lex_state = 43, .external_lex_state = 3}, + [485] = {.lex_state = 43, .external_lex_state = 3}, + [486] = {.lex_state = 43, .external_lex_state = 2}, + [487] = {.lex_state = 43, .external_lex_state = 2}, + [488] = {.lex_state = 43, .external_lex_state = 2}, + [489] = {.lex_state = 43, .external_lex_state = 2}, + [490] = {.lex_state = 43, .external_lex_state = 2}, + [491] = {.lex_state = 43, .external_lex_state = 3}, + [492] = {.lex_state = 43, .external_lex_state = 2}, + [493] = {.lex_state = 43, .external_lex_state = 3}, + [494] = {.lex_state = 43, .external_lex_state = 3}, + [495] = {.lex_state = 43, .external_lex_state = 2}, + [496] = {.lex_state = 43, .external_lex_state = 2}, + [497] = {.lex_state = 43, .external_lex_state = 3}, + [498] = {.lex_state = 43, .external_lex_state = 3}, + [499] = {.lex_state = 43, .external_lex_state = 2}, + [500] = {.lex_state = 43, .external_lex_state = 2}, + [501] = {.lex_state = 43, .external_lex_state = 2}, + [502] = {.lex_state = 43, .external_lex_state = 2}, + [503] = {.lex_state = 43, .external_lex_state = 2}, + [504] = {.lex_state = 43, .external_lex_state = 2}, + [505] = {.lex_state = 43, .external_lex_state = 3}, + [506] = {.lex_state = 43, .external_lex_state = 3}, + [507] = {.lex_state = 43, .external_lex_state = 2}, + [508] = {.lex_state = 43, .external_lex_state = 3}, + [509] = {.lex_state = 43, .external_lex_state = 2}, + [510] = {.lex_state = 43, .external_lex_state = 3}, + [511] = {.lex_state = 43, .external_lex_state = 3}, + [512] = {.lex_state = 43, .external_lex_state = 2}, + [513] = {.lex_state = 43, .external_lex_state = 2}, + [514] = {.lex_state = 43, .external_lex_state = 3}, + [515] = {.lex_state = 43, .external_lex_state = 2}, + [516] = {.lex_state = 43, .external_lex_state = 3}, + [517] = {.lex_state = 43, .external_lex_state = 2}, + [518] = {.lex_state = 43, .external_lex_state = 3}, + [519] = {.lex_state = 43, .external_lex_state = 3}, + [520] = {.lex_state = 43, .external_lex_state = 2}, + [521] = {.lex_state = 43, .external_lex_state = 2}, + [522] = {.lex_state = 43, .external_lex_state = 2}, + [523] = {.lex_state = 43, .external_lex_state = 3}, + [524] = {.lex_state = 43, .external_lex_state = 2}, + [525] = {.lex_state = 43, .external_lex_state = 3}, + [526] = {.lex_state = 43, .external_lex_state = 3}, + [527] = {.lex_state = 43, .external_lex_state = 2}, + [528] = {.lex_state = 43, .external_lex_state = 3}, + [529] = {.lex_state = 43, .external_lex_state = 2}, + [530] = {.lex_state = 43, .external_lex_state = 2}, + [531] = {.lex_state = 43, .external_lex_state = 3}, + [532] = {.lex_state = 43, .external_lex_state = 3}, + [533] = {.lex_state = 43, .external_lex_state = 3}, + [534] = {.lex_state = 43, .external_lex_state = 2}, + [535] = {.lex_state = 43, .external_lex_state = 2}, + [536] = {.lex_state = 43, .external_lex_state = 2}, + [537] = {.lex_state = 43, .external_lex_state = 2}, + [538] = {.lex_state = 43, .external_lex_state = 2}, + [539] = {.lex_state = 43, .external_lex_state = 3}, + [540] = {.lex_state = 43, .external_lex_state = 2}, + [541] = {.lex_state = 43, .external_lex_state = 2}, + [542] = {.lex_state = 43, .external_lex_state = 2}, + [543] = {.lex_state = 43, .external_lex_state = 2}, + [544] = {.lex_state = 43, .external_lex_state = 2}, + [545] = {.lex_state = 43, .external_lex_state = 2}, + [546] = {.lex_state = 43, .external_lex_state = 2}, + [547] = {.lex_state = 43, .external_lex_state = 3}, + [548] = {.lex_state = 43, .external_lex_state = 2}, + [549] = {.lex_state = 43, .external_lex_state = 3}, + [550] = {.lex_state = 43, .external_lex_state = 2}, + [551] = {.lex_state = 43, .external_lex_state = 2}, + [552] = {.lex_state = 43, .external_lex_state = 2}, + [553] = {.lex_state = 43, .external_lex_state = 2}, + [554] = {.lex_state = 43, .external_lex_state = 3}, + [555] = {.lex_state = 43, .external_lex_state = 7}, + [556] = {.lex_state = 43, .external_lex_state = 3}, + [557] = {.lex_state = 43, .external_lex_state = 3}, + [558] = {.lex_state = 43, .external_lex_state = 3}, + [559] = {.lex_state = 43, .external_lex_state = 3}, + [560] = {.lex_state = 43, .external_lex_state = 3}, + [561] = {.lex_state = 43, .external_lex_state = 2}, + [562] = {.lex_state = 43, .external_lex_state = 2}, + [563] = {.lex_state = 43, .external_lex_state = 2}, + [564] = {.lex_state = 43, .external_lex_state = 3}, + [565] = {.lex_state = 43, .external_lex_state = 2}, + [566] = {.lex_state = 43, .external_lex_state = 2}, + [567] = {.lex_state = 43, .external_lex_state = 2}, + [568] = {.lex_state = 43, .external_lex_state = 2}, + [569] = {.lex_state = 43, .external_lex_state = 3}, + [570] = {.lex_state = 43, .external_lex_state = 2}, + [571] = {.lex_state = 43, .external_lex_state = 2}, + [572] = {.lex_state = 43, .external_lex_state = 2}, + [573] = {.lex_state = 43, .external_lex_state = 2}, + [574] = {.lex_state = 43, .external_lex_state = 3}, + [575] = {.lex_state = 43, .external_lex_state = 3}, + [576] = {.lex_state = 43, .external_lex_state = 2}, + [577] = {.lex_state = 43, .external_lex_state = 3}, + [578] = {.lex_state = 43, .external_lex_state = 3}, + [579] = {.lex_state = 43, .external_lex_state = 3}, + [580] = {.lex_state = 43, .external_lex_state = 3}, + [581] = {.lex_state = 43, .external_lex_state = 3}, + [582] = {.lex_state = 43, .external_lex_state = 3}, + [583] = {.lex_state = 43, .external_lex_state = 3}, + [584] = {.lex_state = 43, .external_lex_state = 3}, + [585] = {.lex_state = 43, .external_lex_state = 3}, + [586] = {.lex_state = 43, .external_lex_state = 3}, + [587] = {.lex_state = 43, .external_lex_state = 3}, + [588] = {.lex_state = 43, .external_lex_state = 3}, + [589] = {.lex_state = 43, .external_lex_state = 3}, + [590] = {.lex_state = 43, .external_lex_state = 3}, + [591] = {.lex_state = 43, .external_lex_state = 3}, + [592] = {.lex_state = 43, .external_lex_state = 3}, + [593] = {.lex_state = 43, .external_lex_state = 3}, + [594] = {.lex_state = 43, .external_lex_state = 3}, + [595] = {.lex_state = 12, .external_lex_state = 11}, + [596] = {.lex_state = 43, .external_lex_state = 3}, + [597] = {.lex_state = 43, .external_lex_state = 3}, + [598] = {.lex_state = 43, .external_lex_state = 2}, + [599] = {.lex_state = 43, .external_lex_state = 2}, + [600] = {.lex_state = 43, .external_lex_state = 2}, + [601] = {.lex_state = 12, .external_lex_state = 11}, + [602] = {.lex_state = 43, .external_lex_state = 2}, + [603] = {.lex_state = 43, .external_lex_state = 3}, + [604] = {.lex_state = 43, .external_lex_state = 3}, + [605] = {.lex_state = 43, .external_lex_state = 3}, + [606] = {.lex_state = 43, .external_lex_state = 2}, + [607] = {.lex_state = 43, .external_lex_state = 3}, + [608] = {.lex_state = 43, .external_lex_state = 2}, + [609] = {.lex_state = 43, .external_lex_state = 2}, + [610] = {.lex_state = 43, .external_lex_state = 3}, + [611] = {.lex_state = 43, .external_lex_state = 2}, + [612] = {.lex_state = 43, .external_lex_state = 2}, + [613] = {.lex_state = 43, .external_lex_state = 2}, + [614] = {.lex_state = 43, .external_lex_state = 2}, + [615] = {.lex_state = 43, .external_lex_state = 3}, + [616] = {.lex_state = 43, .external_lex_state = 3}, + [617] = {.lex_state = 43, .external_lex_state = 3}, + [618] = {.lex_state = 43, .external_lex_state = 3}, + [619] = {.lex_state = 43, .external_lex_state = 3}, + [620] = {.lex_state = 43, .external_lex_state = 3}, + [621] = {.lex_state = 43, .external_lex_state = 3}, + [622] = {.lex_state = 43, .external_lex_state = 2}, + [623] = {.lex_state = 43, .external_lex_state = 2}, + [624] = {.lex_state = 43, .external_lex_state = 3}, + [625] = {.lex_state = 43, .external_lex_state = 3}, + [626] = {.lex_state = 43, .external_lex_state = 3}, + [627] = {.lex_state = 43, .external_lex_state = 2}, + [628] = {.lex_state = 43, .external_lex_state = 3}, + [629] = {.lex_state = 43, .external_lex_state = 2}, + [630] = {.lex_state = 43, .external_lex_state = 3}, + [631] = {.lex_state = 43, .external_lex_state = 2}, + [632] = {.lex_state = 43, .external_lex_state = 2}, + [633] = {.lex_state = 43, .external_lex_state = 2}, + [634] = {.lex_state = 43, .external_lex_state = 2}, + [635] = {.lex_state = 43, .external_lex_state = 3}, + [636] = {.lex_state = 43, .external_lex_state = 2}, + [637] = {.lex_state = 43, .external_lex_state = 2}, + [638] = {.lex_state = 43, .external_lex_state = 2}, + [639] = {.lex_state = 43, .external_lex_state = 2}, + [640] = {.lex_state = 43, .external_lex_state = 2}, + [641] = {.lex_state = 43, .external_lex_state = 2}, + [642] = {.lex_state = 43, .external_lex_state = 2}, + [643] = {.lex_state = 43, .external_lex_state = 2}, + [644] = {.lex_state = 43, .external_lex_state = 2}, + [645] = {.lex_state = 43, .external_lex_state = 2}, + [646] = {.lex_state = 43, .external_lex_state = 2}, + [647] = {.lex_state = 43, .external_lex_state = 2}, + [648] = {.lex_state = 43, .external_lex_state = 2}, + [649] = {.lex_state = 43, .external_lex_state = 2}, + [650] = {.lex_state = 43, .external_lex_state = 2}, + [651] = {.lex_state = 43, .external_lex_state = 2}, + [652] = {.lex_state = 12, .external_lex_state = 11}, + [653] = {.lex_state = 43, .external_lex_state = 2}, + [654] = {.lex_state = 43, .external_lex_state = 2}, + [655] = {.lex_state = 43, .external_lex_state = 2}, + [656] = {.lex_state = 43, .external_lex_state = 2}, + [657] = {.lex_state = 43, .external_lex_state = 2}, + [658] = {.lex_state = 43, .external_lex_state = 2}, + [659] = {.lex_state = 43, .external_lex_state = 2}, + [660] = {.lex_state = 43, .external_lex_state = 2}, + [661] = {.lex_state = 11, .external_lex_state = 11}, + [662] = {.lex_state = 11, .external_lex_state = 11}, + [663] = {.lex_state = 12, .external_lex_state = 10}, + [664] = {.lex_state = 43, .external_lex_state = 2}, + [665] = {.lex_state = 43, .external_lex_state = 2}, + [666] = {.lex_state = 43, .external_lex_state = 2}, + [667] = {.lex_state = 43, .external_lex_state = 2}, + [668] = {.lex_state = 43, .external_lex_state = 2}, + [669] = {.lex_state = 43, .external_lex_state = 2}, + [670] = {.lex_state = 43, .external_lex_state = 2}, + [671] = {.lex_state = 43, .external_lex_state = 2}, + [672] = {.lex_state = 43, .external_lex_state = 2}, + [673] = {.lex_state = 43, .external_lex_state = 2}, + [674] = {.lex_state = 43, .external_lex_state = 2}, + [675] = {.lex_state = 43, .external_lex_state = 2}, + [676] = {.lex_state = 43, .external_lex_state = 2}, + [677] = {.lex_state = 43, .external_lex_state = 2}, + [678] = {.lex_state = 43, .external_lex_state = 2}, + [679] = {.lex_state = 43, .external_lex_state = 2}, + [680] = {.lex_state = 43, .external_lex_state = 2}, + [681] = {.lex_state = 43, .external_lex_state = 2}, + [682] = {.lex_state = 43, .external_lex_state = 2}, + [683] = {.lex_state = 43, .external_lex_state = 2}, + [684] = {.lex_state = 12, .external_lex_state = 11}, + [685] = {.lex_state = 43, .external_lex_state = 2}, + [686] = {.lex_state = 43, .external_lex_state = 2}, + [687] = {.lex_state = 43, .external_lex_state = 2}, + [688] = {.lex_state = 43, .external_lex_state = 2}, + [689] = {.lex_state = 43, .external_lex_state = 2}, + [690] = {.lex_state = 43, .external_lex_state = 2}, + [691] = {.lex_state = 43, .external_lex_state = 2}, + [692] = {.lex_state = 43, .external_lex_state = 2}, + [693] = {.lex_state = 43, .external_lex_state = 2}, + [694] = {.lex_state = 43, .external_lex_state = 2}, + [695] = {.lex_state = 43, .external_lex_state = 2}, + [696] = {.lex_state = 43, .external_lex_state = 2}, + [697] = {.lex_state = 43, .external_lex_state = 2}, + [698] = {.lex_state = 11, .external_lex_state = 11}, + [699] = {.lex_state = 11, .external_lex_state = 11}, + [700] = {.lex_state = 43, .external_lex_state = 2}, + [701] = {.lex_state = 12, .external_lex_state = 12}, + [702] = {.lex_state = 43, .external_lex_state = 2}, + [703] = {.lex_state = 43, .external_lex_state = 2}, + [704] = {.lex_state = 43, .external_lex_state = 2}, + [705] = {.lex_state = 43, .external_lex_state = 2}, + [706] = {.lex_state = 43, .external_lex_state = 2}, + [707] = {.lex_state = 43, .external_lex_state = 2}, + [708] = {.lex_state = 12, .external_lex_state = 11}, + [709] = {.lex_state = 12, .external_lex_state = 11}, + [710] = {.lex_state = 12, .external_lex_state = 11}, + [711] = {.lex_state = 12, .external_lex_state = 11}, + [712] = {.lex_state = 43, .external_lex_state = 2}, + [713] = {.lex_state = 12, .external_lex_state = 11}, + [714] = {.lex_state = 43, .external_lex_state = 2}, + [715] = {.lex_state = 12, .external_lex_state = 11}, + [716] = {.lex_state = 12, .external_lex_state = 11}, + [717] = {.lex_state = 12, .external_lex_state = 11}, + [718] = {.lex_state = 12, .external_lex_state = 11}, + [719] = {.lex_state = 43, .external_lex_state = 2}, + [720] = {.lex_state = 12, .external_lex_state = 11}, + [721] = {.lex_state = 12, .external_lex_state = 11}, + [722] = {.lex_state = 43, .external_lex_state = 2}, + [723] = {.lex_state = 12, .external_lex_state = 11}, + [724] = {.lex_state = 43, .external_lex_state = 2}, + [725] = {.lex_state = 43, .external_lex_state = 2}, + [726] = {.lex_state = 12, .external_lex_state = 11}, + [727] = {.lex_state = 43, .external_lex_state = 2}, + [728] = {.lex_state = 12, .external_lex_state = 11}, + [729] = {.lex_state = 43, .external_lex_state = 2}, + [730] = {.lex_state = 43, .external_lex_state = 2}, + [731] = {.lex_state = 12, .external_lex_state = 11}, + [732] = {.lex_state = 12, .external_lex_state = 11}, + [733] = {.lex_state = 12, .external_lex_state = 11}, + [734] = {.lex_state = 12, .external_lex_state = 11}, + [735] = {.lex_state = 43, .external_lex_state = 2}, + [736] = {.lex_state = 43, .external_lex_state = 2}, + [737] = {.lex_state = 43, .external_lex_state = 2}, + [738] = {.lex_state = 43, .external_lex_state = 2}, + [739] = {.lex_state = 43, .external_lex_state = 2}, + [740] = {.lex_state = 43, .external_lex_state = 2}, + [741] = {.lex_state = 12, .external_lex_state = 9}, + [742] = {.lex_state = 43, .external_lex_state = 2}, + [743] = {.lex_state = 43, .external_lex_state = 2}, + [744] = {.lex_state = 43, .external_lex_state = 2}, + [745] = {.lex_state = 12, .external_lex_state = 11}, + [746] = {.lex_state = 12, .external_lex_state = 11}, + [747] = {.lex_state = 12, .external_lex_state = 11}, + [748] = {.lex_state = 12, .external_lex_state = 11}, + [749] = {.lex_state = 12, .external_lex_state = 11}, + [750] = {.lex_state = 12, .external_lex_state = 11}, + [751] = {.lex_state = 12, .external_lex_state = 11}, + [752] = {.lex_state = 12, .external_lex_state = 10}, + [753] = {.lex_state = 12, .external_lex_state = 10}, + [754] = {.lex_state = 12, .external_lex_state = 11}, + [755] = {.lex_state = 12, .external_lex_state = 10}, + [756] = {.lex_state = 12, .external_lex_state = 11}, + [757] = {.lex_state = 12, .external_lex_state = 10}, + [758] = {.lex_state = 12, .external_lex_state = 11}, + [759] = {.lex_state = 12, .external_lex_state = 11}, + [760] = {.lex_state = 12, .external_lex_state = 10}, + [761] = {.lex_state = 12, .external_lex_state = 11}, + [762] = {.lex_state = 12, .external_lex_state = 10}, + [763] = {.lex_state = 11, .external_lex_state = 12}, + [764] = {.lex_state = 11, .external_lex_state = 12}, + [765] = {.lex_state = 12, .external_lex_state = 11}, + [766] = {.lex_state = 12, .external_lex_state = 11}, + [767] = {.lex_state = 12, .external_lex_state = 11}, + [768] = {.lex_state = 12, .external_lex_state = 11}, + [769] = {.lex_state = 12, .external_lex_state = 12}, + [770] = {.lex_state = 12, .external_lex_state = 10}, + [771] = {.lex_state = 12, .external_lex_state = 10}, + [772] = {.lex_state = 12, .external_lex_state = 11}, + [773] = {.lex_state = 12, .external_lex_state = 9}, + [774] = {.lex_state = 12, .external_lex_state = 11}, + [775] = {.lex_state = 12, .external_lex_state = 11}, + [776] = {.lex_state = 12, .external_lex_state = 11}, + [777] = {.lex_state = 12, .external_lex_state = 11}, + [778] = {.lex_state = 12, .external_lex_state = 11}, + [779] = {.lex_state = 12, .external_lex_state = 11}, + [780] = {.lex_state = 12, .external_lex_state = 11}, + [781] = {.lex_state = 12, .external_lex_state = 11}, + [782] = {.lex_state = 12, .external_lex_state = 9}, + [783] = {.lex_state = 12, .external_lex_state = 11}, + [784] = {.lex_state = 12, .external_lex_state = 11}, + [785] = {.lex_state = 12, .external_lex_state = 10}, + [786] = {.lex_state = 12, .external_lex_state = 11}, + [787] = {.lex_state = 12, .external_lex_state = 11}, + [788] = {.lex_state = 12, .external_lex_state = 11}, + [789] = {.lex_state = 11, .external_lex_state = 10}, + [790] = {.lex_state = 12, .external_lex_state = 11}, + [791] = {.lex_state = 11, .external_lex_state = 10}, + [792] = {.lex_state = 12, .external_lex_state = 11}, + [793] = {.lex_state = 12, .external_lex_state = 11}, + [794] = {.lex_state = 12, .external_lex_state = 11}, + [795] = {.lex_state = 12, .external_lex_state = 11}, + [796] = {.lex_state = 12, .external_lex_state = 11}, + [797] = {.lex_state = 12, .external_lex_state = 10}, + [798] = {.lex_state = 12, .external_lex_state = 11}, + [799] = {.lex_state = 12, .external_lex_state = 11}, + [800] = {.lex_state = 12, .external_lex_state = 11}, + [801] = {.lex_state = 12, .external_lex_state = 11}, + [802] = {.lex_state = 12, .external_lex_state = 11}, + [803] = {.lex_state = 12, .external_lex_state = 11}, + [804] = {.lex_state = 12, .external_lex_state = 11}, + [805] = {.lex_state = 11, .external_lex_state = 12}, + [806] = {.lex_state = 12, .external_lex_state = 11}, + [807] = {.lex_state = 12, .external_lex_state = 11}, + [808] = {.lex_state = 12, .external_lex_state = 11}, + [809] = {.lex_state = 12, .external_lex_state = 11}, + [810] = {.lex_state = 12, .external_lex_state = 13}, + [811] = {.lex_state = 12, .external_lex_state = 11}, + [812] = {.lex_state = 12, .external_lex_state = 11}, + [813] = {.lex_state = 12, .external_lex_state = 11}, + [814] = {.lex_state = 12, .external_lex_state = 11}, + [815] = {.lex_state = 12, .external_lex_state = 11}, + [816] = {.lex_state = 12, .external_lex_state = 11}, + [817] = {.lex_state = 12, .external_lex_state = 11}, + [818] = {.lex_state = 12, .external_lex_state = 11}, + [819] = {.lex_state = 12, .external_lex_state = 12}, + [820] = {.lex_state = 12, .external_lex_state = 12}, + [821] = {.lex_state = 12, .external_lex_state = 10}, + [822] = {.lex_state = 12, .external_lex_state = 12}, + [823] = {.lex_state = 12, .external_lex_state = 11}, + [824] = {.lex_state = 12, .external_lex_state = 9}, + [825] = {.lex_state = 12, .external_lex_state = 11}, + [826] = {.lex_state = 12, .external_lex_state = 10}, + [827] = {.lex_state = 12, .external_lex_state = 11}, + [828] = {.lex_state = 11, .external_lex_state = 9}, + [829] = {.lex_state = 12, .external_lex_state = 9}, + [830] = {.lex_state = 11, .external_lex_state = 9}, + [831] = {.lex_state = 12, .external_lex_state = 9}, + [832] = {.lex_state = 12, .external_lex_state = 11}, + [833] = {.lex_state = 12, .external_lex_state = 12}, + [834] = {.lex_state = 11, .external_lex_state = 12}, + [835] = {.lex_state = 12, .external_lex_state = 9}, + [836] = {.lex_state = 12, .external_lex_state = 12}, + [837] = {.lex_state = 12, .external_lex_state = 9}, + [838] = {.lex_state = 12, .external_lex_state = 11}, + [839] = {.lex_state = 12, .external_lex_state = 11}, + [840] = {.lex_state = 12, .external_lex_state = 12}, + [841] = {.lex_state = 12, .external_lex_state = 12}, + [842] = {.lex_state = 12, .external_lex_state = 12}, + [843] = {.lex_state = 12, .external_lex_state = 12}, + [844] = {.lex_state = 12, .external_lex_state = 12}, + [845] = {.lex_state = 12, .external_lex_state = 9}, + [846] = {.lex_state = 12, .external_lex_state = 9}, + [847] = {.lex_state = 12, .external_lex_state = 9}, + [848] = {.lex_state = 12, .external_lex_state = 11}, + [849] = {.lex_state = 12, .external_lex_state = 11}, + [850] = {.lex_state = 12, .external_lex_state = 11}, + [851] = {.lex_state = 12, .external_lex_state = 11}, + [852] = {.lex_state = 12, .external_lex_state = 11}, + [853] = {.lex_state = 12, .external_lex_state = 10}, + [854] = {.lex_state = 12, .external_lex_state = 12}, + [855] = {.lex_state = 12, .external_lex_state = 9}, + [856] = {.lex_state = 12, .external_lex_state = 9}, + [857] = {.lex_state = 12, .external_lex_state = 10}, + [858] = {.lex_state = 11, .external_lex_state = 13}, + [859] = {.lex_state = 12, .external_lex_state = 10}, + [860] = {.lex_state = 11, .external_lex_state = 13}, + [861] = {.lex_state = 12, .external_lex_state = 9}, + [862] = {.lex_state = 12, .external_lex_state = 9}, + [863] = {.lex_state = 12, .external_lex_state = 10}, + [864] = {.lex_state = 12, .external_lex_state = 9}, + [865] = {.lex_state = 12, .external_lex_state = 9}, + [866] = {.lex_state = 12, .external_lex_state = 9}, + [867] = {.lex_state = 12, .external_lex_state = 10}, + [868] = {.lex_state = 12, .external_lex_state = 10}, + [869] = {.lex_state = 12, .external_lex_state = 9}, + [870] = {.lex_state = 12, .external_lex_state = 9}, + [871] = {.lex_state = 12, .external_lex_state = 10}, + [872] = {.lex_state = 12, .external_lex_state = 13}, + [873] = {.lex_state = 11, .external_lex_state = 13}, + [874] = {.lex_state = 11, .external_lex_state = 13}, + [875] = {.lex_state = 12, .external_lex_state = 10}, + [876] = {.lex_state = 12, .external_lex_state = 9}, + [877] = {.lex_state = 12, .external_lex_state = 10}, + [878] = {.lex_state = 12, .external_lex_state = 12}, + [879] = {.lex_state = 12, .external_lex_state = 10}, + [880] = {.lex_state = 12, .external_lex_state = 12}, + [881] = {.lex_state = 12, .external_lex_state = 12}, + [882] = {.lex_state = 12, .external_lex_state = 12}, + [883] = {.lex_state = 12, .external_lex_state = 12}, + [884] = {.lex_state = 12, .external_lex_state = 10}, + [885] = {.lex_state = 12, .external_lex_state = 10}, + [886] = {.lex_state = 12, .external_lex_state = 12}, + [887] = {.lex_state = 12, .external_lex_state = 13}, + [888] = {.lex_state = 12, .external_lex_state = 13}, + [889] = {.lex_state = 12, .external_lex_state = 12}, + [890] = {.lex_state = 12, .external_lex_state = 12}, + [891] = {.lex_state = 12, .external_lex_state = 9}, + [892] = {.lex_state = 12, .external_lex_state = 10}, + [893] = {.lex_state = 12, .external_lex_state = 12}, + [894] = {.lex_state = 12, .external_lex_state = 12}, + [895] = {.lex_state = 12, .external_lex_state = 10}, + [896] = {.lex_state = 12, .external_lex_state = 10}, + [897] = {.lex_state = 12, .external_lex_state = 12}, + [898] = {.lex_state = 12, .external_lex_state = 12}, + [899] = {.lex_state = 12, .external_lex_state = 9}, + [900] = {.lex_state = 12, .external_lex_state = 12}, + [901] = {.lex_state = 12, .external_lex_state = 12}, + [902] = {.lex_state = 12, .external_lex_state = 12}, + [903] = {.lex_state = 12, .external_lex_state = 9}, + [904] = {.lex_state = 12, .external_lex_state = 12}, + [905] = {.lex_state = 12, .external_lex_state = 12}, + [906] = {.lex_state = 12, .external_lex_state = 12}, + [907] = {.lex_state = 12, .external_lex_state = 10}, + [908] = {.lex_state = 12, .external_lex_state = 12}, + [909] = {.lex_state = 12, .external_lex_state = 9}, + [910] = {.lex_state = 12, .external_lex_state = 13}, + [911] = {.lex_state = 12, .external_lex_state = 13}, + [912] = {.lex_state = 12, .external_lex_state = 13}, + [913] = {.lex_state = 12, .external_lex_state = 12}, + [914] = {.lex_state = 12, .external_lex_state = 12}, + [915] = {.lex_state = 12, .external_lex_state = 12}, + [916] = {.lex_state = 12, .external_lex_state = 12}, + [917] = {.lex_state = 12, .external_lex_state = 12}, + [918] = {.lex_state = 12, .external_lex_state = 9}, + [919] = {.lex_state = 12, .external_lex_state = 12}, + [920] = {.lex_state = 12, .external_lex_state = 12}, + [921] = {.lex_state = 12, .external_lex_state = 12}, + [922] = {.lex_state = 12, .external_lex_state = 12}, + [923] = {.lex_state = 12, .external_lex_state = 9}, + [924] = {.lex_state = 12, .external_lex_state = 9}, + [925] = {.lex_state = 12, .external_lex_state = 10}, + [926] = {.lex_state = 12, .external_lex_state = 9}, + [927] = {.lex_state = 12, .external_lex_state = 10}, + [928] = {.lex_state = 12, .external_lex_state = 10}, + [929] = {.lex_state = 12, .external_lex_state = 10}, + [930] = {.lex_state = 12, .external_lex_state = 13}, + [931] = {.lex_state = 12, .external_lex_state = 13}, + [932] = {.lex_state = 12, .external_lex_state = 10}, + [933] = {.lex_state = 12, .external_lex_state = 10}, + [934] = {.lex_state = 12, .external_lex_state = 13}, + [935] = {.lex_state = 12, .external_lex_state = 13}, + [936] = {.lex_state = 12, .external_lex_state = 13}, + [937] = {.lex_state = 12, .external_lex_state = 10}, + [938] = {.lex_state = 12, .external_lex_state = 13}, + [939] = {.lex_state = 12, .external_lex_state = 10}, + [940] = {.lex_state = 12, .external_lex_state = 10}, + [941] = {.lex_state = 12, .external_lex_state = 12}, + [942] = {.lex_state = 12, .external_lex_state = 12}, + [943] = {.lex_state = 12, .external_lex_state = 9}, + [944] = {.lex_state = 12, .external_lex_state = 10}, + [945] = {.lex_state = 12, .external_lex_state = 10}, + [946] = {.lex_state = 12, .external_lex_state = 10}, + [947] = {.lex_state = 12, .external_lex_state = 9}, + [948] = {.lex_state = 12, .external_lex_state = 12}, + [949] = {.lex_state = 12, .external_lex_state = 12}, + [950] = {.lex_state = 12, .external_lex_state = 12}, + [951] = {.lex_state = 12, .external_lex_state = 12}, + [952] = {.lex_state = 12, .external_lex_state = 12}, + [953] = {.lex_state = 12, .external_lex_state = 12}, + [954] = {.lex_state = 12, .external_lex_state = 12}, + [955] = {.lex_state = 12, .external_lex_state = 13}, + [956] = {.lex_state = 12, .external_lex_state = 12}, + [957] = {.lex_state = 12, .external_lex_state = 9}, + [958] = {.lex_state = 12, .external_lex_state = 12}, + [959] = {.lex_state = 12, .external_lex_state = 9}, + [960] = {.lex_state = 12, .external_lex_state = 10}, + [961] = {.lex_state = 12, .external_lex_state = 10}, + [962] = {.lex_state = 12, .external_lex_state = 12}, + [963] = {.lex_state = 12, .external_lex_state = 9}, + [964] = {.lex_state = 12, .external_lex_state = 9}, + [965] = {.lex_state = 12, .external_lex_state = 10}, + [966] = {.lex_state = 12, .external_lex_state = 12}, + [967] = {.lex_state = 12, .external_lex_state = 13}, + [968] = {.lex_state = 12, .external_lex_state = 12}, + [969] = {.lex_state = 12, .external_lex_state = 13}, + [970] = {.lex_state = 11, .external_lex_state = 12}, + [971] = {.lex_state = 11, .external_lex_state = 12}, + [972] = {.lex_state = 12, .external_lex_state = 12}, + [973] = {.lex_state = 12, .external_lex_state = 12}, + [974] = {.lex_state = 12, .external_lex_state = 12}, + [975] = {.lex_state = 12, .external_lex_state = 9}, + [976] = {.lex_state = 12, .external_lex_state = 9}, + [977] = {.lex_state = 12, .external_lex_state = 12}, + [978] = {.lex_state = 12, .external_lex_state = 13}, + [979] = {.lex_state = 12, .external_lex_state = 13}, + [980] = {.lex_state = 12, .external_lex_state = 13}, + [981] = {.lex_state = 11, .external_lex_state = 13}, + [982] = {.lex_state = 12, .external_lex_state = 12}, + [983] = {.lex_state = 12, .external_lex_state = 12}, + [984] = {.lex_state = 12, .external_lex_state = 12}, + [985] = {.lex_state = 12, .external_lex_state = 13}, + [986] = {.lex_state = 12, .external_lex_state = 12}, + [987] = {.lex_state = 12, .external_lex_state = 12}, + [988] = {.lex_state = 12, .external_lex_state = 12}, + [989] = {.lex_state = 12, .external_lex_state = 12}, + [990] = {.lex_state = 12, .external_lex_state = 13}, + [991] = {.lex_state = 12, .external_lex_state = 12}, + [992] = {.lex_state = 12, .external_lex_state = 13}, + [993] = {.lex_state = 12, .external_lex_state = 13}, + [994] = {.lex_state = 12, .external_lex_state = 13}, + [995] = {.lex_state = 12, .external_lex_state = 12}, + [996] = {.lex_state = 12, .external_lex_state = 12}, + [997] = {.lex_state = 12, .external_lex_state = 13}, + [998] = {.lex_state = 12, .external_lex_state = 13}, + [999] = {.lex_state = 12, .external_lex_state = 12}, + [1000] = {.lex_state = 12, .external_lex_state = 12}, + [1001] = {.lex_state = 12, .external_lex_state = 12}, + [1002] = {.lex_state = 12, .external_lex_state = 12}, + [1003] = {.lex_state = 12, .external_lex_state = 12}, + [1004] = {.lex_state = 12, .external_lex_state = 13}, + [1005] = {.lex_state = 12, .external_lex_state = 13}, + [1006] = {.lex_state = 12, .external_lex_state = 12}, + [1007] = {.lex_state = 12, .external_lex_state = 13}, + [1008] = {.lex_state = 12, .external_lex_state = 13}, + [1009] = {.lex_state = 11, .external_lex_state = 13}, + [1010] = {.lex_state = 12, .external_lex_state = 13}, + [1011] = {.lex_state = 12, .external_lex_state = 13}, + [1012] = {.lex_state = 12, .external_lex_state = 13}, + [1013] = {.lex_state = 12, .external_lex_state = 12}, + [1014] = {.lex_state = 12, .external_lex_state = 12}, + [1015] = {.lex_state = 12, .external_lex_state = 12}, + [1016] = {.lex_state = 12, .external_lex_state = 12}, + [1017] = {.lex_state = 12, .external_lex_state = 12}, + [1018] = {.lex_state = 12, .external_lex_state = 13}, + [1019] = {.lex_state = 12, .external_lex_state = 12}, + [1020] = {.lex_state = 12, .external_lex_state = 13}, + [1021] = {.lex_state = 12, .external_lex_state = 12}, + [1022] = {.lex_state = 12, .external_lex_state = 13}, + [1023] = {.lex_state = 12, .external_lex_state = 12}, + [1024] = {.lex_state = 12, .external_lex_state = 12}, + [1025] = {.lex_state = 12, .external_lex_state = 12}, + [1026] = {.lex_state = 12, .external_lex_state = 12}, + [1027] = {.lex_state = 12, .external_lex_state = 12}, + [1028] = {.lex_state = 12, .external_lex_state = 12}, + [1029] = {.lex_state = 11, .external_lex_state = 13}, + [1030] = {.lex_state = 12, .external_lex_state = 13}, + [1031] = {.lex_state = 12, .external_lex_state = 13}, + [1032] = {.lex_state = 12, .external_lex_state = 13}, + [1033] = {.lex_state = 11, .external_lex_state = 12}, + [1034] = {.lex_state = 12, .external_lex_state = 13}, + [1035] = {.lex_state = 12, .external_lex_state = 12}, + [1036] = {.lex_state = 12, .external_lex_state = 12}, + [1037] = {.lex_state = 12, .external_lex_state = 13}, + [1038] = {.lex_state = 12, .external_lex_state = 12}, + [1039] = {.lex_state = 12, .external_lex_state = 13}, + [1040] = {.lex_state = 12, .external_lex_state = 12}, + [1041] = {.lex_state = 12, .external_lex_state = 13}, + [1042] = {.lex_state = 12, .external_lex_state = 13}, + [1043] = {.lex_state = 12, .external_lex_state = 13}, + [1044] = {.lex_state = 12, .external_lex_state = 13}, + [1045] = {.lex_state = 12, .external_lex_state = 12}, + [1046] = {.lex_state = 12, .external_lex_state = 12}, + [1047] = {.lex_state = 12, .external_lex_state = 13}, + [1048] = {.lex_state = 12, .external_lex_state = 13}, + [1049] = {.lex_state = 12, .external_lex_state = 13}, + [1050] = {.lex_state = 12, .external_lex_state = 13}, + [1051] = {.lex_state = 12, .external_lex_state = 13}, + [1052] = {.lex_state = 43, .external_lex_state = 11}, + [1053] = {.lex_state = 12, .external_lex_state = 13}, + [1054] = {.lex_state = 12, .external_lex_state = 13}, + [1055] = {.lex_state = 43, .external_lex_state = 11}, + [1056] = {.lex_state = 43, .external_lex_state = 11}, + [1057] = {.lex_state = 43, .external_lex_state = 11}, + [1058] = {.lex_state = 12, .external_lex_state = 13}, + [1059] = {.lex_state = 12, .external_lex_state = 13}, + [1060] = {.lex_state = 12, .external_lex_state = 13}, + [1061] = {.lex_state = 12, .external_lex_state = 13}, + [1062] = {.lex_state = 12, .external_lex_state = 9}, + [1063] = {.lex_state = 12, .external_lex_state = 12}, + [1064] = {.lex_state = 12, .external_lex_state = 12}, + [1065] = {.lex_state = 12, .external_lex_state = 12}, + [1066] = {.lex_state = 43, .external_lex_state = 9}, + [1067] = {.lex_state = 43, .external_lex_state = 10}, + [1068] = {.lex_state = 43, .external_lex_state = 10}, + [1069] = {.lex_state = 43, .external_lex_state = 12}, + [1070] = {.lex_state = 12, .external_lex_state = 12}, + [1071] = {.lex_state = 12, .external_lex_state = 12}, + [1072] = {.lex_state = 12, .external_lex_state = 13}, + [1073] = {.lex_state = 43, .external_lex_state = 10}, + [1074] = {.lex_state = 43, .external_lex_state = 9}, + [1075] = {.lex_state = 43, .external_lex_state = 10}, + [1076] = {.lex_state = 12, .external_lex_state = 13}, + [1077] = {.lex_state = 12, .external_lex_state = 10}, + [1078] = {.lex_state = 12, .external_lex_state = 13}, + [1079] = {.lex_state = 43, .external_lex_state = 12}, + [1080] = {.lex_state = 12, .external_lex_state = 10}, + [1081] = {.lex_state = 12, .external_lex_state = 12}, + [1082] = {.lex_state = 12, .external_lex_state = 12}, + [1083] = {.lex_state = 43, .external_lex_state = 10}, + [1084] = {.lex_state = 43, .external_lex_state = 10}, + [1085] = {.lex_state = 43, .external_lex_state = 10}, + [1086] = {.lex_state = 43, .external_lex_state = 12}, + [1087] = {.lex_state = 43, .external_lex_state = 10}, + [1088] = {.lex_state = 43, .external_lex_state = 13}, + [1089] = {.lex_state = 43, .external_lex_state = 10}, + [1090] = {.lex_state = 43, .external_lex_state = 10}, + [1091] = {.lex_state = 43, .external_lex_state = 10}, + [1092] = {.lex_state = 43, .external_lex_state = 10}, + [1093] = {.lex_state = 12, .external_lex_state = 10}, + [1094] = {.lex_state = 43, .external_lex_state = 10}, + [1095] = {.lex_state = 43, .external_lex_state = 10}, + [1096] = {.lex_state = 12, .external_lex_state = 10}, + [1097] = {.lex_state = 12, .external_lex_state = 10}, + [1098] = {.lex_state = 43, .external_lex_state = 10}, + [1099] = {.lex_state = 43, .external_lex_state = 10}, + [1100] = {.lex_state = 43, .external_lex_state = 13}, + [1101] = {.lex_state = 43, .external_lex_state = 12}, + [1102] = {.lex_state = 43, .external_lex_state = 10}, + [1103] = {.lex_state = 43, .external_lex_state = 10}, + [1104] = {.lex_state = 43, .external_lex_state = 13}, + [1105] = {.lex_state = 43, .external_lex_state = 10}, + [1106] = {.lex_state = 43, .external_lex_state = 13}, + [1107] = {.lex_state = 43, .external_lex_state = 10}, + [1108] = {.lex_state = 43, .external_lex_state = 13}, + [1109] = {.lex_state = 43, .external_lex_state = 10}, + [1110] = {.lex_state = 43, .external_lex_state = 10}, + [1111] = {.lex_state = 43, .external_lex_state = 10}, + [1112] = {.lex_state = 43, .external_lex_state = 11}, + [1113] = {.lex_state = 43, .external_lex_state = 11}, + [1114] = {.lex_state = 43, .external_lex_state = 11}, + [1115] = {.lex_state = 43, .external_lex_state = 11}, + [1116] = {.lex_state = 43, .external_lex_state = 11}, + [1117] = {.lex_state = 43, .external_lex_state = 11}, + [1118] = {.lex_state = 43, .external_lex_state = 11}, + [1119] = {.lex_state = 43, .external_lex_state = 12}, + [1120] = {.lex_state = 43, .external_lex_state = 12}, + [1121] = {.lex_state = 43, .external_lex_state = 12}, + [1122] = {.lex_state = 43, .external_lex_state = 12}, + [1123] = {.lex_state = 43, .external_lex_state = 12}, + [1124] = {.lex_state = 43, .external_lex_state = 12}, + [1125] = {.lex_state = 43, .external_lex_state = 12}, + [1126] = {.lex_state = 15, .external_lex_state = 14}, + [1127] = {.lex_state = 15, .external_lex_state = 14}, + [1128] = {.lex_state = 15, .external_lex_state = 14}, + [1129] = {.lex_state = 15, .external_lex_state = 14}, + [1130] = {.lex_state = 43, .external_lex_state = 11}, + [1131] = {.lex_state = 15, .external_lex_state = 14}, + [1132] = {.lex_state = 15, .external_lex_state = 14}, + [1133] = {.lex_state = 15, .external_lex_state = 14}, + [1134] = {.lex_state = 15, .external_lex_state = 14}, + [1135] = {.lex_state = 15, .external_lex_state = 14}, + [1136] = {.lex_state = 15, .external_lex_state = 14}, + [1137] = {.lex_state = 15, .external_lex_state = 14}, + [1138] = {.lex_state = 15, .external_lex_state = 14}, + [1139] = {.lex_state = 15, .external_lex_state = 14}, + [1140] = {.lex_state = 15, .external_lex_state = 14}, + [1141] = {.lex_state = 15, .external_lex_state = 14}, + [1142] = {.lex_state = 43, .external_lex_state = 11}, + [1143] = {.lex_state = 43, .external_lex_state = 11}, + [1144] = {.lex_state = 43, .external_lex_state = 11}, + [1145] = {.lex_state = 43, .external_lex_state = 11}, + [1146] = {.lex_state = 43, .external_lex_state = 11}, + [1147] = {.lex_state = 43, .external_lex_state = 11}, + [1148] = {.lex_state = 43, .external_lex_state = 11}, + [1149] = {.lex_state = 43, .external_lex_state = 11}, + [1150] = {.lex_state = 43, .external_lex_state = 11}, + [1151] = {.lex_state = 43, .external_lex_state = 11}, + [1152] = {.lex_state = 43, .external_lex_state = 11}, + [1153] = {.lex_state = 43, .external_lex_state = 11}, + [1154] = {.lex_state = 43, .external_lex_state = 11}, + [1155] = {.lex_state = 43, .external_lex_state = 11}, + [1156] = {.lex_state = 43, .external_lex_state = 11}, + [1157] = {.lex_state = 43, .external_lex_state = 11}, + [1158] = {.lex_state = 43, .external_lex_state = 11}, + [1159] = {.lex_state = 43, .external_lex_state = 11}, + [1160] = {.lex_state = 43, .external_lex_state = 11}, + [1161] = {.lex_state = 43, .external_lex_state = 11}, + [1162] = {.lex_state = 43, .external_lex_state = 11}, + [1163] = {.lex_state = 43, .external_lex_state = 9}, + [1164] = {.lex_state = 43, .external_lex_state = 10}, + [1165] = {.lex_state = 43, .external_lex_state = 12}, + [1166] = {.lex_state = 43, .external_lex_state = 9}, + [1167] = {.lex_state = 43, .external_lex_state = 9}, + [1168] = {.lex_state = 43, .external_lex_state = 9}, + [1169] = {.lex_state = 43, .external_lex_state = 9}, + [1170] = {.lex_state = 43, .external_lex_state = 12}, + [1171] = {.lex_state = 43, .external_lex_state = 9}, + [1172] = {.lex_state = 43, .external_lex_state = 9}, + [1173] = {.lex_state = 43, .external_lex_state = 11}, + [1174] = {.lex_state = 43, .external_lex_state = 10}, + [1175] = {.lex_state = 43, .external_lex_state = 10}, + [1176] = {.lex_state = 43, .external_lex_state = 9}, + [1177] = {.lex_state = 43, .external_lex_state = 12}, + [1178] = {.lex_state = 43, .external_lex_state = 12}, + [1179] = {.lex_state = 43, .external_lex_state = 10}, + [1180] = {.lex_state = 43, .external_lex_state = 12}, + [1181] = {.lex_state = 43, .external_lex_state = 12}, + [1182] = {.lex_state = 43, .external_lex_state = 9}, + [1183] = {.lex_state = 43, .external_lex_state = 9}, + [1184] = {.lex_state = 43, .external_lex_state = 9}, + [1185] = {.lex_state = 43, .external_lex_state = 12}, + [1186] = {.lex_state = 43, .external_lex_state = 11}, + [1187] = {.lex_state = 43, .external_lex_state = 9}, + [1188] = {.lex_state = 43, .external_lex_state = 12}, + [1189] = {.lex_state = 43, .external_lex_state = 12}, + [1190] = {.lex_state = 43, .external_lex_state = 9}, + [1191] = {.lex_state = 43, .external_lex_state = 9}, + [1192] = {.lex_state = 43, .external_lex_state = 12}, + [1193] = {.lex_state = 43, .external_lex_state = 9}, + [1194] = {.lex_state = 43, .external_lex_state = 9}, + [1195] = {.lex_state = 43, .external_lex_state = 12}, + [1196] = {.lex_state = 43, .external_lex_state = 12}, + [1197] = {.lex_state = 43, .external_lex_state = 11}, + [1198] = {.lex_state = 43, .external_lex_state = 10}, + [1199] = {.lex_state = 43, .external_lex_state = 12}, + [1200] = {.lex_state = 43, .external_lex_state = 10}, + [1201] = {.lex_state = 43, .external_lex_state = 10}, + [1202] = {.lex_state = 43, .external_lex_state = 10}, + [1203] = {.lex_state = 43, .external_lex_state = 10}, + [1204] = {.lex_state = 43, .external_lex_state = 12}, + [1205] = {.lex_state = 43, .external_lex_state = 10}, + [1206] = {.lex_state = 43, .external_lex_state = 12}, + [1207] = {.lex_state = 43, .external_lex_state = 12}, + [1208] = {.lex_state = 43, .external_lex_state = 11}, + [1209] = {.lex_state = 43, .external_lex_state = 12}, + [1210] = {.lex_state = 43, .external_lex_state = 12}, + [1211] = {.lex_state = 43, .external_lex_state = 10}, + [1212] = {.lex_state = 43, .external_lex_state = 9}, + [1213] = {.lex_state = 43, .external_lex_state = 10}, + [1214] = {.lex_state = 43, .external_lex_state = 12}, + [1215] = {.lex_state = 43, .external_lex_state = 12}, + [1216] = {.lex_state = 43, .external_lex_state = 9}, + [1217] = {.lex_state = 43, .external_lex_state = 11}, + [1218] = {.lex_state = 43, .external_lex_state = 13}, + [1219] = {.lex_state = 43, .external_lex_state = 9}, + [1220] = {.lex_state = 43, .external_lex_state = 13}, + [1221] = {.lex_state = 43, .external_lex_state = 11}, + [1222] = {.lex_state = 43, .external_lex_state = 11}, + [1223] = {.lex_state = 43, .external_lex_state = 12}, + [1224] = {.lex_state = 43, .external_lex_state = 11}, + [1225] = {.lex_state = 43, .external_lex_state = 12}, + [1226] = {.lex_state = 43, .external_lex_state = 11}, + [1227] = {.lex_state = 43, .external_lex_state = 12}, + [1228] = {.lex_state = 43, .external_lex_state = 12}, + [1229] = {.lex_state = 43, .external_lex_state = 12}, + [1230] = {.lex_state = 43, .external_lex_state = 12}, + [1231] = {.lex_state = 43, .external_lex_state = 13}, + [1232] = {.lex_state = 43, .external_lex_state = 13}, + [1233] = {.lex_state = 43, .external_lex_state = 11}, + [1234] = {.lex_state = 15, .external_lex_state = 14}, + [1235] = {.lex_state = 43, .external_lex_state = 13}, + [1236] = {.lex_state = 43, .external_lex_state = 13}, + [1237] = {.lex_state = 43, .external_lex_state = 13}, + [1238] = {.lex_state = 43, .external_lex_state = 12}, + [1239] = {.lex_state = 43, .external_lex_state = 13}, + [1240] = {.lex_state = 15, .external_lex_state = 14}, + [1241] = {.lex_state = 43, .external_lex_state = 12}, + [1242] = {.lex_state = 15, .external_lex_state = 14}, + [1243] = {.lex_state = 43, .external_lex_state = 13}, + [1244] = {.lex_state = 43, .external_lex_state = 12}, + [1245] = {.lex_state = 43, .external_lex_state = 11}, + [1246] = {.lex_state = 43, .external_lex_state = 12}, + [1247] = {.lex_state = 43, .external_lex_state = 12}, + [1248] = {.lex_state = 43, .external_lex_state = 10}, + [1249] = {.lex_state = 43, .external_lex_state = 13}, + [1250] = {.lex_state = 43, .external_lex_state = 9}, + [1251] = {.lex_state = 43, .external_lex_state = 13}, + [1252] = {.lex_state = 15, .external_lex_state = 14}, + [1253] = {.lex_state = 43, .external_lex_state = 9}, + [1254] = {.lex_state = 43, .external_lex_state = 12}, + [1255] = {.lex_state = 43, .external_lex_state = 11}, + [1256] = {.lex_state = 43, .external_lex_state = 13}, + [1257] = {.lex_state = 43, .external_lex_state = 10}, + [1258] = {.lex_state = 43, .external_lex_state = 11}, + [1259] = {.lex_state = 43, .external_lex_state = 12}, + [1260] = {.lex_state = 43, .external_lex_state = 13}, + [1261] = {.lex_state = 43, .external_lex_state = 13}, + [1262] = {.lex_state = 43, .external_lex_state = 13}, + [1263] = {.lex_state = 43, .external_lex_state = 13}, + [1264] = {.lex_state = 43, .external_lex_state = 12}, + [1265] = {.lex_state = 43, .external_lex_state = 11}, + [1266] = {.lex_state = 43, .external_lex_state = 13}, + [1267] = {.lex_state = 43, .external_lex_state = 13}, + [1268] = {.lex_state = 43, .external_lex_state = 10}, + [1269] = {.lex_state = 43, .external_lex_state = 10}, + [1270] = {.lex_state = 43, .external_lex_state = 13}, + [1271] = {.lex_state = 43, .external_lex_state = 13}, + [1272] = {.lex_state = 43, .external_lex_state = 13}, + [1273] = {.lex_state = 43, .external_lex_state = 13}, + [1274] = {.lex_state = 43, .external_lex_state = 12}, + [1275] = {.lex_state = 43, .external_lex_state = 13}, + [1276] = {.lex_state = 43, .external_lex_state = 10}, + [1277] = {.lex_state = 43, .external_lex_state = 12}, + [1278] = {.lex_state = 43, .external_lex_state = 10}, + [1279] = {.lex_state = 43, .external_lex_state = 13}, + [1280] = {.lex_state = 43, .external_lex_state = 13}, + [1281] = {.lex_state = 43, .external_lex_state = 12}, + [1282] = {.lex_state = 43, .external_lex_state = 13}, + [1283] = {.lex_state = 43, .external_lex_state = 10}, + [1284] = {.lex_state = 43, .external_lex_state = 11}, + [1285] = {.lex_state = 43, .external_lex_state = 13}, + [1286] = {.lex_state = 43, .external_lex_state = 12}, + [1287] = {.lex_state = 43, .external_lex_state = 12}, + [1288] = {.lex_state = 43, .external_lex_state = 12}, + [1289] = {.lex_state = 43, .external_lex_state = 10}, + [1290] = {.lex_state = 43, .external_lex_state = 13}, + [1291] = {.lex_state = 43, .external_lex_state = 11}, + [1292] = {.lex_state = 43, .external_lex_state = 10}, + [1293] = {.lex_state = 43, .external_lex_state = 12}, + [1294] = {.lex_state = 43, .external_lex_state = 13}, + [1295] = {.lex_state = 43, .external_lex_state = 11}, + [1296] = {.lex_state = 43, .external_lex_state = 11}, + [1297] = {.lex_state = 43, .external_lex_state = 11}, + [1298] = {.lex_state = 43, .external_lex_state = 10}, + [1299] = {.lex_state = 43, .external_lex_state = 13}, + [1300] = {.lex_state = 43, .external_lex_state = 13}, + [1301] = {.lex_state = 43, .external_lex_state = 11}, + [1302] = {.lex_state = 43, .external_lex_state = 11}, + [1303] = {.lex_state = 43, .external_lex_state = 10}, + [1304] = {.lex_state = 43, .external_lex_state = 10}, + [1305] = {.lex_state = 43, .external_lex_state = 13}, + [1306] = {.lex_state = 43, .external_lex_state = 13}, + [1307] = {.lex_state = 43, .external_lex_state = 11}, + [1308] = {.lex_state = 43, .external_lex_state = 12}, + [1309] = {.lex_state = 43, .external_lex_state = 12}, + [1310] = {.lex_state = 43, .external_lex_state = 12}, + [1311] = {.lex_state = 43, .external_lex_state = 10}, + [1312] = {.lex_state = 43, .external_lex_state = 10}, + [1313] = {.lex_state = 43, .external_lex_state = 11}, + [1314] = {.lex_state = 43, .external_lex_state = 12}, + [1315] = {.lex_state = 43, .external_lex_state = 13}, + [1316] = {.lex_state = 43, .external_lex_state = 13}, + [1317] = {.lex_state = 43, .external_lex_state = 11}, + [1318] = {.lex_state = 43, .external_lex_state = 10}, + [1319] = {.lex_state = 43, .external_lex_state = 12}, + [1320] = {.lex_state = 43, .external_lex_state = 11}, + [1321] = {.lex_state = 43, .external_lex_state = 12}, + [1322] = {.lex_state = 43, .external_lex_state = 10}, + [1323] = {.lex_state = 43, .external_lex_state = 11}, + [1324] = {.lex_state = 43, .external_lex_state = 10}, + [1325] = {.lex_state = 43, .external_lex_state = 10}, + [1326] = {.lex_state = 43, .external_lex_state = 11}, + [1327] = {.lex_state = 43, .external_lex_state = 11}, + [1328] = {.lex_state = 43, .external_lex_state = 10}, + [1329] = {.lex_state = 43, .external_lex_state = 11}, + [1330] = {.lex_state = 43, .external_lex_state = 10}, + [1331] = {.lex_state = 43, .external_lex_state = 10}, + [1332] = {.lex_state = 43, .external_lex_state = 10}, + [1333] = {.lex_state = 43, .external_lex_state = 10}, + [1334] = {.lex_state = 43, .external_lex_state = 10}, + [1335] = {.lex_state = 43, .external_lex_state = 10}, + [1336] = {.lex_state = 43, .external_lex_state = 10}, + [1337] = {.lex_state = 43, .external_lex_state = 10}, + [1338] = {.lex_state = 43, .external_lex_state = 10}, + [1339] = {.lex_state = 43, .external_lex_state = 10}, + [1340] = {.lex_state = 43, .external_lex_state = 10}, + [1341] = {.lex_state = 43, .external_lex_state = 10}, + [1342] = {.lex_state = 43, .external_lex_state = 12}, + [1343] = {.lex_state = 43, .external_lex_state = 12}, + [1344] = {.lex_state = 43, .external_lex_state = 10}, + [1345] = {.lex_state = 43, .external_lex_state = 10}, + [1346] = {.lex_state = 43, .external_lex_state = 12}, + [1347] = {.lex_state = 6, .external_lex_state = 11}, + [1348] = {.lex_state = 43, .external_lex_state = 10}, + [1349] = {.lex_state = 43, .external_lex_state = 10}, + [1350] = {.lex_state = 43, .external_lex_state = 10}, + [1351] = {.lex_state = 6, .external_lex_state = 11}, + [1352] = {.lex_state = 43, .external_lex_state = 11}, + [1353] = {.lex_state = 43, .external_lex_state = 10}, + [1354] = {.lex_state = 43, .external_lex_state = 11}, + [1355] = {.lex_state = 43, .external_lex_state = 10}, + [1356] = {.lex_state = 6, .external_lex_state = 11}, + [1357] = {.lex_state = 0, .external_lex_state = 9}, + [1358] = {.lex_state = 0, .external_lex_state = 9}, + [1359] = {.lex_state = 43, .external_lex_state = 11}, + [1360] = {.lex_state = 0, .external_lex_state = 9}, + [1361] = {.lex_state = 43, .external_lex_state = 10}, + [1362] = {.lex_state = 0, .external_lex_state = 9}, + [1363] = {.lex_state = 0, .external_lex_state = 9}, + [1364] = {.lex_state = 43, .external_lex_state = 13}, + [1365] = {.lex_state = 0, .external_lex_state = 9}, + [1366] = {.lex_state = 0, .external_lex_state = 9}, + [1367] = {.lex_state = 0, .external_lex_state = 9}, + [1368] = {.lex_state = 0, .external_lex_state = 9}, + [1369] = {.lex_state = 0, .external_lex_state = 13}, + [1370] = {.lex_state = 0, .external_lex_state = 13}, + [1371] = {.lex_state = 43, .external_lex_state = 10}, + [1372] = {.lex_state = 0, .external_lex_state = 9}, + [1373] = {.lex_state = 0, .external_lex_state = 9}, + [1374] = {.lex_state = 43, .external_lex_state = 10}, + [1375] = {.lex_state = 0, .external_lex_state = 9}, + [1376] = {.lex_state = 43, .external_lex_state = 10}, + [1377] = {.lex_state = 0, .external_lex_state = 9}, + [1378] = {.lex_state = 0, .external_lex_state = 13}, + [1379] = {.lex_state = 0, .external_lex_state = 11}, + [1380] = {.lex_state = 0, .external_lex_state = 11}, + [1381] = {.lex_state = 0, .external_lex_state = 11}, + [1382] = {.lex_state = 43, .external_lex_state = 10}, + [1383] = {.lex_state = 0, .external_lex_state = 9}, + [1384] = {.lex_state = 43, .external_lex_state = 10}, + [1385] = {.lex_state = 43, .external_lex_state = 10}, + [1386] = {.lex_state = 0, .external_lex_state = 12}, + [1387] = {.lex_state = 0, .external_lex_state = 11}, + [1388] = {.lex_state = 43, .external_lex_state = 10}, + [1389] = {.lex_state = 0, .external_lex_state = 11}, + [1390] = {.lex_state = 0, .external_lex_state = 13}, + [1391] = {.lex_state = 43, .external_lex_state = 10}, + [1392] = {.lex_state = 0, .external_lex_state = 13}, + [1393] = {.lex_state = 0, .external_lex_state = 13}, + [1394] = {.lex_state = 0, .external_lex_state = 13}, + [1395] = {.lex_state = 0, .external_lex_state = 13}, + [1396] = {.lex_state = 0, .external_lex_state = 12}, + [1397] = {.lex_state = 0, .external_lex_state = 13}, + [1398] = {.lex_state = 43, .external_lex_state = 10}, + [1399] = {.lex_state = 0, .external_lex_state = 11}, + [1400] = {.lex_state = 0, .external_lex_state = 11}, + [1401] = {.lex_state = 43, .external_lex_state = 10}, + [1402] = {.lex_state = 0, .external_lex_state = 13}, + [1403] = {.lex_state = 43, .external_lex_state = 10}, + [1404] = {.lex_state = 0, .external_lex_state = 12}, + [1405] = {.lex_state = 0, .external_lex_state = 13}, + [1406] = {.lex_state = 0, .external_lex_state = 13}, + [1407] = {.lex_state = 0, .external_lex_state = 12}, + [1408] = {.lex_state = 43, .external_lex_state = 13}, + [1409] = {.lex_state = 0, .external_lex_state = 11}, + [1410] = {.lex_state = 0, .external_lex_state = 13}, + [1411] = {.lex_state = 43, .external_lex_state = 10}, + [1412] = {.lex_state = 0, .external_lex_state = 12}, + [1413] = {.lex_state = 0, .external_lex_state = 13}, + [1414] = {.lex_state = 0, .external_lex_state = 13}, + [1415] = {.lex_state = 0, .external_lex_state = 12}, + [1416] = {.lex_state = 0, .external_lex_state = 13}, + [1417] = {.lex_state = 0, .external_lex_state = 12}, + [1418] = {.lex_state = 0, .external_lex_state = 13}, + [1419] = {.lex_state = 43, .external_lex_state = 10}, + [1420] = {.lex_state = 43, .external_lex_state = 10}, + [1421] = {.lex_state = 0, .external_lex_state = 13}, + [1422] = {.lex_state = 0, .external_lex_state = 12}, + [1423] = {.lex_state = 0, .external_lex_state = 13}, + [1424] = {.lex_state = 43, .external_lex_state = 10}, + [1425] = {.lex_state = 0, .external_lex_state = 12}, + [1426] = {.lex_state = 0, .external_lex_state = 12}, + [1427] = {.lex_state = 43, .external_lex_state = 10}, + [1428] = {.lex_state = 0, .external_lex_state = 12}, + [1429] = {.lex_state = 0, .external_lex_state = 13}, + [1430] = {.lex_state = 0, .external_lex_state = 12}, + [1431] = {.lex_state = 0, .external_lex_state = 13}, + [1432] = {.lex_state = 0, .external_lex_state = 11}, + [1433] = {.lex_state = 0, .external_lex_state = 13}, + [1434] = {.lex_state = 43, .external_lex_state = 10}, + [1435] = {.lex_state = 43, .external_lex_state = 10}, + [1436] = {.lex_state = 0, .external_lex_state = 13}, + [1437] = {.lex_state = 0, .external_lex_state = 11}, + [1438] = {.lex_state = 0, .external_lex_state = 13}, + [1439] = {.lex_state = 0, .external_lex_state = 11}, + [1440] = {.lex_state = 43, .external_lex_state = 10}, + [1441] = {.lex_state = 0, .external_lex_state = 12}, + [1442] = {.lex_state = 0, .external_lex_state = 13}, + [1443] = {.lex_state = 0, .external_lex_state = 13}, + [1444] = {.lex_state = 0, .external_lex_state = 11}, + [1445] = {.lex_state = 0, .external_lex_state = 13}, + [1446] = {.lex_state = 0, .external_lex_state = 12}, + [1447] = {.lex_state = 0, .external_lex_state = 12}, + [1448] = {.lex_state = 0, .external_lex_state = 13}, + [1449] = {.lex_state = 0, .external_lex_state = 13}, + [1450] = {.lex_state = 0, .external_lex_state = 13}, + [1451] = {.lex_state = 0, .external_lex_state = 12}, + [1452] = {.lex_state = 0, .external_lex_state = 11}, + [1453] = {.lex_state = 43, .external_lex_state = 10}, + [1454] = {.lex_state = 0, .external_lex_state = 12}, + [1455] = {.lex_state = 43, .external_lex_state = 10}, + [1456] = {.lex_state = 0, .external_lex_state = 13}, + [1457] = {.lex_state = 0, .external_lex_state = 13}, + [1458] = {.lex_state = 0, .external_lex_state = 13}, + [1459] = {.lex_state = 0, .external_lex_state = 13}, + [1460] = {.lex_state = 0, .external_lex_state = 11}, + [1461] = {.lex_state = 0, .external_lex_state = 12}, + [1462] = {.lex_state = 43, .external_lex_state = 11}, + [1463] = {.lex_state = 43, .external_lex_state = 10}, + [1464] = {.lex_state = 0, .external_lex_state = 13}, + [1465] = {.lex_state = 0, .external_lex_state = 13}, + [1466] = {.lex_state = 0, .external_lex_state = 13}, + [1467] = {.lex_state = 0, .external_lex_state = 13}, + [1468] = {.lex_state = 0, .external_lex_state = 12}, + [1469] = {.lex_state = 0, .external_lex_state = 12}, + [1470] = {.lex_state = 0, .external_lex_state = 13}, + [1471] = {.lex_state = 6, .external_lex_state = 11}, + [1472] = {.lex_state = 0, .external_lex_state = 11}, + [1473] = {.lex_state = 0, .external_lex_state = 13}, + [1474] = {.lex_state = 0, .external_lex_state = 12}, + [1475] = {.lex_state = 0, .external_lex_state = 13}, + [1476] = {.lex_state = 0, .external_lex_state = 13}, + [1477] = {.lex_state = 0, .external_lex_state = 11}, + [1478] = {.lex_state = 0, .external_lex_state = 13}, + [1479] = {.lex_state = 0, .external_lex_state = 12}, + [1480] = {.lex_state = 43, .external_lex_state = 11}, + [1481] = {.lex_state = 43, .external_lex_state = 10}, + [1482] = {.lex_state = 0, .external_lex_state = 13}, + [1483] = {.lex_state = 0, .external_lex_state = 9}, + [1484] = {.lex_state = 0, .external_lex_state = 12}, + [1485] = {.lex_state = 0, .external_lex_state = 12}, + [1486] = {.lex_state = 0, .external_lex_state = 12}, + [1487] = {.lex_state = 0, .external_lex_state = 13}, + [1488] = {.lex_state = 43, .external_lex_state = 9}, + [1489] = {.lex_state = 0, .external_lex_state = 13}, + [1490] = {.lex_state = 0, .external_lex_state = 11}, + [1491] = {.lex_state = 0, .external_lex_state = 12}, + [1492] = {.lex_state = 0, .external_lex_state = 12}, + [1493] = {.lex_state = 0, .external_lex_state = 13}, + [1494] = {.lex_state = 0, .external_lex_state = 13}, + [1495] = {.lex_state = 0, .external_lex_state = 12}, + [1496] = {.lex_state = 0, .external_lex_state = 11}, + [1497] = {.lex_state = 43, .external_lex_state = 10}, + [1498] = {.lex_state = 0, .external_lex_state = 10}, + [1499] = {.lex_state = 0, .external_lex_state = 9}, + [1500] = {.lex_state = 0, .external_lex_state = 9}, + [1501] = {.lex_state = 0, .external_lex_state = 9}, + [1502] = {.lex_state = 0, .external_lex_state = 9}, + [1503] = {.lex_state = 0, .external_lex_state = 12}, + [1504] = {.lex_state = 0, .external_lex_state = 13}, + [1505] = {.lex_state = 0, .external_lex_state = 12}, + [1506] = {.lex_state = 14, .external_lex_state = 10}, + [1507] = {.lex_state = 0, .external_lex_state = 10}, + [1508] = {.lex_state = 0, .external_lex_state = 10}, + [1509] = {.lex_state = 0, .external_lex_state = 12}, + [1510] = {.lex_state = 0, .external_lex_state = 13}, + [1511] = {.lex_state = 0, .external_lex_state = 9}, + [1512] = {.lex_state = 0, .external_lex_state = 12}, + [1513] = {.lex_state = 0, .external_lex_state = 12}, + [1514] = {.lex_state = 0, .external_lex_state = 11}, + [1515] = {.lex_state = 0, .external_lex_state = 9}, + [1516] = {.lex_state = 0, .external_lex_state = 11}, + [1517] = {.lex_state = 0, .external_lex_state = 11}, + [1518] = {.lex_state = 0, .external_lex_state = 13}, + [1519] = {.lex_state = 0, .external_lex_state = 13}, + [1520] = {.lex_state = 0, .external_lex_state = 13}, + [1521] = {.lex_state = 0, .external_lex_state = 12}, + [1522] = {.lex_state = 0, .external_lex_state = 12}, + [1523] = {.lex_state = 0, .external_lex_state = 12}, + [1524] = {.lex_state = 43, .external_lex_state = 10}, + [1525] = {.lex_state = 0, .external_lex_state = 13}, + [1526] = {.lex_state = 14, .external_lex_state = 10}, + [1527] = {.lex_state = 0, .external_lex_state = 13}, + [1528] = {.lex_state = 14, .external_lex_state = 10}, + [1529] = {.lex_state = 14, .external_lex_state = 10}, + [1530] = {.lex_state = 43, .external_lex_state = 10}, + [1531] = {.lex_state = 14, .external_lex_state = 10}, + [1532] = {.lex_state = 0, .external_lex_state = 13}, + [1533] = {.lex_state = 0, .external_lex_state = 9}, + [1534] = {.lex_state = 0, .external_lex_state = 13}, + [1535] = {.lex_state = 0, .external_lex_state = 13}, + [1536] = {.lex_state = 0, .external_lex_state = 9}, + [1537] = {.lex_state = 0, .external_lex_state = 9}, + [1538] = {.lex_state = 43, .external_lex_state = 10}, + [1539] = {.lex_state = 0, .external_lex_state = 13}, + [1540] = {.lex_state = 14, .external_lex_state = 10}, + [1541] = {.lex_state = 0, .external_lex_state = 13}, + [1542] = {.lex_state = 0, .external_lex_state = 11}, + [1543] = {.lex_state = 0, .external_lex_state = 13}, + [1544] = {.lex_state = 0, .external_lex_state = 9}, + [1545] = {.lex_state = 43, .external_lex_state = 10}, + [1546] = {.lex_state = 0, .external_lex_state = 13}, + [1547] = {.lex_state = 43, .external_lex_state = 10}, + [1548] = {.lex_state = 0, .external_lex_state = 10}, + [1549] = {.lex_state = 43, .external_lex_state = 10}, + [1550] = {.lex_state = 0, .external_lex_state = 13}, + [1551] = {.lex_state = 0, .external_lex_state = 13}, + [1552] = {.lex_state = 43, .external_lex_state = 10}, + [1553] = {.lex_state = 43, .external_lex_state = 10}, + [1554] = {.lex_state = 0, .external_lex_state = 11}, + [1555] = {.lex_state = 0, .external_lex_state = 11}, + [1556] = {.lex_state = 0, .external_lex_state = 11}, + [1557] = {.lex_state = 0, .external_lex_state = 12}, + [1558] = {.lex_state = 0, .external_lex_state = 13}, + [1559] = {.lex_state = 0, .external_lex_state = 13}, + [1560] = {.lex_state = 43, .external_lex_state = 10}, + [1561] = {.lex_state = 43, .external_lex_state = 10}, + [1562] = {.lex_state = 0, .external_lex_state = 11}, + [1563] = {.lex_state = 0, .external_lex_state = 11}, + [1564] = {.lex_state = 0, .external_lex_state = 12}, + [1565] = {.lex_state = 0, .external_lex_state = 13}, + [1566] = {.lex_state = 43, .external_lex_state = 10}, + [1567] = {.lex_state = 43, .external_lex_state = 10}, + [1568] = {.lex_state = 0, .external_lex_state = 12}, + [1569] = {.lex_state = 0, .external_lex_state = 12}, + [1570] = {.lex_state = 43, .external_lex_state = 10}, + [1571] = {.lex_state = 43, .external_lex_state = 10}, + [1572] = {.lex_state = 43, .external_lex_state = 10}, + [1573] = {.lex_state = 43, .external_lex_state = 10}, + [1574] = {.lex_state = 0, .external_lex_state = 10}, + [1575] = {.lex_state = 0, .external_lex_state = 11}, + [1576] = {.lex_state = 43, .external_lex_state = 10}, + [1577] = {.lex_state = 0, .external_lex_state = 13}, + [1578] = {.lex_state = 43, .external_lex_state = 10}, + [1579] = {.lex_state = 43, .external_lex_state = 10}, + [1580] = {.lex_state = 0, .external_lex_state = 12}, + [1581] = {.lex_state = 43, .external_lex_state = 10}, + [1582] = {.lex_state = 0, .external_lex_state = 11}, + [1583] = {.lex_state = 0, .external_lex_state = 12}, + [1584] = {.lex_state = 0, .external_lex_state = 11}, + [1585] = {.lex_state = 43, .external_lex_state = 10}, + [1586] = {.lex_state = 0, .external_lex_state = 13}, + [1587] = {.lex_state = 43, .external_lex_state = 10}, + [1588] = {.lex_state = 0, .external_lex_state = 12}, + [1589] = {.lex_state = 43, .external_lex_state = 10}, + [1590] = {.lex_state = 0, .external_lex_state = 11}, + [1591] = {.lex_state = 0, .external_lex_state = 11}, + [1592] = {.lex_state = 0, .external_lex_state = 10}, + [1593] = {.lex_state = 0, .external_lex_state = 13}, + [1594] = {.lex_state = 43, .external_lex_state = 10}, + [1595] = {.lex_state = 43, .external_lex_state = 10}, + [1596] = {.lex_state = 0, .external_lex_state = 10}, + [1597] = {.lex_state = 0, .external_lex_state = 11}, + [1598] = {.lex_state = 43, .external_lex_state = 10}, + [1599] = {.lex_state = 0, .external_lex_state = 13}, + [1600] = {.lex_state = 43, .external_lex_state = 10}, + [1601] = {.lex_state = 43, .external_lex_state = 10}, + [1602] = {.lex_state = 0, .external_lex_state = 13}, + [1603] = {.lex_state = 0, .external_lex_state = 13}, + [1604] = {.lex_state = 43, .external_lex_state = 10}, + [1605] = {.lex_state = 0, .external_lex_state = 13}, + [1606] = {.lex_state = 43, .external_lex_state = 10}, + [1607] = {.lex_state = 0, .external_lex_state = 11}, + [1608] = {.lex_state = 0, .external_lex_state = 11}, + [1609] = {.lex_state = 43, .external_lex_state = 10}, + [1610] = {.lex_state = 0, .external_lex_state = 11}, + [1611] = {.lex_state = 0, .external_lex_state = 11}, + [1612] = {.lex_state = 0, .external_lex_state = 11}, + [1613] = {.lex_state = 43, .external_lex_state = 10}, + [1614] = {.lex_state = 0, .external_lex_state = 12}, + [1615] = {.lex_state = 43, .external_lex_state = 10}, + [1616] = {.lex_state = 0, .external_lex_state = 12}, + [1617] = {.lex_state = 0, .external_lex_state = 11}, + [1618] = {.lex_state = 43, .external_lex_state = 10}, + [1619] = {.lex_state = 0, .external_lex_state = 12}, + [1620] = {.lex_state = 0, .external_lex_state = 13}, + [1621] = {.lex_state = 43, .external_lex_state = 10}, + [1622] = {.lex_state = 0, .external_lex_state = 12}, + [1623] = {.lex_state = 43, .external_lex_state = 10}, + [1624] = {.lex_state = 43, .external_lex_state = 10}, + [1625] = {.lex_state = 43, .external_lex_state = 10}, + [1626] = {.lex_state = 0, .external_lex_state = 12}, + [1627] = {.lex_state = 43, .external_lex_state = 10}, + [1628] = {.lex_state = 43, .external_lex_state = 10}, + [1629] = {.lex_state = 0, .external_lex_state = 10}, + [1630] = {.lex_state = 43, .external_lex_state = 10}, + [1631] = {.lex_state = 43, .external_lex_state = 10}, + [1632] = {.lex_state = 43, .external_lex_state = 10}, + [1633] = {.lex_state = 0, .external_lex_state = 11}, + [1634] = {.lex_state = 43, .external_lex_state = 10}, + [1635] = {.lex_state = 43, .external_lex_state = 10}, + [1636] = {.lex_state = 0, .external_lex_state = 12}, + [1637] = {.lex_state = 0, .external_lex_state = 12}, + [1638] = {.lex_state = 43, .external_lex_state = 10}, + [1639] = {.lex_state = 0, .external_lex_state = 11}, + [1640] = {.lex_state = 43, .external_lex_state = 10}, + [1641] = {.lex_state = 0, .external_lex_state = 11}, + [1642] = {.lex_state = 43, .external_lex_state = 10}, + [1643] = {.lex_state = 43, .external_lex_state = 10}, + [1644] = {.lex_state = 43, .external_lex_state = 10}, + [1645] = {.lex_state = 43, .external_lex_state = 10}, + [1646] = {.lex_state = 43, .external_lex_state = 10}, + [1647] = {.lex_state = 43, .external_lex_state = 10}, + [1648] = {.lex_state = 0, .external_lex_state = 10}, + [1649] = {.lex_state = 0, .external_lex_state = 11}, + [1650] = {.lex_state = 43, .external_lex_state = 10}, + [1651] = {.lex_state = 43, .external_lex_state = 10}, + [1652] = {.lex_state = 0, .external_lex_state = 13}, + [1653] = {.lex_state = 43, .external_lex_state = 10}, + [1654] = {.lex_state = 43, .external_lex_state = 10}, + [1655] = {.lex_state = 0, .external_lex_state = 12}, + [1656] = {.lex_state = 0, .external_lex_state = 12}, + [1657] = {.lex_state = 0, .external_lex_state = 11}, + [1658] = {.lex_state = 43, .external_lex_state = 10}, + [1659] = {.lex_state = 0, .external_lex_state = 13}, + [1660] = {.lex_state = 0, .external_lex_state = 11}, + [1661] = {.lex_state = 0, .external_lex_state = 13}, + [1662] = {.lex_state = 0, .external_lex_state = 11}, + [1663] = {.lex_state = 0, .external_lex_state = 13}, + [1664] = {.lex_state = 43, .external_lex_state = 10}, + [1665] = {.lex_state = 43, .external_lex_state = 10}, + [1666] = {.lex_state = 0, .external_lex_state = 13}, + [1667] = {.lex_state = 0, .external_lex_state = 12}, + [1668] = {.lex_state = 43, .external_lex_state = 10}, + [1669] = {.lex_state = 0, .external_lex_state = 10}, + [1670] = {.lex_state = 43, .external_lex_state = 10}, + [1671] = {.lex_state = 0, .external_lex_state = 11}, + [1672] = {.lex_state = 0, .external_lex_state = 11}, + [1673] = {.lex_state = 43, .external_lex_state = 10}, + [1674] = {.lex_state = 43, .external_lex_state = 10}, + [1675] = {.lex_state = 0, .external_lex_state = 11}, + [1676] = {.lex_state = 0, .external_lex_state = 10}, + [1677] = {.lex_state = 43, .external_lex_state = 10}, + [1678] = {.lex_state = 43, .external_lex_state = 10}, + [1679] = {.lex_state = 0, .external_lex_state = 10}, + [1680] = {.lex_state = 0, .external_lex_state = 11}, + [1681] = {.lex_state = 43, .external_lex_state = 10}, + [1682] = {.lex_state = 43, .external_lex_state = 10}, + [1683] = {.lex_state = 43, .external_lex_state = 10}, + [1684] = {.lex_state = 43, .external_lex_state = 10}, + [1685] = {.lex_state = 43, .external_lex_state = 10}, + [1686] = {.lex_state = 0, .external_lex_state = 11}, + [1687] = {.lex_state = 43, .external_lex_state = 10}, + [1688] = {.lex_state = 43, .external_lex_state = 10}, + [1689] = {.lex_state = 0, .external_lex_state = 13}, + [1690] = {.lex_state = 43, .external_lex_state = 10}, + [1691] = {.lex_state = 43, .external_lex_state = 10}, + [1692] = {.lex_state = 0, .external_lex_state = 11}, + [1693] = {.lex_state = 0, .external_lex_state = 11}, +}; + +enum { + ts_external_token__newline = 0, + ts_external_token__indent = 1, + ts_external_token__dedent = 2, + ts_external_token__string_start = 3, + ts_external_token__string_content = 4, + ts_external_token__string_end = 5, + ts_external_token_comment = 6, + ts_external_token_RBRACK = 7, + ts_external_token_RPAREN = 8, + ts_external_token_RBRACE = 9, +}; + +static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { + [ts_external_token__newline] = sym__newline, + [ts_external_token__indent] = sym__indent, + [ts_external_token__dedent] = sym__dedent, + [ts_external_token__string_start] = sym__string_start, + [ts_external_token__string_content] = sym__string_content, + [ts_external_token__string_end] = sym__string_end, + [ts_external_token_comment] = sym_comment, + [ts_external_token_RBRACK] = anon_sym_RBRACK, + [ts_external_token_RPAREN] = anon_sym_RPAREN, + [ts_external_token_RBRACE] = anon_sym_RBRACE, +}; + +static const bool ts_external_scanner_states[15][EXTERNAL_TOKEN_COUNT] = { + [1] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token__dedent] = true, + [ts_external_token__string_start] = true, + [ts_external_token__string_content] = true, + [ts_external_token__string_end] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + [ts_external_token_RPAREN] = true, + [ts_external_token_RBRACE] = true, + }, + [2] = { + [ts_external_token__string_start] = true, + [ts_external_token_comment] = true, + }, + [3] = { + [ts_external_token__dedent] = true, + [ts_external_token__string_start] = true, + [ts_external_token_comment] = true, + }, + [4] = { + [ts_external_token__newline] = true, + [ts_external_token__string_start] = true, + [ts_external_token_comment] = true, + }, + [5] = { + [ts_external_token__string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, + }, + [6] = { + [ts_external_token__string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + }, + [7] = { + [ts_external_token__string_start] = true, + [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, + }, + [8] = { + [ts_external_token__newline] = true, + [ts_external_token__indent] = true, + [ts_external_token__string_start] = true, + [ts_external_token_comment] = true, + }, + [9] = { + [ts_external_token__newline] = true, + [ts_external_token_comment] = true, + }, + [10] = { + [ts_external_token_comment] = true, + }, + [11] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACE] = true, + }, + [12] = { + [ts_external_token_comment] = true, + [ts_external_token_RBRACK] = true, + }, + [13] = { + [ts_external_token_comment] = true, + [ts_external_token_RPAREN] = true, + }, + [14] = { + [ts_external_token__string_content] = true, + [ts_external_token__string_end] = true, + [ts_external_token_comment] = true, + }, +}; + +static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { + [0] = { + [ts_builtin_sym_end] = ACTIONS(1), + [sym_identifier] = ACTIONS(1), + [anon_sym_SEMI] = ACTIONS(1), + [anon_sym_import] = ACTIONS(1), + [anon_sym_DOT] = ACTIONS(1), + [anon_sym_from] = ACTIONS(1), + [anon_sym___future__] = ACTIONS(1), + [anon_sym_LPAREN] = ACTIONS(1), + [anon_sym_RPAREN] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), + [anon_sym_as] = ACTIONS(1), + [anon_sym_STAR] = ACTIONS(1), + [anon_sym_print] = ACTIONS(1), + [anon_sym_GT_GT] = ACTIONS(1), + [anon_sym_assert] = ACTIONS(1), + [anon_sym_COLON_EQ] = ACTIONS(1), + [anon_sym_match] = ACTIONS(1), + [anon_sym_return] = ACTIONS(1), + [anon_sym_del] = ACTIONS(1), + [anon_sym_raise] = ACTIONS(1), + [anon_sym_pass] = ACTIONS(1), + [anon_sym_break] = ACTIONS(1), + [anon_sym_continue] = ACTIONS(1), + [anon_sym_if] = ACTIONS(1), + [anon_sym_COLON] = ACTIONS(1), + [anon_sym_elif] = ACTIONS(1), + [anon_sym_else] = ACTIONS(1), + [anon_sym_case] = ACTIONS(1), + [anon_sym_async] = ACTIONS(1), + [anon_sym_for] = ACTIONS(1), + [anon_sym_in] = ACTIONS(1), + [anon_sym_while] = ACTIONS(1), + [anon_sym_try] = ACTIONS(1), + [anon_sym_except] = ACTIONS(1), + [anon_sym_except_STAR] = ACTIONS(1), + [anon_sym_finally] = ACTIONS(1), + [anon_sym_with] = ACTIONS(1), + [anon_sym_def] = ACTIONS(1), + [anon_sym_DASH_GT] = ACTIONS(1), + [anon_sym_STAR_STAR] = ACTIONS(1), + [anon_sym_global] = ACTIONS(1), + [anon_sym_nonlocal] = ACTIONS(1), + [anon_sym_exec] = ACTIONS(1), + [anon_sym_class] = ACTIONS(1), + [anon_sym_AT] = ACTIONS(1), + [anon_sym_LBRACK] = ACTIONS(1), + [anon_sym_RBRACK] = ACTIONS(1), + [anon_sym_EQ] = ACTIONS(1), + [anon_sym_not] = ACTIONS(1), + [anon_sym_and] = ACTIONS(1), + [anon_sym_or] = ACTIONS(1), + [anon_sym_PLUS] = ACTIONS(1), + [anon_sym_DASH] = ACTIONS(1), + [anon_sym_SLASH] = ACTIONS(1), + [anon_sym_PERCENT] = ACTIONS(1), + [anon_sym_SLASH_SLASH] = ACTIONS(1), + [anon_sym_PIPE] = ACTIONS(1), + [anon_sym_AMP] = ACTIONS(1), + [anon_sym_CARET] = ACTIONS(1), + [anon_sym_LT_LT] = ACTIONS(1), + [anon_sym_TILDE] = ACTIONS(1), + [anon_sym_LT] = ACTIONS(1), + [anon_sym_LT_EQ] = ACTIONS(1), + [anon_sym_EQ_EQ] = ACTIONS(1), + [anon_sym_BANG_EQ] = ACTIONS(1), + [anon_sym_GT_EQ] = ACTIONS(1), + [anon_sym_GT] = ACTIONS(1), + [anon_sym_LT_GT] = ACTIONS(1), + [anon_sym_lambda] = ACTIONS(1), + [anon_sym_PLUS_EQ] = ACTIONS(1), + [anon_sym_DASH_EQ] = ACTIONS(1), + [anon_sym_STAR_EQ] = ACTIONS(1), + [anon_sym_SLASH_EQ] = ACTIONS(1), + [anon_sym_AT_EQ] = ACTIONS(1), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(1), + [anon_sym_PERCENT_EQ] = ACTIONS(1), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1), + [anon_sym_GT_GT_EQ] = ACTIONS(1), + [anon_sym_LT_LT_EQ] = ACTIONS(1), + [anon_sym_AMP_EQ] = ACTIONS(1), + [anon_sym_CARET_EQ] = ACTIONS(1), + [anon_sym_PIPE_EQ] = ACTIONS(1), + [anon_sym_yield] = ACTIONS(1), + [sym_ellipsis] = ACTIONS(1), + [anon_sym_LBRACE] = ACTIONS(1), + [anon_sym_RBRACE] = ACTIONS(1), + [anon_sym_LBRACE_LBRACE] = ACTIONS(1), + [sym_type_conversion] = ACTIONS(1), + [sym_integer] = ACTIONS(1), + [sym_float] = ACTIONS(1), + [anon_sym_await] = ACTIONS(1), + [anon_sym_struct] = ACTIONS(1), + [sym_true] = ACTIONS(1), + [sym_false] = ACTIONS(1), + [sym_none] = ACTIONS(1), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(1), + [sym__indent] = ACTIONS(1), + [sym__dedent] = ACTIONS(1), + [sym__string_start] = ACTIONS(1), + [sym__string_content] = ACTIONS(1), + [sym__string_end] = ACTIONS(1), + }, + [1] = { + [sym_module] = STATE(1679), + [sym__statement] = STATE(54), + [sym__simple_statements] = STATE(54), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_if_statement] = STATE(54), + [sym_match_statement] = STATE(54), + [sym_for_statement] = STATE(54), + [sym_while_statement] = STATE(54), + [sym_with_statement] = STATE(54), + [sym_function_definition] = STATE(54), + [sym_exec_statement] = STATE(1377), + [sym_decorated_definition] = STATE(54), + [sym_decorator] = STATE(1298), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(54), + [aux_sym_decorated_definition_repeat1] = STATE(1298), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(17), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_async] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_with] = ACTIONS(37), + [anon_sym_def] = ACTIONS(39), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(63), + }, + [2] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(592), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [3] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(531), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [4] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(562), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [5] = { + [sym_chevron] = STATE(1365), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1182), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_attribute] = STATE(862), + [sym_subscript] = STATE(862), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(92), + [anon_sym_GT_GT] = ACTIONS(94), + [anon_sym_match] = ACTIONS(96), + [anon_sym_if] = ACTIONS(87), + [anon_sym_COLON] = ACTIONS(98), + [anon_sym_async] = ACTIONS(92), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_exec] = ACTIONS(92), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(85), + [anon_sym_EQ] = ACTIONS(100), + [anon_sym_not] = ACTIONS(87), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(87), + [anon_sym_DASH] = ACTIONS(87), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH_SLASH] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(51), + [anon_sym_PLUS_EQ] = ACTIONS(98), + [anon_sym_DASH_EQ] = ACTIONS(98), + [anon_sym_STAR_EQ] = ACTIONS(98), + [anon_sym_SLASH_EQ] = ACTIONS(98), + [anon_sym_AT_EQ] = ACTIONS(98), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(98), + [anon_sym_PERCENT_EQ] = ACTIONS(98), + [anon_sym_STAR_STAR_EQ] = ACTIONS(98), + [anon_sym_GT_GT_EQ] = ACTIONS(98), + [anon_sym_LT_LT_EQ] = ACTIONS(98), + [anon_sym_AMP_EQ] = ACTIONS(98), + [anon_sym_CARET_EQ] = ACTIONS(98), + [anon_sym_PIPE_EQ] = ACTIONS(98), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(102), + [anon_sym_struct] = ACTIONS(92), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(85), + [sym__string_start] = ACTIONS(63), + }, + [6] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(522), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [7] = { + [sym_named_expression] = STATE(1175), + [sym__named_expresssion_lhs] = STATE(1669), + [sym_as_pattern] = STATE(1175), + [sym_expression] = STATE(1268), + [sym_primary_expression] = STATE(663), + [sym_not_operator] = STATE(1175), + [sym_boolean_operator] = STATE(1175), + [sym_binary_operator] = STATE(946), + [sym_unary_operator] = STATE(946), + [sym_comparison_operator] = STATE(1175), + [sym_lambda] = STATE(1175), + [sym_attribute] = STATE(946), + [sym_subscript] = STATE(946), + [sym_call] = STATE(946), + [sym_list] = STATE(946), + [sym_set] = STATE(946), + [sym_tuple] = STATE(946), + [sym_dictionary] = STATE(946), + [sym_list_comprehension] = STATE(946), + [sym_dictionary_comprehension] = STATE(946), + [sym_set_comprehension] = STATE(946), + [sym_parenthesized_expression] = STATE(946), + [sym_conditional_expression] = STATE(1175), + [sym_string] = STATE(946), + [sym_await] = STATE(1175), + [sym_identifier] = ACTIONS(104), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(106), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(109), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_COLON_EQ] = ACTIONS(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_if] = ACTIONS(87), + [anon_sym_COLON] = ACTIONS(100), + [anon_sym_async] = ACTIONS(109), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_exec] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(100), + [anon_sym_not] = ACTIONS(118), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH_SLASH] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(124), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(98), + [anon_sym_DASH_EQ] = ACTIONS(98), + [anon_sym_STAR_EQ] = ACTIONS(98), + [anon_sym_SLASH_EQ] = ACTIONS(98), + [anon_sym_AT_EQ] = ACTIONS(98), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(98), + [anon_sym_PERCENT_EQ] = ACTIONS(98), + [anon_sym_STAR_STAR_EQ] = ACTIONS(98), + [anon_sym_GT_GT_EQ] = ACTIONS(98), + [anon_sym_LT_LT_EQ] = ACTIONS(98), + [anon_sym_AMP_EQ] = ACTIONS(98), + [anon_sym_CARET_EQ] = ACTIONS(98), + [anon_sym_PIPE_EQ] = ACTIONS(98), + [sym_ellipsis] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(130), + [sym_integer] = ACTIONS(132), + [sym_float] = ACTIONS(128), + [anon_sym_await] = ACTIONS(134), + [anon_sym_struct] = ACTIONS(109), + [sym_true] = ACTIONS(132), + [sym_false] = ACTIONS(132), + [sym_none] = ACTIONS(132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(85), + [sym__string_start] = ACTIONS(136), + }, + [8] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(460), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [9] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(556), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [10] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(532), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [11] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(566), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [12] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(518), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [13] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(533), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [14] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(625), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [15] = { + [sym_named_expression] = STATE(1175), + [sym__named_expresssion_lhs] = STATE(1669), + [sym_as_pattern] = STATE(1175), + [sym_expression] = STATE(1283), + [sym_primary_expression] = STATE(663), + [sym_not_operator] = STATE(1175), + [sym_boolean_operator] = STATE(1175), + [sym_binary_operator] = STATE(946), + [sym_unary_operator] = STATE(946), + [sym_comparison_operator] = STATE(1175), + [sym_lambda] = STATE(1175), + [sym_attribute] = STATE(946), + [sym_subscript] = STATE(946), + [sym_call] = STATE(946), + [sym_list] = STATE(946), + [sym_set] = STATE(946), + [sym_tuple] = STATE(946), + [sym_dictionary] = STATE(946), + [sym_list_comprehension] = STATE(946), + [sym_dictionary_comprehension] = STATE(946), + [sym_set_comprehension] = STATE(946), + [sym_parenthesized_expression] = STATE(946), + [sym_conditional_expression] = STATE(1175), + [sym_string] = STATE(946), + [sym_await] = STATE(1175), + [sym_identifier] = ACTIONS(104), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(106), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(109), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_COLON_EQ] = ACTIONS(111), + [anon_sym_match] = ACTIONS(113), + [anon_sym_if] = ACTIONS(87), + [anon_sym_COLON] = ACTIONS(100), + [anon_sym_async] = ACTIONS(109), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_exec] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(115), + [anon_sym_EQ] = ACTIONS(100), + [anon_sym_not] = ACTIONS(118), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(121), + [anon_sym_DASH] = ACTIONS(121), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH_SLASH] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(124), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(126), + [anon_sym_PLUS_EQ] = ACTIONS(98), + [anon_sym_DASH_EQ] = ACTIONS(98), + [anon_sym_STAR_EQ] = ACTIONS(98), + [anon_sym_SLASH_EQ] = ACTIONS(98), + [anon_sym_AT_EQ] = ACTIONS(98), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(98), + [anon_sym_PERCENT_EQ] = ACTIONS(98), + [anon_sym_STAR_STAR_EQ] = ACTIONS(98), + [anon_sym_GT_GT_EQ] = ACTIONS(98), + [anon_sym_LT_LT_EQ] = ACTIONS(98), + [anon_sym_AMP_EQ] = ACTIONS(98), + [anon_sym_CARET_EQ] = ACTIONS(98), + [anon_sym_PIPE_EQ] = ACTIONS(98), + [sym_ellipsis] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(130), + [sym_integer] = ACTIONS(132), + [sym_float] = ACTIONS(128), + [anon_sym_await] = ACTIONS(134), + [anon_sym_struct] = ACTIONS(109), + [sym_true] = ACTIONS(132), + [sym_false] = ACTIONS(132), + [sym_none] = ACTIONS(132), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(85), + [sym__string_start] = ACTIONS(136), + }, + [16] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(554), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [17] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(559), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [18] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(560), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [19] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(633), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [20] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(638), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [21] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(623), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [22] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(597), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [23] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(505), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [24] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(577), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [25] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(582), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [26] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(567), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [27] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(585), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [28] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(598), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [29] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(587), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [30] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(512), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [31] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(509), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [32] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(594), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [33] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(511), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [34] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(549), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [35] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(571), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [36] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(519), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [37] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(605), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [38] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(469), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [39] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(615), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [40] = { + [sym__statement] = STATE(55), + [sym__simple_statements] = STATE(55), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(55), + [sym_match_statement] = STATE(55), + [sym_for_statement] = STATE(55), + [sym_while_statement] = STATE(55), + [sym_with_statement] = STATE(55), + [sym_function_definition] = STATE(55), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(55), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(618), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(55), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(79), + [sym__string_start] = ACTIONS(63), + }, + [41] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(550), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [42] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(542), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [43] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(530), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [44] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(513), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [45] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(613), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [46] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(639), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [47] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(521), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [48] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(608), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [49] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(537), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [50] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(572), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [51] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(573), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [52] = { + [sym__statement] = STATE(58), + [sym__simple_statements] = STATE(58), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(58), + [sym_match_statement] = STATE(58), + [sym_for_statement] = STATE(58), + [sym_while_statement] = STATE(58), + [sym_with_statement] = STATE(58), + [sym_function_definition] = STATE(58), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(58), + [sym_decorator] = STATE(1289), + [sym_block] = STATE(534), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(58), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(81), + [sym__string_start] = ACTIONS(63), + }, + [53] = { + [sym__statement] = STATE(53), + [sym__simple_statements] = STATE(53), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(53), + [sym_match_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_with_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(53), + [sym_decorator] = STATE(1289), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(53), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(144), + [anon_sym_print] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(150), + [anon_sym_match] = ACTIONS(153), + [anon_sym_return] = ACTIONS(156), + [anon_sym_del] = ACTIONS(159), + [anon_sym_pass] = ACTIONS(162), + [anon_sym_break] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(168), + [anon_sym_if] = ACTIONS(171), + [anon_sym_async] = ACTIONS(174), + [anon_sym_for] = ACTIONS(177), + [anon_sym_while] = ACTIONS(180), + [anon_sym_with] = ACTIONS(183), + [anon_sym_def] = ACTIONS(186), + [anon_sym_exec] = ACTIONS(189), + [anon_sym_AT] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_not] = ACTIONS(198), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_lambda] = ACTIONS(204), + [sym_ellipsis] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(210), + [sym_integer] = ACTIONS(213), + [sym_float] = ACTIONS(207), + [anon_sym_await] = ACTIONS(216), + [anon_sym_struct] = ACTIONS(219), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(213), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(222), + [sym__string_start] = ACTIONS(224), + }, + [54] = { + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_exec_statement] = STATE(1377), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1298), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1298), + [ts_builtin_sym_end] = ACTIONS(227), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(17), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(29), + [anon_sym_async] = ACTIONS(31), + [anon_sym_for] = ACTIONS(33), + [anon_sym_while] = ACTIONS(35), + [anon_sym_with] = ACTIONS(37), + [anon_sym_def] = ACTIONS(39), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(63), + }, + [55] = { + [sym__statement] = STATE(53), + [sym__simple_statements] = STATE(53), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(53), + [sym_match_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_with_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(53), + [sym_decorator] = STATE(1289), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(53), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(229), + [sym__string_start] = ACTIONS(63), + }, + [56] = { + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1168), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_attribute] = STATE(862), + [sym_subscript] = STATE(862), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(92), + [anon_sym_GT_GT] = ACTIONS(87), + [anon_sym_match] = ACTIONS(96), + [anon_sym_if] = ACTIONS(87), + [anon_sym_COLON] = ACTIONS(98), + [anon_sym_async] = ACTIONS(92), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(87), + [anon_sym_exec] = ACTIONS(92), + [anon_sym_AT] = ACTIONS(87), + [anon_sym_LBRACK] = ACTIONS(233), + [anon_sym_EQ] = ACTIONS(100), + [anon_sym_not] = ACTIONS(47), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(235), + [anon_sym_DASH] = ACTIONS(235), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(87), + [anon_sym_SLASH_SLASH] = ACTIONS(87), + [anon_sym_PIPE] = ACTIONS(87), + [anon_sym_AMP] = ACTIONS(87), + [anon_sym_CARET] = ACTIONS(87), + [anon_sym_LT_LT] = ACTIONS(87), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(51), + [anon_sym_PLUS_EQ] = ACTIONS(98), + [anon_sym_DASH_EQ] = ACTIONS(98), + [anon_sym_STAR_EQ] = ACTIONS(98), + [anon_sym_SLASH_EQ] = ACTIONS(98), + [anon_sym_AT_EQ] = ACTIONS(98), + [anon_sym_SLASH_SLASH_EQ] = ACTIONS(98), + [anon_sym_PERCENT_EQ] = ACTIONS(98), + [anon_sym_STAR_STAR_EQ] = ACTIONS(98), + [anon_sym_GT_GT_EQ] = ACTIONS(98), + [anon_sym_LT_LT_EQ] = ACTIONS(98), + [anon_sym_AMP_EQ] = ACTIONS(98), + [anon_sym_CARET_EQ] = ACTIONS(98), + [anon_sym_PIPE_EQ] = ACTIONS(98), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(102), + [anon_sym_struct] = ACTIONS(92), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(85), + [sym__string_start] = ACTIONS(63), + }, + [57] = { + [sym__statement] = STATE(57), + [sym__simple_statements] = STATE(57), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_if_statement] = STATE(57), + [sym_match_statement] = STATE(57), + [sym_for_statement] = STATE(57), + [sym_while_statement] = STATE(57), + [sym_with_statement] = STATE(57), + [sym_function_definition] = STATE(57), + [sym_exec_statement] = STATE(1377), + [sym_decorated_definition] = STATE(57), + [sym_decorator] = STATE(1298), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(57), + [aux_sym_decorated_definition_repeat1] = STATE(1298), + [ts_builtin_sym_end] = ACTIONS(222), + [sym_identifier] = ACTIONS(138), + [anon_sym_LPAREN] = ACTIONS(141), + [anon_sym_STAR] = ACTIONS(144), + [anon_sym_print] = ACTIONS(147), + [anon_sym_assert] = ACTIONS(150), + [anon_sym_match] = ACTIONS(237), + [anon_sym_return] = ACTIONS(156), + [anon_sym_del] = ACTIONS(159), + [anon_sym_pass] = ACTIONS(162), + [anon_sym_break] = ACTIONS(165), + [anon_sym_continue] = ACTIONS(168), + [anon_sym_if] = ACTIONS(240), + [anon_sym_async] = ACTIONS(243), + [anon_sym_for] = ACTIONS(246), + [anon_sym_while] = ACTIONS(249), + [anon_sym_with] = ACTIONS(252), + [anon_sym_def] = ACTIONS(255), + [anon_sym_exec] = ACTIONS(189), + [anon_sym_AT] = ACTIONS(192), + [anon_sym_LBRACK] = ACTIONS(195), + [anon_sym_not] = ACTIONS(198), + [anon_sym_PLUS] = ACTIONS(201), + [anon_sym_DASH] = ACTIONS(201), + [anon_sym_TILDE] = ACTIONS(201), + [anon_sym_lambda] = ACTIONS(204), + [sym_ellipsis] = ACTIONS(207), + [anon_sym_LBRACE] = ACTIONS(210), + [sym_integer] = ACTIONS(213), + [sym_float] = ACTIONS(207), + [anon_sym_await] = ACTIONS(216), + [anon_sym_struct] = ACTIONS(219), + [sym_true] = ACTIONS(213), + [sym_false] = ACTIONS(213), + [sym_none] = ACTIONS(213), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(224), + }, + [58] = { + [sym__statement] = STATE(53), + [sym__simple_statements] = STATE(53), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_if_statement] = STATE(53), + [sym_match_statement] = STATE(53), + [sym_for_statement] = STATE(53), + [sym_while_statement] = STATE(53), + [sym_with_statement] = STATE(53), + [sym_function_definition] = STATE(53), + [sym_exec_statement] = STATE(1375), + [sym_decorated_definition] = STATE(53), + [sym_decorator] = STATE(1289), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [aux_sym_module_repeat1] = STATE(53), + [aux_sym_decorated_definition_repeat1] = STATE(1289), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(65), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_if] = ACTIONS(67), + [anon_sym_async] = ACTIONS(69), + [anon_sym_for] = ACTIONS(71), + [anon_sym_while] = ACTIONS(73), + [anon_sym_with] = ACTIONS(75), + [anon_sym_def] = ACTIONS(77), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_AT] = ACTIONS(43), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__dedent] = ACTIONS(258), + [sym__string_start] = ACTIONS(63), + }, + [59] = { + [sym_named_expression] = STATE(1156), + [sym__named_expresssion_lhs] = STATE(1629), + [sym_as_pattern] = STATE(1156), + [sym_expression] = STATE(1147), + [sym_primary_expression] = STATE(601), + [sym_not_operator] = STATE(1156), + [sym_boolean_operator] = STATE(1156), + [sym_binary_operator] = STATE(799), + [sym_unary_operator] = STATE(799), + [sym_comparison_operator] = STATE(1156), + [sym_lambda] = STATE(1156), + [sym_attribute] = STATE(799), + [sym_subscript] = STATE(799), + [sym_call] = STATE(799), + [sym_list] = STATE(799), + [sym_set] = STATE(799), + [sym_tuple] = STATE(799), + [sym_dictionary] = STATE(799), + [sym_list_comprehension] = STATE(799), + [sym_dictionary_comprehension] = STATE(799), + [sym_set_comprehension] = STATE(799), + [sym_parenthesized_expression] = STATE(799), + [sym_conditional_expression] = STATE(1156), + [sym_string] = STATE(799), + [sym_await] = STATE(1156), + [sym_identifier] = ACTIONS(260), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(262), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(264), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(266), + [anon_sym_if] = ACTIONS(87), + [anon_sym_COLON] = ACTIONS(85), + [anon_sym_async] = ACTIONS(264), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(264), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(268), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_not] = ACTIONS(270), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(272), + [anon_sym_DASH] = ACTIONS(272), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(272), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(274), + [sym_ellipsis] = ACTIONS(276), + [anon_sym_LBRACE] = ACTIONS(278), + [anon_sym_RBRACE] = ACTIONS(85), + [sym_type_conversion] = ACTIONS(85), + [sym_integer] = ACTIONS(280), + [sym_float] = ACTIONS(276), + [anon_sym_await] = ACTIONS(282), + [anon_sym_struct] = ACTIONS(264), + [sym_true] = ACTIONS(280), + [sym_false] = ACTIONS(280), + [sym_none] = ACTIONS(280), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(284), + }, + [60] = { + [sym_named_expression] = STATE(1175), + [sym__named_expresssion_lhs] = STATE(1669), + [sym_as_pattern] = STATE(1175), + [sym_expression] = STATE(1179), + [sym_primary_expression] = STATE(663), + [sym_not_operator] = STATE(1175), + [sym_boolean_operator] = STATE(1175), + [sym_binary_operator] = STATE(946), + [sym_unary_operator] = STATE(946), + [sym_comparison_operator] = STATE(1175), + [sym_lambda] = STATE(1175), + [sym_attribute] = STATE(946), + [sym_subscript] = STATE(946), + [sym_call] = STATE(946), + [sym_list] = STATE(946), + [sym_set] = STATE(946), + [sym_tuple] = STATE(946), + [sym_dictionary] = STATE(946), + [sym_list_comprehension] = STATE(946), + [sym_dictionary_comprehension] = STATE(946), + [sym_set_comprehension] = STATE(946), + [sym_parenthesized_expression] = STATE(946), + [sym_conditional_expression] = STATE(1175), + [sym_string] = STATE(946), + [sym_await] = STATE(1175), + [sym_identifier] = ACTIONS(104), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(286), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(109), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(113), + [anon_sym_if] = ACTIONS(87), + [anon_sym_COLON] = ACTIONS(85), + [anon_sym_else] = ACTIONS(87), + [anon_sym_async] = ACTIONS(109), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(109), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(288), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_not] = ACTIONS(290), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(124), + [anon_sym_DASH] = ACTIONS(124), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(124), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(126), + [sym_ellipsis] = ACTIONS(128), + [anon_sym_LBRACE] = ACTIONS(130), + [sym_integer] = ACTIONS(132), + [sym_float] = ACTIONS(128), + [anon_sym_await] = ACTIONS(134), + [anon_sym_struct] = ACTIONS(109), + [sym_true] = ACTIONS(132), + [sym_false] = ACTIONS(132), + [sym_none] = ACTIONS(132), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(136), + }, + [61] = { + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1168), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_attribute] = STATE(862), + [sym_subscript] = STATE(862), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(83), + [anon_sym_SEMI] = ACTIONS(85), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(231), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(92), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(96), + [anon_sym_if] = ACTIONS(87), + [anon_sym_async] = ACTIONS(92), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(92), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(233), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_not] = ACTIONS(47), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(102), + [anon_sym_struct] = ACTIONS(92), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(85), + [sym__string_start] = ACTIONS(63), + }, + [62] = { + [sym_named_expression] = STATE(1151), + [sym__named_expresssion_lhs] = STATE(1648), + [sym_as_pattern] = STATE(1151), + [sym_expression] = STATE(1149), + [sym_primary_expression] = STATE(595), + [sym_not_operator] = STATE(1151), + [sym_boolean_operator] = STATE(1151), + [sym_binary_operator] = STATE(849), + [sym_unary_operator] = STATE(849), + [sym_comparison_operator] = STATE(1151), + [sym_lambda] = STATE(1151), + [sym_attribute] = STATE(849), + [sym_subscript] = STATE(849), + [sym_call] = STATE(849), + [sym_list] = STATE(849), + [sym_set] = STATE(849), + [sym_tuple] = STATE(849), + [sym_dictionary] = STATE(849), + [sym_list_comprehension] = STATE(849), + [sym_dictionary_comprehension] = STATE(849), + [sym_set_comprehension] = STATE(849), + [sym_parenthesized_expression] = STATE(849), + [sym_conditional_expression] = STATE(1151), + [sym_string] = STATE(849), + [sym_await] = STATE(1151), + [sym_identifier] = ACTIONS(292), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(294), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(296), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(298), + [anon_sym_if] = ACTIONS(87), + [anon_sym_COLON] = ACTIONS(85), + [anon_sym_async] = ACTIONS(296), + [anon_sym_for] = ACTIONS(87), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(296), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(300), + [anon_sym_not] = ACTIONS(302), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(304), + [anon_sym_DASH] = ACTIONS(304), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(304), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(306), + [sym_ellipsis] = ACTIONS(308), + [anon_sym_LBRACE] = ACTIONS(310), + [anon_sym_RBRACE] = ACTIONS(85), + [sym_integer] = ACTIONS(312), + [sym_float] = ACTIONS(308), + [anon_sym_await] = ACTIONS(314), + [anon_sym_struct] = ACTIONS(296), + [sym_true] = ACTIONS(312), + [sym_false] = ACTIONS(312), + [sym_none] = ACTIONS(312), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(316), + }, + [63] = { + [sym_named_expression] = STATE(1214), + [sym__named_expresssion_lhs] = STATE(1592), + [sym_as_pattern] = STATE(1214), + [sym_expression] = STATE(1204), + [sym_primary_expression] = STATE(701), + [sym_not_operator] = STATE(1214), + [sym_boolean_operator] = STATE(1214), + [sym_binary_operator] = STATE(948), + [sym_unary_operator] = STATE(948), + [sym_comparison_operator] = STATE(1214), + [sym_lambda] = STATE(1214), + [sym_attribute] = STATE(948), + [sym_subscript] = STATE(948), + [sym_call] = STATE(948), + [sym_list] = STATE(948), + [sym_set] = STATE(948), + [sym_tuple] = STATE(948), + [sym_dictionary] = STATE(948), + [sym_list_comprehension] = STATE(948), + [sym_dictionary_comprehension] = STATE(948), + [sym_set_comprehension] = STATE(948), + [sym_parenthesized_expression] = STATE(948), + [sym_conditional_expression] = STATE(1214), + [sym_string] = STATE(948), + [sym_await] = STATE(1214), + [sym_identifier] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(324), + [anon_sym_if] = ACTIONS(87), + [anon_sym_async] = ACTIONS(322), + [anon_sym_for] = ACTIONS(87), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_not] = ACTIONS(328), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(330), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(332), + [sym_ellipsis] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), + [sym_integer] = ACTIONS(338), + [sym_float] = ACTIONS(334), + [anon_sym_await] = ACTIONS(340), + [anon_sym_struct] = ACTIONS(322), + [sym_true] = ACTIONS(338), + [sym_false] = ACTIONS(338), + [sym_none] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(342), + }, + [64] = { + [sym_named_expression] = STATE(1260), + [sym__named_expresssion_lhs] = STATE(1596), + [sym_as_pattern] = STATE(1260), + [sym_expression] = STATE(1263), + [sym_primary_expression] = STATE(810), + [sym_not_operator] = STATE(1260), + [sym_boolean_operator] = STATE(1260), + [sym_binary_operator] = STATE(994), + [sym_unary_operator] = STATE(994), + [sym_comparison_operator] = STATE(1260), + [sym_lambda] = STATE(1260), + [sym_attribute] = STATE(994), + [sym_subscript] = STATE(994), + [sym_call] = STATE(994), + [sym_list] = STATE(994), + [sym_set] = STATE(994), + [sym_tuple] = STATE(994), + [sym_dictionary] = STATE(994), + [sym_list_comprehension] = STATE(994), + [sym_dictionary_comprehension] = STATE(994), + [sym_set_comprehension] = STATE(994), + [sym_parenthesized_expression] = STATE(994), + [sym_conditional_expression] = STATE(1260), + [sym_string] = STATE(994), + [sym_await] = STATE(1260), + [sym_identifier] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(346), + [anon_sym_RPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(348), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(350), + [anon_sym_if] = ACTIONS(87), + [anon_sym_async] = ACTIONS(348), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(348), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(87), + [anon_sym_not] = ACTIONS(354), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(358), + [sym_ellipsis] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(362), + [sym_integer] = ACTIONS(364), + [sym_float] = ACTIONS(360), + [anon_sym_await] = ACTIONS(366), + [anon_sym_struct] = ACTIONS(348), + [sym_true] = ACTIONS(364), + [sym_false] = ACTIONS(364), + [sym_none] = ACTIONS(364), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(368), + }, + [65] = { + [sym_named_expression] = STATE(1277), + [sym__named_expresssion_lhs] = STATE(1574), + [sym_as_pattern] = STATE(1277), + [sym_expression] = STATE(1246), + [sym_primary_expression] = STATE(769), + [sym_not_operator] = STATE(1277), + [sym_boolean_operator] = STATE(1277), + [sym_binary_operator] = STATE(1019), + [sym_unary_operator] = STATE(1019), + [sym_comparison_operator] = STATE(1277), + [sym_lambda] = STATE(1277), + [sym_attribute] = STATE(1019), + [sym_subscript] = STATE(1019), + [sym_call] = STATE(1019), + [sym_list] = STATE(1019), + [sym_set] = STATE(1019), + [sym_tuple] = STATE(1019), + [sym_dictionary] = STATE(1019), + [sym_list_comprehension] = STATE(1019), + [sym_dictionary_comprehension] = STATE(1019), + [sym_set_comprehension] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_conditional_expression] = STATE(1277), + [sym_string] = STATE(1019), + [sym_await] = STATE(1277), + [sym_identifier] = ACTIONS(370), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(376), + [anon_sym_if] = ACTIONS(87), + [anon_sym_COLON] = ACTIONS(85), + [anon_sym_async] = ACTIONS(374), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(378), + [anon_sym_RBRACK] = ACTIONS(85), + [anon_sym_not] = ACTIONS(380), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(384), + [sym_ellipsis] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [sym_integer] = ACTIONS(390), + [sym_float] = ACTIONS(386), + [anon_sym_await] = ACTIONS(392), + [anon_sym_struct] = ACTIONS(374), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_none] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(394), + }, + [66] = { + [sym_named_expression] = STATE(1260), + [sym__named_expresssion_lhs] = STATE(1596), + [sym_as_pattern] = STATE(1260), + [sym_expression] = STATE(1263), + [sym_primary_expression] = STATE(810), + [sym_not_operator] = STATE(1260), + [sym_boolean_operator] = STATE(1260), + [sym_binary_operator] = STATE(994), + [sym_unary_operator] = STATE(994), + [sym_comparison_operator] = STATE(1260), + [sym_lambda] = STATE(1260), + [sym_attribute] = STATE(994), + [sym_subscript] = STATE(994), + [sym_call] = STATE(994), + [sym_list] = STATE(994), + [sym_set] = STATE(994), + [sym_tuple] = STATE(994), + [sym_dictionary] = STATE(994), + [sym_list_comprehension] = STATE(994), + [sym_dictionary_comprehension] = STATE(994), + [sym_set_comprehension] = STATE(994), + [sym_parenthesized_expression] = STATE(994), + [sym_conditional_expression] = STATE(1260), + [sym_string] = STATE(994), + [sym_await] = STATE(1260), + [sym_identifier] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(346), + [anon_sym_RPAREN] = ACTIONS(85), + [anon_sym_COMMA] = ACTIONS(85), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(348), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(350), + [anon_sym_if] = ACTIONS(87), + [anon_sym_async] = ACTIONS(348), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(348), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(352), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_not] = ACTIONS(354), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(358), + [sym_ellipsis] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(362), + [sym_integer] = ACTIONS(364), + [sym_float] = ACTIONS(360), + [anon_sym_await] = ACTIONS(366), + [anon_sym_struct] = ACTIONS(348), + [sym_true] = ACTIONS(364), + [sym_false] = ACTIONS(364), + [sym_none] = ACTIONS(364), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(368), + }, + [67] = { + [sym_named_expression] = STATE(1214), + [sym__named_expresssion_lhs] = STATE(1592), + [sym_as_pattern] = STATE(1214), + [sym_expression] = STATE(1204), + [sym_primary_expression] = STATE(701), + [sym_not_operator] = STATE(1214), + [sym_boolean_operator] = STATE(1214), + [sym_binary_operator] = STATE(948), + [sym_unary_operator] = STATE(948), + [sym_comparison_operator] = STATE(1214), + [sym_lambda] = STATE(1214), + [sym_attribute] = STATE(948), + [sym_subscript] = STATE(948), + [sym_call] = STATE(948), + [sym_list] = STATE(948), + [sym_set] = STATE(948), + [sym_tuple] = STATE(948), + [sym_dictionary] = STATE(948), + [sym_list_comprehension] = STATE(948), + [sym_dictionary_comprehension] = STATE(948), + [sym_set_comprehension] = STATE(948), + [sym_parenthesized_expression] = STATE(948), + [sym_conditional_expression] = STATE(1214), + [sym_string] = STATE(948), + [sym_await] = STATE(1214), + [sym_identifier] = ACTIONS(318), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(320), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(322), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(324), + [anon_sym_if] = ACTIONS(87), + [anon_sym_async] = ACTIONS(322), + [anon_sym_for] = ACTIONS(87), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(322), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(326), + [anon_sym_RBRACK] = ACTIONS(89), + [anon_sym_not] = ACTIONS(328), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(330), + [anon_sym_DASH] = ACTIONS(330), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(330), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(332), + [sym_ellipsis] = ACTIONS(334), + [anon_sym_LBRACE] = ACTIONS(336), + [sym_integer] = ACTIONS(338), + [sym_float] = ACTIONS(334), + [anon_sym_await] = ACTIONS(340), + [anon_sym_struct] = ACTIONS(322), + [sym_true] = ACTIONS(338), + [sym_false] = ACTIONS(338), + [sym_none] = ACTIONS(338), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(342), + }, + [68] = { + [sym__simple_statements] = STATE(527), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(400), + [sym__indent] = ACTIONS(402), + [sym__string_start] = ACTIONS(63), + }, + [69] = { + [sym__simple_statements] = STATE(617), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(404), + [sym__indent] = ACTIONS(406), + [sym__string_start] = ACTIONS(63), + }, + [70] = { + [sym__simple_statements] = STATE(570), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(408), + [sym__indent] = ACTIONS(410), + [sym__string_start] = ACTIONS(63), + }, + [71] = { + [sym__simple_statements] = STATE(565), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(412), + [sym__indent] = ACTIONS(414), + [sym__string_start] = ACTIONS(63), + }, + [72] = { + [sym__simple_statements] = STATE(539), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(416), + [sym__indent] = ACTIONS(418), + [sym__string_start] = ACTIONS(63), + }, + [73] = { + [sym__simple_statements] = STATE(628), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(420), + [sym__indent] = ACTIONS(422), + [sym__string_start] = ACTIONS(63), + }, + [74] = { + [sym__simple_statements] = STATE(621), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(424), + [sym__indent] = ACTIONS(426), + [sym__string_start] = ACTIONS(63), + }, + [75] = { + [sym__simple_statements] = STATE(600), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(428), + [sym__indent] = ACTIONS(430), + [sym__string_start] = ACTIONS(63), + }, + [76] = { + [sym__simple_statements] = STATE(507), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(432), + [sym__indent] = ACTIONS(434), + [sym__string_start] = ACTIONS(63), + }, + [77] = { + [sym__simple_statements] = STATE(634), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(436), + [sym__indent] = ACTIONS(438), + [sym__string_start] = ACTIONS(63), + }, + [78] = { + [sym__simple_statements] = STATE(468), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(440), + [sym__indent] = ACTIONS(442), + [sym__string_start] = ACTIONS(63), + }, + [79] = { + [sym__simple_statements] = STATE(526), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(444), + [sym__indent] = ACTIONS(446), + [sym__string_start] = ACTIONS(63), + }, + [80] = { + [sym__simple_statements] = STATE(610), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(448), + [sym__indent] = ACTIONS(450), + [sym__string_start] = ACTIONS(63), + }, + [81] = { + [sym__simple_statements] = STATE(520), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(452), + [sym__indent] = ACTIONS(454), + [sym__string_start] = ACTIONS(63), + }, + [82] = { + [sym__simple_statements] = STATE(508), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(456), + [sym__indent] = ACTIONS(458), + [sym__string_start] = ACTIONS(63), + }, + [83] = { + [sym__simple_statements] = STATE(524), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(460), + [sym__indent] = ACTIONS(462), + [sym__string_start] = ACTIONS(63), + }, + [84] = { + [sym__simple_statements] = STATE(603), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(464), + [sym__indent] = ACTIONS(466), + [sym__string_start] = ACTIONS(63), + }, + [85] = { + [sym_named_expression] = STATE(1260), + [sym__named_expresssion_lhs] = STATE(1596), + [sym_as_pattern] = STATE(1260), + [sym_expression] = STATE(1263), + [sym_primary_expression] = STATE(810), + [sym_not_operator] = STATE(1260), + [sym_boolean_operator] = STATE(1260), + [sym_binary_operator] = STATE(994), + [sym_unary_operator] = STATE(994), + [sym_comparison_operator] = STATE(1260), + [sym_lambda] = STATE(1260), + [sym_attribute] = STATE(994), + [sym_subscript] = STATE(994), + [sym_call] = STATE(994), + [sym_list] = STATE(994), + [sym_set] = STATE(994), + [sym_tuple] = STATE(994), + [sym_dictionary] = STATE(994), + [sym_list_comprehension] = STATE(994), + [sym_dictionary_comprehension] = STATE(994), + [sym_set_comprehension] = STATE(994), + [sym_parenthesized_expression] = STATE(994), + [sym_conditional_expression] = STATE(1260), + [sym_string] = STATE(994), + [sym_await] = STATE(1260), + [sym_identifier] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(346), + [anon_sym_RPAREN] = ACTIONS(468), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(348), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(350), + [anon_sym_if] = ACTIONS(87), + [anon_sym_async] = ACTIONS(348), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(348), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(352), + [anon_sym_not] = ACTIONS(354), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(358), + [sym_ellipsis] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(362), + [sym_integer] = ACTIONS(364), + [sym_float] = ACTIONS(360), + [anon_sym_await] = ACTIONS(366), + [anon_sym_struct] = ACTIONS(348), + [sym_true] = ACTIONS(364), + [sym_false] = ACTIONS(364), + [sym_none] = ACTIONS(364), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(368), + }, + [86] = { + [sym__simple_statements] = STATE(528), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(471), + [sym__indent] = ACTIONS(473), + [sym__string_start] = ACTIONS(63), + }, + [87] = { + [sym__simple_statements] = STATE(564), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(475), + [sym__indent] = ACTIONS(477), + [sym__string_start] = ACTIONS(63), + }, + [88] = { + [sym__simple_statements] = STATE(581), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(479), + [sym__indent] = ACTIONS(481), + [sym__string_start] = ACTIONS(63), + }, + [89] = { + [sym__simple_statements] = STATE(629), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(483), + [sym__indent] = ACTIONS(485), + [sym__string_start] = ACTIONS(63), + }, + [90] = { + [sym__simple_statements] = STATE(515), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(487), + [sym__indent] = ACTIONS(489), + [sym__string_start] = ACTIONS(63), + }, + [91] = { + [sym__simple_statements] = STATE(606), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(491), + [sym__indent] = ACTIONS(493), + [sym__string_start] = ACTIONS(63), + }, + [92] = { + [sym__simple_statements] = STATE(612), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(495), + [sym__indent] = ACTIONS(497), + [sym__string_start] = ACTIONS(63), + }, + [93] = { + [sym__simple_statements] = STATE(557), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(499), + [sym__indent] = ACTIONS(501), + [sym__string_start] = ACTIONS(63), + }, + [94] = { + [sym__simple_statements] = STATE(553), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(503), + [sym__indent] = ACTIONS(505), + [sym__string_start] = ACTIONS(63), + }, + [95] = { + [sym__simple_statements] = STATE(536), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(507), + [sym__indent] = ACTIONS(509), + [sym__string_start] = ACTIONS(63), + }, + [96] = { + [sym__simple_statements] = STATE(548), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(511), + [sym__indent] = ACTIONS(513), + [sym__string_start] = ACTIONS(63), + }, + [97] = { + [sym__simple_statements] = STATE(545), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(515), + [sym__indent] = ACTIONS(517), + [sym__string_start] = ACTIONS(63), + }, + [98] = { + [sym__simple_statements] = STATE(452), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(519), + [sym__indent] = ACTIONS(521), + [sym__string_start] = ACTIONS(63), + }, + [99] = { + [sym__simple_statements] = STATE(561), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(523), + [sym__indent] = ACTIONS(525), + [sym__string_start] = ACTIONS(63), + }, + [100] = { + [sym__simple_statements] = STATE(589), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(527), + [sym__indent] = ACTIONS(529), + [sym__string_start] = ACTIONS(63), + }, + [101] = { + [sym__simple_statements] = STATE(506), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(531), + [sym__indent] = ACTIONS(533), + [sym__string_start] = ACTIONS(63), + }, + [102] = { + [sym__simple_statements] = STATE(574), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(535), + [sym__indent] = ACTIONS(537), + [sym__string_start] = ACTIONS(63), + }, + [103] = { + [sym__simple_statements] = STATE(590), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(539), + [sym__indent] = ACTIONS(541), + [sym__string_start] = ACTIONS(63), + }, + [104] = { + [sym__simple_statements] = STATE(541), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(543), + [sym__indent] = ACTIONS(545), + [sym__string_start] = ACTIONS(63), + }, + [105] = { + [sym__simple_statements] = STATE(517), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(547), + [sym__indent] = ACTIONS(549), + [sym__string_start] = ACTIONS(63), + }, + [106] = { + [sym__simple_statements] = STATE(586), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(551), + [sym__indent] = ACTIONS(553), + [sym__string_start] = ACTIONS(63), + }, + [107] = { + [sym__simple_statements] = STATE(540), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(555), + [sym__indent] = ACTIONS(557), + [sym__string_start] = ACTIONS(63), + }, + [108] = { + [sym__simple_statements] = STATE(516), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(559), + [sym__indent] = ACTIONS(561), + [sym__string_start] = ACTIONS(63), + }, + [109] = { + [sym__simple_statements] = STATE(535), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(563), + [sym__indent] = ACTIONS(565), + [sym__string_start] = ACTIONS(63), + }, + [110] = { + [sym__simple_statements] = STATE(635), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(567), + [sym__indent] = ACTIONS(569), + [sym__string_start] = ACTIONS(63), + }, + [111] = { + [sym__simple_statements] = STATE(614), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(571), + [sym__indent] = ACTIONS(573), + [sym__string_start] = ACTIONS(63), + }, + [112] = { + [sym__simple_statements] = STATE(583), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(575), + [sym__indent] = ACTIONS(577), + [sym__string_start] = ACTIONS(63), + }, + [113] = { + [sym__simple_statements] = STATE(580), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(579), + [sym__indent] = ACTIONS(581), + [sym__string_start] = ACTIONS(63), + }, + [114] = { + [sym__simple_statements] = STATE(514), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(583), + [sym__indent] = ACTIONS(585), + [sym__string_start] = ACTIONS(63), + }, + [115] = { + [sym__simple_statements] = STATE(640), + [sym_print_statement] = STATE(1377), + [sym_assert_statement] = STATE(1377), + [sym_expression_statement] = STATE(1377), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1377), + [sym_delete_statement] = STATE(1377), + [sym_pass_statement] = STATE(1377), + [sym_break_statement] = STATE(1377), + [sym_continue_statement] = STATE(1377), + [sym_exec_statement] = STATE(1377), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(587), + [sym__indent] = ACTIONS(589), + [sym__string_start] = ACTIONS(63), + }, + [116] = { + [sym__simple_statements] = STATE(578), + [sym_print_statement] = STATE(1375), + [sym_assert_statement] = STATE(1375), + [sym_expression_statement] = STATE(1375), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1375), + [sym_delete_statement] = STATE(1375), + [sym_pass_statement] = STATE(1375), + [sym_break_statement] = STATE(1375), + [sym_continue_statement] = STATE(1375), + [sym_exec_statement] = STATE(1375), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(591), + [sym__indent] = ACTIONS(593), + [sym__string_start] = ACTIONS(63), + }, + [117] = { + [sym_named_expression] = STATE(1277), + [sym__named_expresssion_lhs] = STATE(1574), + [sym_as_pattern] = STATE(1277), + [sym_expression] = STATE(1246), + [sym_primary_expression] = STATE(769), + [sym_not_operator] = STATE(1277), + [sym_boolean_operator] = STATE(1277), + [sym_binary_operator] = STATE(1019), + [sym_unary_operator] = STATE(1019), + [sym_comparison_operator] = STATE(1277), + [sym_lambda] = STATE(1277), + [sym_attribute] = STATE(1019), + [sym_subscript] = STATE(1019), + [sym_call] = STATE(1019), + [sym_list] = STATE(1019), + [sym_set] = STATE(1019), + [sym_tuple] = STATE(1019), + [sym_dictionary] = STATE(1019), + [sym_list_comprehension] = STATE(1019), + [sym_dictionary_comprehension] = STATE(1019), + [sym_set_comprehension] = STATE(1019), + [sym_parenthesized_expression] = STATE(1019), + [sym_conditional_expression] = STATE(1277), + [sym_string] = STATE(1019), + [sym_await] = STATE(1277), + [sym_identifier] = ACTIONS(370), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(468), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(376), + [anon_sym_if] = ACTIONS(87), + [anon_sym_async] = ACTIONS(374), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(374), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(378), + [anon_sym_RBRACK] = ACTIONS(468), + [anon_sym_not] = ACTIONS(380), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(382), + [anon_sym_DASH] = ACTIONS(382), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(382), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(384), + [sym_ellipsis] = ACTIONS(386), + [anon_sym_LBRACE] = ACTIONS(388), + [sym_integer] = ACTIONS(390), + [sym_float] = ACTIONS(386), + [anon_sym_await] = ACTIONS(392), + [anon_sym_struct] = ACTIONS(374), + [sym_true] = ACTIONS(390), + [sym_false] = ACTIONS(390), + [sym_none] = ACTIONS(390), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(394), + }, + [118] = { + [sym_named_expression] = STATE(1260), + [sym__named_expresssion_lhs] = STATE(1596), + [sym_as_pattern] = STATE(1260), + [sym_expression] = STATE(1263), + [sym_primary_expression] = STATE(810), + [sym_not_operator] = STATE(1260), + [sym_boolean_operator] = STATE(1260), + [sym_binary_operator] = STATE(994), + [sym_unary_operator] = STATE(994), + [sym_comparison_operator] = STATE(1260), + [sym_lambda] = STATE(1260), + [sym_attribute] = STATE(994), + [sym_subscript] = STATE(994), + [sym_call] = STATE(994), + [sym_list] = STATE(994), + [sym_set] = STATE(994), + [sym_tuple] = STATE(994), + [sym_dictionary] = STATE(994), + [sym_list_comprehension] = STATE(994), + [sym_dictionary_comprehension] = STATE(994), + [sym_set_comprehension] = STATE(994), + [sym_parenthesized_expression] = STATE(994), + [sym_conditional_expression] = STATE(1260), + [sym_string] = STATE(994), + [sym_await] = STATE(1260), + [sym_identifier] = ACTIONS(344), + [anon_sym_DOT] = ACTIONS(87), + [anon_sym_LPAREN] = ACTIONS(346), + [anon_sym_RPAREN] = ACTIONS(89), + [anon_sym_COMMA] = ACTIONS(89), + [anon_sym_as] = ACTIONS(87), + [anon_sym_STAR] = ACTIONS(87), + [anon_sym_print] = ACTIONS(348), + [anon_sym_GT_GT] = ACTIONS(85), + [anon_sym_match] = ACTIONS(350), + [anon_sym_if] = ACTIONS(87), + [anon_sym_async] = ACTIONS(348), + [anon_sym_in] = ACTIONS(87), + [anon_sym_STAR_STAR] = ACTIONS(85), + [anon_sym_exec] = ACTIONS(348), + [anon_sym_AT] = ACTIONS(85), + [anon_sym_LBRACK] = ACTIONS(352), + [anon_sym_not] = ACTIONS(354), + [anon_sym_and] = ACTIONS(87), + [anon_sym_or] = ACTIONS(87), + [anon_sym_PLUS] = ACTIONS(356), + [anon_sym_DASH] = ACTIONS(356), + [anon_sym_SLASH] = ACTIONS(87), + [anon_sym_PERCENT] = ACTIONS(85), + [anon_sym_SLASH_SLASH] = ACTIONS(85), + [anon_sym_PIPE] = ACTIONS(85), + [anon_sym_AMP] = ACTIONS(85), + [anon_sym_CARET] = ACTIONS(85), + [anon_sym_LT_LT] = ACTIONS(85), + [anon_sym_TILDE] = ACTIONS(356), + [anon_sym_LT] = ACTIONS(87), + [anon_sym_LT_EQ] = ACTIONS(85), + [anon_sym_EQ_EQ] = ACTIONS(85), + [anon_sym_BANG_EQ] = ACTIONS(85), + [anon_sym_GT_EQ] = ACTIONS(85), + [anon_sym_GT] = ACTIONS(87), + [anon_sym_LT_GT] = ACTIONS(85), + [anon_sym_lambda] = ACTIONS(358), + [sym_ellipsis] = ACTIONS(360), + [anon_sym_LBRACE] = ACTIONS(362), + [sym_integer] = ACTIONS(364), + [sym_float] = ACTIONS(360), + [anon_sym_await] = ACTIONS(366), + [anon_sym_struct] = ACTIONS(348), + [sym_true] = ACTIONS(364), + [sym_false] = ACTIONS(364), + [sym_none] = ACTIONS(364), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(368), + }, + [119] = { + [sym_print_statement] = STATE(1501), + [sym_assert_statement] = STATE(1501), + [sym_expression_statement] = STATE(1501), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1501), + [sym_delete_statement] = STATE(1501), + [sym_pass_statement] = STATE(1501), + [sym_break_statement] = STATE(1501), + [sym_continue_statement] = STATE(1501), + [sym_exec_statement] = STATE(1501), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(595), + [sym__string_start] = ACTIONS(63), + }, + [120] = { + [sym_print_statement] = STATE(1501), + [sym_assert_statement] = STATE(1501), + [sym_expression_statement] = STATE(1501), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1501), + [sym_delete_statement] = STATE(1501), + [sym_pass_statement] = STATE(1501), + [sym_break_statement] = STATE(1501), + [sym_continue_statement] = STATE(1501), + [sym_exec_statement] = STATE(1501), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(597), + [sym__string_start] = ACTIONS(63), + }, + [121] = { + [sym_print_statement] = STATE(1501), + [sym_assert_statement] = STATE(1501), + [sym_expression_statement] = STATE(1501), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1501), + [sym_delete_statement] = STATE(1501), + [sym_pass_statement] = STATE(1501), + [sym_break_statement] = STATE(1501), + [sym_continue_statement] = STATE(1501), + [sym_exec_statement] = STATE(1501), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(599), + [sym__string_start] = ACTIONS(63), + }, + [122] = { + [sym_print_statement] = STATE(1501), + [sym_assert_statement] = STATE(1501), + [sym_expression_statement] = STATE(1501), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1501), + [sym_delete_statement] = STATE(1501), + [sym_pass_statement] = STATE(1501), + [sym_break_statement] = STATE(1501), + [sym_continue_statement] = STATE(1501), + [sym_exec_statement] = STATE(1501), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__newline] = ACTIONS(601), + [sym__string_start] = ACTIONS(63), + }, + [123] = { + [sym_print_statement] = STATE(1501), + [sym_assert_statement] = STATE(1501), + [sym_expression_statement] = STATE(1501), + [sym_named_expression] = STATE(1193), + [sym__named_expresssion_lhs] = STATE(1676), + [sym_return_statement] = STATE(1501), + [sym_delete_statement] = STATE(1501), + [sym_pass_statement] = STATE(1501), + [sym_break_statement] = STATE(1501), + [sym_continue_statement] = STATE(1501), + [sym_exec_statement] = STATE(1501), + [sym_pattern] = STATE(1091), + [sym_tuple_pattern] = STATE(1099), + [sym_list_pattern] = STATE(1099), + [sym_list_splat_pattern] = STATE(1099), + [sym_as_pattern] = STATE(1193), + [sym_expression] = STATE(1163), + [sym_primary_expression] = STATE(741), + [sym_not_operator] = STATE(1193), + [sym_boolean_operator] = STATE(1193), + [sym_binary_operator] = STATE(862), + [sym_unary_operator] = STATE(862), + [sym_comparison_operator] = STATE(1193), + [sym_lambda] = STATE(1193), + [sym_assignment] = STATE(1511), + [sym_augmented_assignment] = STATE(1511), + [sym_pattern_list] = STATE(1107), + [sym_attribute] = STATE(398), + [sym_subscript] = STATE(398), + [sym_call] = STATE(862), + [sym_list] = STATE(862), + [sym_set] = STATE(862), + [sym_tuple] = STATE(862), + [sym_dictionary] = STATE(862), + [sym_list_comprehension] = STATE(862), + [sym_dictionary_comprehension] = STATE(862), + [sym_set_comprehension] = STATE(862), + [sym_parenthesized_expression] = STATE(862), + [sym_conditional_expression] = STATE(1193), + [sym_string] = STATE(862), + [sym_await] = STATE(1193), + [sym_identifier] = ACTIONS(7), + [anon_sym_LPAREN] = ACTIONS(9), + [anon_sym_STAR] = ACTIONS(11), + [anon_sym_print] = ACTIONS(13), + [anon_sym_assert] = ACTIONS(15), + [anon_sym_match] = ACTIONS(398), + [anon_sym_return] = ACTIONS(19), + [anon_sym_del] = ACTIONS(21), + [anon_sym_pass] = ACTIONS(23), + [anon_sym_break] = ACTIONS(25), + [anon_sym_continue] = ACTIONS(27), + [anon_sym_async] = ACTIONS(61), + [anon_sym_exec] = ACTIONS(41), + [anon_sym_LBRACK] = ACTIONS(45), + [anon_sym_not] = ACTIONS(47), + [anon_sym_PLUS] = ACTIONS(49), + [anon_sym_DASH] = ACTIONS(49), + [anon_sym_TILDE] = ACTIONS(49), + [anon_sym_lambda] = ACTIONS(51), + [sym_ellipsis] = ACTIONS(53), + [anon_sym_LBRACE] = ACTIONS(55), + [sym_integer] = ACTIONS(57), + [sym_float] = ACTIONS(53), + [anon_sym_await] = ACTIONS(59), + [anon_sym_struct] = ACTIONS(61), + [sym_true] = ACTIONS(57), + [sym_false] = ACTIONS(57), + [sym_none] = ACTIONS(57), + [sym_comment] = ACTIONS(3), + [sym__string_start] = ACTIONS(63), + }, +}; + +static const uint16_t ts_small_parse_table[] = { + [0] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_await, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(398), 1, + anon_sym_match, + STATE(741), 1, + sym_primary_expression, + STATE(1091), 1, + sym_pattern, + STATE(1107), 1, + sym_pattern_list, + STATE(1172), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + STATE(398), 2, + sym_attribute, + sym_subscript, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(61), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1515), 4, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [109] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(603), 1, + sym_identifier, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_STAR, + ACTIONS(611), 1, + anon_sym_match, + ACTIONS(613), 1, + anon_sym_LBRACK, + ACTIONS(615), 1, + anon_sym_RBRACK, + ACTIONS(617), 1, + anon_sym_await, + STATE(701), 1, + sym_primary_expression, + STATE(1124), 1, + sym_expression, + STATE(1428), 1, + sym_pattern, + STATE(1568), 1, + sym__collection_elements, + STATE(1569), 1, + sym__patterns, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(952), 2, + sym_attribute, + sym_subscript, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1503), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(609), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [222] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_await, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(398), 1, + anon_sym_match, + STATE(741), 1, + sym_primary_expression, + STATE(1091), 1, + sym_pattern, + STATE(1107), 1, + sym_pattern_list, + STATE(1172), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + STATE(398), 2, + sym_attribute, + sym_subscript, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(61), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1544), 4, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [331] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + sym_identifier, + ACTIONS(9), 1, + anon_sym_LPAREN, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(45), 1, + anon_sym_LBRACK, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(59), 1, + anon_sym_await, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(398), 1, + anon_sym_match, + STATE(741), 1, + sym_primary_expression, + STATE(1091), 1, + sym_pattern, + STATE(1107), 1, + sym_pattern_list, + STATE(1172), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + STATE(398), 2, + sym_attribute, + sym_subscript, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(61), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1533), 4, + sym_expression_list, + sym_assignment, + sym_augmented_assignment, + sym__right_hand_side, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [440] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(621), 1, + anon_sym_LPAREN, + ACTIONS(623), 1, + anon_sym_RPAREN, + ACTIONS(625), 1, + anon_sym_STAR, + ACTIONS(629), 1, + anon_sym_match, + ACTIONS(631), 1, + anon_sym_LBRACK, + ACTIONS(633), 1, + anon_sym_await, + STATE(810), 1, + sym_primary_expression, + STATE(1273), 1, + sym_expression, + STATE(1392), 1, + sym_pattern, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1659), 1, + sym__patterns, + STATE(1661), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1050), 2, + sym_attribute, + sym_subscript, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(627), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [553] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(621), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_STAR, + ACTIONS(629), 1, + anon_sym_match, + ACTIONS(631), 1, + anon_sym_LBRACK, + ACTIONS(633), 1, + anon_sym_await, + ACTIONS(635), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1273), 1, + sym_expression, + STATE(1392), 1, + sym_pattern, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1599), 1, + sym__patterns, + STATE(1661), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1050), 2, + sym_attribute, + sym_subscript, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(627), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [666] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(603), 1, + sym_identifier, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_STAR, + ACTIONS(611), 1, + anon_sym_match, + ACTIONS(613), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + anon_sym_await, + ACTIONS(637), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1122), 1, + sym_expression, + STATE(1428), 1, + sym_pattern, + STATE(1592), 1, + sym__named_expresssion_lhs, + STATE(1655), 1, + sym__collection_elements, + STATE(1656), 1, + sym__patterns, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(952), 2, + sym_attribute, + sym_subscript, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1503), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(609), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [779] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(621), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_STAR, + ACTIONS(629), 1, + anon_sym_match, + ACTIONS(631), 1, + anon_sym_LBRACK, + ACTIONS(633), 1, + anon_sym_await, + ACTIONS(639), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1266), 1, + sym_expression, + STATE(1378), 1, + sym_list_splat, + STATE(1392), 1, + sym_pattern, + STATE(1416), 1, + sym_parenthesized_list_splat, + STATE(1586), 1, + sym__collection_elements, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1666), 1, + sym__patterns, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1050), 2, + sym_attribute, + sym_subscript, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(627), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [894] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(603), 1, + sym_identifier, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_STAR, + ACTIONS(611), 1, + anon_sym_match, + ACTIONS(613), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + anon_sym_await, + ACTIONS(641), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1122), 1, + sym_expression, + STATE(1428), 1, + sym_pattern, + STATE(1592), 1, + sym__named_expresssion_lhs, + STATE(1626), 1, + sym__patterns, + STATE(1655), 1, + sym__collection_elements, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(952), 2, + sym_attribute, + sym_subscript, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1503), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(609), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1007] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(621), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_STAR, + ACTIONS(629), 1, + anon_sym_match, + ACTIONS(631), 1, + anon_sym_LBRACK, + ACTIONS(633), 1, + anon_sym_await, + ACTIONS(643), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1218), 1, + sym_expression, + STATE(1392), 1, + sym_pattern, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1652), 1, + sym__collection_elements, + STATE(1659), 1, + sym__patterns, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1050), 2, + sym_attribute, + sym_subscript, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(627), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1120] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(603), 1, + sym_identifier, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_STAR, + ACTIONS(611), 1, + anon_sym_match, + ACTIONS(613), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + anon_sym_await, + ACTIONS(645), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1122), 1, + sym_expression, + STATE(1428), 1, + sym_pattern, + STATE(1569), 1, + sym__patterns, + STATE(1592), 1, + sym__named_expresssion_lhs, + STATE(1655), 1, + sym__collection_elements, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(952), 2, + sym_attribute, + sym_subscript, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1503), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(609), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1233] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(603), 1, + sym_identifier, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_STAR, + ACTIONS(611), 1, + anon_sym_match, + ACTIONS(613), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + anon_sym_await, + ACTIONS(647), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1120), 1, + sym_expression, + STATE(1428), 1, + sym_pattern, + STATE(1592), 1, + sym__named_expresssion_lhs, + STATE(1619), 1, + sym__collection_elements, + STATE(1656), 1, + sym__patterns, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(952), 2, + sym_attribute, + sym_subscript, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1503), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(609), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1346] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(621), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_STAR, + ACTIONS(629), 1, + anon_sym_match, + ACTIONS(631), 1, + anon_sym_LBRACK, + ACTIONS(633), 1, + anon_sym_await, + ACTIONS(649), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1273), 1, + sym_expression, + STATE(1392), 1, + sym_pattern, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1661), 1, + sym__collection_elements, + STATE(1666), 1, + sym__patterns, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1050), 2, + sym_attribute, + sym_subscript, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(627), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1459] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(619), 1, + sym_identifier, + ACTIONS(621), 1, + anon_sym_LPAREN, + ACTIONS(625), 1, + anon_sym_STAR, + ACTIONS(629), 1, + anon_sym_match, + ACTIONS(631), 1, + anon_sym_LBRACK, + ACTIONS(633), 1, + anon_sym_await, + ACTIONS(651), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1279), 1, + sym_expression, + STATE(1392), 1, + sym_pattern, + STATE(1473), 1, + sym_parenthesized_list_splat, + STATE(1475), 1, + sym_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1599), 1, + sym__patterns, + STATE(1603), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1050), 2, + sym_attribute, + sym_subscript, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(627), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1574] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(603), 1, + sym_identifier, + ACTIONS(605), 1, + anon_sym_LPAREN, + ACTIONS(607), 1, + anon_sym_STAR, + ACTIONS(611), 1, + anon_sym_match, + ACTIONS(613), 1, + anon_sym_LBRACK, + ACTIONS(617), 1, + anon_sym_await, + ACTIONS(653), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1123), 1, + sym_expression, + STATE(1428), 1, + sym_pattern, + STATE(1592), 1, + sym__named_expresssion_lhs, + STATE(1626), 1, + sym__patterns, + STATE(1636), 1, + sym__collection_elements, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(952), 2, + sym_attribute, + sym_subscript, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1503), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(609), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1687] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(657), 1, + anon_sym_COMMA, + ACTIONS(659), 1, + anon_sym_STAR, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(663), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1116), 1, + sym_expression, + STATE(1221), 1, + sym_pair, + STATE(1472), 1, + sym_dictionary_splat, + STATE(1608), 1, + sym__collection_elements, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1380), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1799] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_STAR, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(665), 1, + anon_sym_COMMA, + ACTIONS(667), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1114), 1, + sym_expression, + STATE(1284), 1, + sym_pair, + STATE(1399), 1, + sym_dictionary_splat, + STATE(1633), 1, + sym__collection_elements, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1380), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [1911] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(124), 1, + anon_sym_TILDE, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(681), 1, + anon_sym_in, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1092), 1, + sym_pattern, + STATE(1096), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(685), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(853), 2, + sym_attribute, + sym_subscript, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + ACTIONS(679), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [2009] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(124), 1, + anon_sym_TILDE, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(673), 1, + anon_sym_STAR, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + ACTIONS(689), 1, + anon_sym_in, + STATE(1092), 1, + sym_pattern, + STATE(1096), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(685), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(853), 2, + sym_attribute, + sym_subscript, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + ACTIONS(687), 15, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [2107] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_STAR, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(691), 1, + anon_sym_COMMA, + ACTIONS(693), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1113), 1, + sym_expression, + STATE(1233), 1, + sym_pair, + STATE(1477), 1, + sym_dictionary_splat, + STATE(1648), 1, + sym__named_expresssion_lhs, + STATE(1662), 1, + sym__collection_elements, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1380), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2219] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_STAR, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(695), 1, + anon_sym_COMMA, + ACTIONS(697), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1117), 1, + sym_expression, + STATE(1258), 1, + sym_pair, + STATE(1490), 1, + sym_dictionary_splat, + STATE(1648), 1, + sym__named_expresssion_lhs, + STATE(1675), 1, + sym__collection_elements, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1380), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2331] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_STAR, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(699), 1, + anon_sym_COMMA, + ACTIONS(701), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1115), 1, + sym_expression, + STATE(1265), 1, + sym_pair, + STATE(1387), 1, + sym_dictionary_splat, + STATE(1648), 1, + sym__named_expresssion_lhs, + STATE(1672), 1, + sym__collection_elements, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1380), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2443] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_STAR, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(703), 1, + anon_sym_COMMA, + ACTIONS(705), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1112), 1, + sym_expression, + STATE(1245), 1, + sym_pair, + STATE(1439), 1, + sym_dictionary_splat, + STATE(1584), 1, + sym__collection_elements, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1380), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2555] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(655), 1, + anon_sym_LPAREN, + ACTIONS(659), 1, + anon_sym_STAR, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(707), 1, + anon_sym_COMMA, + ACTIONS(709), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1118), 1, + sym_expression, + STATE(1222), 1, + sym_pair, + STATE(1444), 1, + sym_dictionary_splat, + STATE(1648), 1, + sym__named_expresssion_lhs, + STATE(1692), 1, + sym__collection_elements, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1380), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2667] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(715), 1, + anon_sym_RPAREN, + ACTIONS(717), 1, + anon_sym_COMMA, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + STATE(810), 1, + sym_primary_expression, + STATE(1280), 1, + sym_expression, + STATE(1414), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1413), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2774] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(729), 1, + anon_sym_RPAREN, + ACTIONS(731), 1, + anon_sym_COMMA, + STATE(810), 1, + sym_primary_expression, + STATE(1235), 1, + sym_expression, + STATE(1493), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1494), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2881] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(733), 1, + anon_sym_RPAREN, + ACTIONS(735), 1, + anon_sym_COMMA, + STATE(810), 1, + sym_primary_expression, + STATE(1231), 1, + sym_expression, + STATE(1438), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1436), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [2988] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(737), 1, + anon_sym_RPAREN, + ACTIONS(739), 1, + anon_sym_COMMA, + STATE(810), 1, + sym_primary_expression, + STATE(1251), 1, + sym_expression, + STATE(1478), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1467), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3095] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(741), 1, + anon_sym_RPAREN, + ACTIONS(743), 1, + anon_sym_COMMA, + STATE(810), 1, + sym_primary_expression, + STATE(1271), 1, + sym_expression, + STATE(1456), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1459), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3202] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(745), 1, + anon_sym_RPAREN, + ACTIONS(747), 1, + anon_sym_COMMA, + STATE(810), 1, + sym_primary_expression, + STATE(1282), 1, + sym_expression, + STATE(1431), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1433), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3309] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(749), 1, + anon_sym_RPAREN, + ACTIONS(751), 1, + anon_sym_COMMA, + STATE(810), 1, + sym_primary_expression, + STATE(1239), 1, + sym_expression, + STATE(1458), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1457), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3416] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(753), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3520] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(755), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3624] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(757), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3728] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(759), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3832] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(761), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [3936] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(763), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4040] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(765), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4144] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(767), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4248] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(769), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4352] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(771), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4456] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(773), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4560] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(775), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4664] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(777), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4768] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(779), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4872] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(781), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [4976] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(783), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5080] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(785), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5184] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(787), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5288] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(789), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5392] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(791), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5496] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(793), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5600] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(795), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5704] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(797), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5808] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(799), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [5912] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(801), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6016] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(803), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6120] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(805), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6224] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + ACTIONS(807), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6328] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(711), 1, + sym_identifier, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(719), 1, + anon_sym_STAR, + ACTIONS(723), 1, + anon_sym_match, + ACTIONS(725), 1, + anon_sym_STAR_STAR, + ACTIONS(727), 1, + anon_sym_await, + STATE(810), 1, + sym_primary_expression, + STATE(1285), 1, + sym_expression, + STATE(1504), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1510), 3, + sym_list_splat, + sym_dictionary_splat, + sym_keyword_argument, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(721), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6429] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_RPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + STATE(810), 1, + sym_primary_expression, + STATE(1272), 1, + sym_expression, + STATE(1429), 1, + sym_with_item, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1661), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6532] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(813), 1, + anon_sym_if, + ACTIONS(815), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1292), 1, + sym_expression, + STATE(1455), 1, + sym_list_splat_pattern, + STATE(1573), 1, + sym_if_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6634] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(813), 1, + anon_sym_if, + ACTIONS(817), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1292), 1, + sym_expression, + STATE(1455), 1, + sym_list_splat_pattern, + STATE(1572), 1, + sym_if_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6736] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(821), 1, + anon_sym_lambda, + ACTIONS(823), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1208), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1326), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(296), 3, + anon_sym_print, + anon_sym_exec, + anon_sym_struct, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(819), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6834] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(825), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1279), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1603), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [6934] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(821), 1, + anon_sym_lambda, + ACTIONS(829), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1208), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1326), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(296), 3, + anon_sym_print, + anon_sym_exec, + anon_sym_struct, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(827), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7032] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(821), 1, + anon_sym_lambda, + ACTIONS(833), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1208), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1326), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(296), 3, + anon_sym_print, + anon_sym_exec, + anon_sym_struct, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(831), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7130] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(839), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1123), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + STATE(1636), 1, + sym__collection_elements, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7230] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(821), 1, + anon_sym_lambda, + ACTIONS(843), 1, + anon_sym_RBRACE, + STATE(595), 1, + sym_primary_expression, + STATE(1208), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1326), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(296), 3, + anon_sym_print, + anon_sym_exec, + anon_sym_struct, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(841), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7328] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(809), 1, + anon_sym_RPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + STATE(810), 1, + sym_primary_expression, + STATE(1273), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1661), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7428] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(823), 1, + anon_sym_RBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(701), 1, + sym_primary_expression, + STATE(1192), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1343), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(322), 3, + anon_sym_print, + anon_sym_exec, + anon_sym_struct, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(819), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7526] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(813), 1, + anon_sym_if, + ACTIONS(847), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1292), 1, + sym_expression, + STATE(1455), 1, + sym_list_splat_pattern, + STATE(1647), 1, + sym_if_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7628] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(849), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1122), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + STATE(1655), 1, + sym__collection_elements, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7728] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(813), 1, + anon_sym_if, + ACTIONS(851), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1292), 1, + sym_expression, + STATE(1455), 1, + sym_list_splat_pattern, + STATE(1646), 1, + sym_if_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7830] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(813), 1, + anon_sym_if, + ACTIONS(853), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1292), 1, + sym_expression, + STATE(1455), 1, + sym_list_splat_pattern, + STATE(1640), 1, + sym_if_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [7932] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(829), 1, + anon_sym_RBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(701), 1, + sym_primary_expression, + STATE(1192), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1343), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(322), 3, + anon_sym_print, + anon_sym_exec, + anon_sym_struct, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(827), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8030] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1266), 1, + sym_expression, + STATE(1378), 1, + sym_list_splat, + STATE(1416), 1, + sym_parenthesized_list_splat, + STATE(1586), 1, + sym__collection_elements, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8132] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(857), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1125), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + STATE(1667), 1, + sym__collection_elements, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8232] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(859), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1256), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1620), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8332] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(825), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1279), 1, + sym_expression, + STATE(1473), 1, + sym_parenthesized_list_splat, + STATE(1475), 1, + sym_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1603), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8434] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(861), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1119), 1, + sym_expression, + STATE(1580), 1, + sym__collection_elements, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8534] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(863), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1124), 1, + sym_expression, + STATE(1568), 1, + sym__collection_elements, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8634] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(859), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1256), 1, + sym_expression, + STATE(1405), 1, + sym_list_splat, + STATE(1406), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1620), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8736] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(813), 1, + anon_sym_if, + ACTIONS(865), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1292), 1, + sym_expression, + STATE(1455), 1, + sym_list_splat_pattern, + STATE(1560), 1, + sym_if_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8838] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(867), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1270), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1663), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [8938] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(833), 1, + anon_sym_RBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(701), 1, + sym_primary_expression, + STATE(1192), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1343), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(322), 3, + anon_sym_print, + anon_sym_exec, + anon_sym_struct, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(831), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9036] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(869), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1218), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1652), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9136] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(871), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1120), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + STATE(1619), 1, + sym__collection_elements, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9236] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(873), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1262), 1, + sym_expression, + STATE(1577), 1, + sym__collection_elements, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9336] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(867), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1270), 1, + sym_expression, + STATE(1405), 1, + sym_list_splat, + STATE(1406), 1, + sym_parenthesized_list_splat, + STATE(1596), 1, + sym__named_expresssion_lhs, + STATE(1663), 1, + sym__collection_elements, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9438] = 24, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(873), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1262), 1, + sym_expression, + STATE(1378), 1, + sym_list_splat, + STATE(1416), 1, + sym_parenthesized_list_splat, + STATE(1577), 1, + sym__collection_elements, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9540] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(835), 1, + anon_sym_LPAREN, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(875), 1, + anon_sym_RBRACK, + STATE(701), 1, + sym_primary_expression, + STATE(1121), 1, + sym_expression, + STATE(1583), 1, + sym__collection_elements, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1430), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9640] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(843), 1, + anon_sym_RBRACK, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(701), 1, + sym_primary_expression, + STATE(1192), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1343), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(322), 3, + anon_sym_print, + anon_sym_exec, + anon_sym_struct, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(841), 3, + anon_sym_if, + anon_sym_async, + anon_sym_for, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9738] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(855), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1266), 1, + sym_expression, + STATE(1586), 1, + sym__collection_elements, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1390), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9838] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(877), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [9935] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(879), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10032] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(881), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10129] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(883), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10226] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(885), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1306), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1543), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10323] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(887), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10420] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(889), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10517] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + ACTIONS(891), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1306), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1543), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10614] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(891), 1, + anon_sym_RBRACE, + ACTIONS(893), 1, + anon_sym_LPAREN, + ACTIONS(895), 1, + anon_sym_STAR, + STATE(601), 1, + sym_primary_expression, + STATE(1320), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + STATE(1517), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10711] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(897), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10808] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(899), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [10905] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(885), 1, + anon_sym_RBRACE, + ACTIONS(893), 1, + anon_sym_LPAREN, + ACTIONS(895), 1, + anon_sym_STAR, + STATE(601), 1, + sym_primary_expression, + STATE(1320), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + STATE(1517), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11002] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1146), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(901), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11095] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(903), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11192] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(885), 1, + anon_sym_RBRACK, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_primary_expression, + STATE(1287), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + STATE(1521), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11289] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(907), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11386] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1146), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(909), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11479] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(911), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11576] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(891), 1, + anon_sym_RBRACK, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_primary_expression, + STATE(1287), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + STATE(1521), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11673] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(913), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11770] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(915), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11867] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + ACTIONS(917), 1, + anon_sym_RBRACE, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [11964] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(921), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12060] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(923), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12156] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(925), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12252] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(927), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12348] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(929), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12444] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(931), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12540] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(935), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1238), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(933), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12634] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(661), 1, + anon_sym_STAR_STAR, + STATE(663), 1, + sym_primary_expression, + STATE(1333), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1542), 2, + sym_dictionary_splat, + sym_pair, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12728] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(713), 1, + anon_sym_LPAREN, + ACTIONS(811), 1, + anon_sym_STAR, + STATE(810), 1, + sym_primary_expression, + STATE(1306), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1543), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12822] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1187), 1, + sym_expression, + STATE(1536), 1, + sym_expression_list, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(937), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [12916] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(939), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13012] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(943), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1225), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(941), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13106] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(945), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13202] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(947), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13298] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(949), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13394] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(951), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13490] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(953), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13586] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(893), 1, + anon_sym_LPAREN, + ACTIONS(895), 1, + anon_sym_STAR, + STATE(601), 1, + sym_primary_expression, + STATE(1320), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + STATE(1517), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13680] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(955), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13776] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(837), 1, + anon_sym_STAR, + ACTIONS(905), 1, + anon_sym_LPAREN, + STATE(769), 1, + sym_primary_expression, + STATE(1287), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + STATE(1521), 2, + sym_list_splat, + sym_parenthesized_list_splat, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13870] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(957), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [13966] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(959), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14062] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(961), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14158] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(963), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14254] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(965), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14350] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(967), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14446] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_COMMA, + ACTIONS(100), 1, + anon_sym_EQ, + ACTIONS(969), 1, + anon_sym_for, + ACTIONS(971), 1, + anon_sym_with, + ACTIONS(973), 1, + anon_sym_def, + ACTIONS(98), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(87), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [14516] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(975), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14612] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + ACTIONS(977), 1, + anon_sym_RBRACK, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14708] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_COMMA, + ACTIONS(100), 1, + anon_sym_EQ, + ACTIONS(979), 1, + anon_sym_for, + ACTIONS(981), 1, + anon_sym_with, + ACTIONS(983), 1, + anon_sym_def, + ACTIONS(98), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(87), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [14778] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(821), 1, + anon_sym_lambda, + STATE(595), 1, + sym_primary_expression, + STATE(1208), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1326), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14869] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(821), 1, + anon_sym_lambda, + STATE(595), 1, + sym_primary_expression, + STATE(1208), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1295), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [14960] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(985), 1, + anon_sym_LPAREN, + STATE(663), 1, + sym_primary_expression, + STATE(1311), 1, + sym_expression, + STATE(1440), 1, + sym_with_item, + STATE(1595), 1, + sym_with_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15053] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1253), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(987), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15144] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(701), 1, + sym_primary_expression, + STATE(1199), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1342), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15235] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1253), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(989), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15326] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1165), 1, + sym_expression, + STATE(1441), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15419] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1292), 1, + sym_expression, + STATE(1455), 1, + sym_list_splat_pattern, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15512] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1203), 1, + sym_expression, + STATE(1355), 1, + sym_list_splat_pattern, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15605] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(701), 1, + sym_primary_expression, + STATE(1192), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1343), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15696] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1195), 1, + sym_expression, + STATE(1417), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15789] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(701), 1, + sym_primary_expression, + STATE(1192), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1314), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15880] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1216), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(909), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [15971] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(701), 1, + sym_primary_expression, + STATE(1207), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1346), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16062] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1216), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(901), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16153] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1216), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(991), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16244] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1206), 1, + sym_expression, + STATE(1461), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16337] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(89), 1, + anon_sym_COMMA, + ACTIONS(100), 1, + anon_sym_EQ, + STATE(1488), 1, + sym_string, + ACTIONS(98), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(87), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [16404] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1170), 1, + sym_expression, + STATE(1491), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16497] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1178), 1, + sym_expression, + STATE(1479), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16590] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1198), 1, + sym_expression, + STATE(1334), 1, + sym_list_splat_pattern, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16683] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1247), 1, + sym_expression, + STATE(1505), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16776] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1286), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(993), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16867] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(845), 1, + anon_sym_lambda, + STATE(701), 1, + sym_primary_expression, + STATE(1192), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + STATE(1321), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [16958] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(985), 1, + anon_sym_LPAREN, + STATE(663), 1, + sym_primary_expression, + STATE(1311), 1, + sym_expression, + STATE(1440), 1, + sym_with_item, + STATE(1579), 1, + sym_with_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17051] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(995), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1290), 1, + sym_expression, + STATE(1520), 1, + sym_with_item, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17144] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(821), 1, + anon_sym_lambda, + STATE(595), 1, + sym_primary_expression, + STATE(1173), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1329), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17235] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1130), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + STATE(1354), 2, + sym_expression_list, + sym__f_expression, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17326] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1309), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(933), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17417] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1215), 1, + sym_expression, + STATE(1454), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17510] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(997), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1311), 1, + sym_expression, + STATE(1524), 1, + sym_with_item, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17603] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(999), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1311), 1, + sym_expression, + STATE(1524), 1, + sym_with_item, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17696] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(821), 1, + anon_sym_lambda, + STATE(595), 1, + sym_primary_expression, + STATE(1186), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1327), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17787] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1253), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(1001), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17878] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1216), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(1003), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [17969] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(985), 1, + anon_sym_LPAREN, + STATE(663), 1, + sym_primary_expression, + STATE(1311), 1, + sym_expression, + STATE(1440), 1, + sym_with_item, + STATE(1613), 1, + sym_with_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18062] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(821), 1, + anon_sym_lambda, + STATE(595), 1, + sym_primary_expression, + STATE(1208), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + STATE(1317), 2, + sym__expression_within_for_in_clause, + sym_lambda_within_for_in_clause, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18153] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1253), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(1005), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18244] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1288), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(1007), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18335] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1009), 1, + anon_sym_RPAREN, + STATE(810), 1, + sym_primary_expression, + STATE(1290), 1, + sym_expression, + STATE(1520), 1, + sym_with_item, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18428] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(985), 1, + anon_sym_LPAREN, + STATE(663), 1, + sym_primary_expression, + STATE(1311), 1, + sym_expression, + STATE(1440), 1, + sym_with_item, + STATE(1618), 1, + sym_with_clause, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18521] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(919), 1, + anon_sym_COLON, + STATE(769), 1, + sym_primary_expression, + STATE(1196), 1, + sym_expression, + STATE(1422), 1, + sym_slice, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18614] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(901), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1312), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18704] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(1011), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1303), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18794] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1257), 1, + sym_expression, + STATE(1664), 1, + sym_type, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18884] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1290), 1, + sym_expression, + STATE(1520), 1, + sym_with_item, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [18974] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(909), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1312), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19064] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1276), 1, + sym_expression, + STATE(1621), 1, + sym_expression_list, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19154] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(1013), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1303), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19244] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1257), 1, + sym_expression, + STATE(1638), 1, + sym_type, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19334] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1257), 1, + sym_expression, + STATE(1630), 1, + sym_type, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19424] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1190), 1, + sym_expression, + STATE(1537), 1, + sym_expression_list, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19514] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 1, + anon_sym_COMMA, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1024), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(1026), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1020), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [19578] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_COMMA, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(100), 2, + anon_sym_COLON, + anon_sym_EQ, + ACTIONS(98), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(87), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [19642] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1257), 1, + sym_expression, + STATE(1625), 1, + sym_type, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19732] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1248), 1, + sym_expression, + STATE(1635), 1, + sym_expression_list, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19822] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1249), 1, + sym_expression, + STATE(1394), 1, + sym_type, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [19912] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1311), 1, + sym_expression, + STATE(1524), 1, + sym_with_item, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20002] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1278), 1, + sym_expression, + STATE(1628), 1, + sym_expression_list, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20092] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1249), 1, + sym_expression, + STATE(1518), 1, + sym_type, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20182] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1269), 1, + sym_expression, + STATE(1609), 1, + sym_expression_list, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20272] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1250), 1, + sym_expression, + STATE(1372), 1, + sym_type, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20362] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(1028), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1303), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20452] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + ACTIONS(1030), 1, + anon_sym_COLON, + STATE(663), 1, + sym_primary_expression, + STATE(1303), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20542] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1212), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20629] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1153), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20716] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1264), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20803] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1032), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [20858] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1036), 1, + sym_identifier, + ACTIONS(1040), 1, + anon_sym_await, + STATE(769), 1, + sym_primary_expression, + STATE(1293), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + STATE(1046), 2, + sym_attribute, + sym_subscript, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1038), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [20947] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 1, + anon_sym_COMMA, + ACTIONS(1051), 1, + anon_sym_EQ, + ACTIONS(1049), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1047), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [21008] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1275), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21095] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1339), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21182] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1341), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21269] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1197), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21356] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1254), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21443] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1244), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21530] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1205), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21617] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1330), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21704] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1219), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21791] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1184), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21878] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1299), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [21965] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1300), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22052] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1191), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22139] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1164), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22226] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1337), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22313] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1194), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22400] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1304), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22487] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 1, + anon_sym_COMMA, + ACTIONS(100), 1, + anon_sym_EQ, + ACTIONS(98), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(87), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [22548] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1053), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [22603] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1297), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22690] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1352), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22777] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1230), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22864] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1229), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [22951] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1228), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23038] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1293), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23125] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1253), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23212] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1302), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23299] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1227), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23386] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(370), 1, + sym_identifier, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(376), 1, + anon_sym_match, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(380), 1, + anon_sym_not, + ACTIONS(384), 1, + anon_sym_lambda, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(392), 1, + anon_sym_await, + ACTIONS(394), 1, + sym__string_start, + STATE(769), 1, + sym_primary_expression, + STATE(1223), 1, + sym_expression, + STATE(1574), 1, + sym__named_expresssion_lhs, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(390), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1277), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23473] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1142), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23560] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1340), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23647] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1144), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23734] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1303), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23821] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1348), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23908] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1261), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [23995] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1267), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24082] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1167), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24169] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1323), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24256] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1220), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24343] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1174), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24430] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1328), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24517] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1232), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24604] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1183), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24691] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1335), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24778] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1243), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24865] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1312), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [24952] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1211), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25039] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1166), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25126] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1145), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25213] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1336), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25300] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1344), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25387] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1202), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25474] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1169), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25561] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1353), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25648] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1318), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25735] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1255), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25822] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + STATE(701), 1, + sym_primary_expression, + STATE(1241), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25909] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + STATE(701), 1, + sym_primary_expression, + STATE(1209), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [25996] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 1, + anon_sym_COMMA, + ACTIONS(1024), 1, + anon_sym_EQ, + ACTIONS(1026), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1020), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [26057] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1171), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26144] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1148), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26231] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1161), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26318] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1345), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26405] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1201), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26492] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1152), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26579] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1146), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26666] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1305), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26753] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1057), 1, + sym_identifier, + ACTIONS(1061), 1, + anon_sym_await, + STATE(810), 1, + sym_primary_expression, + STATE(1294), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + STATE(1047), 2, + sym_attribute, + sym_subscript, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1059), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26842] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1150), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [26929] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1316), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27016] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1154), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27103] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1294), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27190] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1063), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27245] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1155), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27332] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1157), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27419] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1213), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27506] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1159), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27593] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27648] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1237), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27735] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1216), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27822] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [27877] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1160), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [27964] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1236), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28106] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 31, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [28161] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(344), 1, + sym_identifier, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(350), 1, + anon_sym_match, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(354), 1, + anon_sym_not, + ACTIONS(358), 1, + anon_sym_lambda, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(366), 1, + anon_sym_await, + ACTIONS(368), 1, + sym__string_start, + STATE(810), 1, + sym_primary_expression, + STATE(1315), 1, + sym_expression, + STATE(1596), 1, + sym__named_expresssion_lhs, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(364), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1260), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28248] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1200), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28335] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1162), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28422] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1077), 1, + anon_sym_COMMA, + ACTIONS(1084), 1, + anon_sym_EQ, + ACTIONS(1082), 14, + anon_sym_COLON, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + ACTIONS(1080), 15, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [28483] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1322), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28570] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(260), 1, + sym_identifier, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(266), 1, + anon_sym_match, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(270), 1, + anon_sym_not, + ACTIONS(274), 1, + anon_sym_lambda, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(282), 1, + anon_sym_await, + ACTIONS(284), 1, + sym__string_start, + STATE(601), 1, + sym_primary_expression, + STATE(1158), 1, + sym_expression, + STATE(1629), 1, + sym__named_expresssion_lhs, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(280), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1156), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28657] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + STATE(701), 1, + sym_primary_expression, + STATE(1210), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28744] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + STATE(701), 1, + sym_primary_expression, + STATE(1189), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28831] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1325), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [28918] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(104), 1, + sym_identifier, + ACTIONS(113), 1, + anon_sym_match, + ACTIONS(126), 1, + anon_sym_lambda, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(134), 1, + anon_sym_await, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(290), 1, + anon_sym_not, + STATE(663), 1, + sym_primary_expression, + STATE(1338), 1, + sym_expression, + STATE(1669), 1, + sym__named_expresssion_lhs, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1175), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29005] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + STATE(701), 1, + sym_primary_expression, + STATE(1177), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29092] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + STATE(701), 1, + sym_primary_expression, + STATE(1188), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29179] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(47), 1, + anon_sym_not, + ACTIONS(51), 1, + anon_sym_lambda, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(83), 1, + sym_identifier, + ACTIONS(96), 1, + anon_sym_match, + ACTIONS(102), 1, + anon_sym_await, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + STATE(741), 1, + sym_primary_expression, + STATE(1176), 1, + sym_expression, + STATE(1676), 1, + sym__named_expresssion_lhs, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + STATE(1193), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29266] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + STATE(701), 1, + sym_primary_expression, + STATE(1180), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29353] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(292), 1, + sym_identifier, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(298), 1, + anon_sym_match, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(302), 1, + anon_sym_not, + ACTIONS(306), 1, + anon_sym_lambda, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(314), 1, + anon_sym_await, + ACTIONS(316), 1, + sym__string_start, + STATE(595), 1, + sym_primary_expression, + STATE(1143), 1, + sym_expression, + STATE(1648), 1, + sym__named_expresssion_lhs, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(312), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1151), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29440] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + STATE(701), 1, + sym_primary_expression, + STATE(1185), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29527] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(318), 1, + sym_identifier, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(324), 1, + anon_sym_match, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(328), 1, + anon_sym_not, + ACTIONS(332), 1, + anon_sym_lambda, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(340), 1, + anon_sym_await, + ACTIONS(342), 1, + sym__string_start, + STATE(701), 1, + sym_primary_expression, + STATE(1181), 1, + sym_expression, + STATE(1592), 1, + sym__named_expresssion_lhs, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 4, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_struct, + ACTIONS(338), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + STATE(1214), 8, + sym_named_expression, + sym_as_pattern, + sym_not_operator, + sym_boolean_operator, + sym_comparison_operator, + sym_lambda, + sym_conditional_expression, + sym_await, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [29614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29668] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1032), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1053), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29776] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1063), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29830] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29938] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 16, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_EQ, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 30, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [29992] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1090), 1, + anon_sym_RPAREN, + ACTIONS(1092), 1, + anon_sym_STAR, + ACTIONS(1096), 1, + anon_sym_match, + ACTIONS(1098), 1, + anon_sym_LBRACK, + STATE(1093), 1, + sym_primary_expression, + STATE(1392), 1, + sym_pattern, + STATE(1599), 1, + sym__patterns, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1076), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1094), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30074] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1092), 1, + anon_sym_STAR, + ACTIONS(1096), 1, + anon_sym_match, + ACTIONS(1098), 1, + anon_sym_LBRACK, + ACTIONS(1100), 1, + anon_sym_RPAREN, + STATE(1093), 1, + sym_primary_expression, + STATE(1392), 1, + sym_pattern, + STATE(1659), 1, + sym__patterns, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1076), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1094), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30156] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1106), 1, + anon_sym_elif, + ACTIONS(1108), 1, + anon_sym_else, + STATE(475), 1, + aux_sym_if_statement_repeat1, + STATE(504), 1, + sym_elif_clause, + STATE(627), 1, + sym_else_clause, + ACTIONS(1102), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1104), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [30215] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, + anon_sym_elif, + ACTIONS(1116), 1, + anon_sym_else, + STATE(453), 1, + aux_sym_if_statement_repeat1, + STATE(510), 1, + sym_elif_clause, + STATE(630), 1, + sym_else_clause, + ACTIONS(1112), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1110), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [30274] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, + anon_sym_elif, + ACTIONS(1116), 1, + anon_sym_else, + STATE(472), 1, + aux_sym_if_statement_repeat1, + STATE(510), 1, + sym_elif_clause, + STATE(620), 1, + sym_else_clause, + ACTIONS(1120), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1118), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [30333] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1092), 1, + anon_sym_STAR, + ACTIONS(1096), 1, + anon_sym_match, + ACTIONS(1098), 1, + anon_sym_LBRACK, + ACTIONS(1122), 1, + anon_sym_RPAREN, + STATE(1093), 1, + sym_primary_expression, + STATE(1525), 1, + sym_pattern, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1076), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1094), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30412] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym_primary_expression, + STATE(1401), 1, + sym_pattern, + STATE(1632), 1, + sym_pattern_list, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(853), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30491] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1092), 1, + anon_sym_STAR, + ACTIONS(1096), 1, + anon_sym_match, + ACTIONS(1098), 1, + anon_sym_LBRACK, + ACTIONS(1124), 1, + anon_sym_RPAREN, + STATE(1093), 1, + sym_primary_expression, + STATE(1525), 1, + sym_pattern, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1076), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1094), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30570] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym_primary_expression, + STATE(1419), 1, + sym_pattern, + STATE(1589), 1, + sym_pattern_list, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(853), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30649] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(1122), 1, + anon_sym_RBRACK, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, + anon_sym_LPAREN, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1134), 1, + anon_sym_match, + ACTIONS(1136), 1, + anon_sym_LBRACK, + STATE(1097), 1, + sym_primary_expression, + STATE(1513), 1, + sym_pattern, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1070), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1503), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30728] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym_primary_expression, + STATE(1481), 1, + sym_pattern, + STATE(1650), 1, + sym_pattern_list, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(853), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30807] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, + anon_sym_elif, + ACTIONS(1116), 1, + anon_sym_else, + STATE(466), 1, + aux_sym_if_statement_repeat1, + STATE(510), 1, + sym_elif_clause, + STATE(619), 1, + sym_else_clause, + ACTIONS(1140), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1138), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [30866] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym_primary_expression, + STATE(1403), 1, + sym_pattern, + STATE(1624), 1, + sym_pattern_list, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(853), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [30945] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym_primary_expression, + STATE(1434), 1, + sym_pattern, + STATE(1594), 1, + sym_pattern_list, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(853), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31024] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym_primary_expression, + STATE(1384), 1, + sym_pattern, + STATE(1665), 1, + sym_pattern_list, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(853), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31103] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym_primary_expression, + STATE(1371), 1, + sym_pattern, + STATE(1690), 1, + sym_pattern_list, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(853), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31182] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1096), 1, + sym_primary_expression, + STATE(1374), 1, + sym_pattern, + STATE(1687), 1, + sym_pattern_list, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(853), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31261] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1114), 1, + anon_sym_elif, + ACTIONS(1116), 1, + anon_sym_else, + STATE(472), 1, + aux_sym_if_statement_repeat1, + STATE(510), 1, + sym_elif_clause, + STATE(607), 1, + sym_else_clause, + ACTIONS(1102), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1104), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [31320] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1106), 1, + anon_sym_elif, + ACTIONS(1108), 1, + anon_sym_else, + STATE(475), 1, + aux_sym_if_statement_repeat1, + STATE(504), 1, + sym_elif_clause, + STATE(631), 1, + sym_else_clause, + ACTIONS(1120), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1118), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [31379] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1106), 1, + anon_sym_elif, + ACTIONS(1108), 1, + anon_sym_else, + STATE(467), 1, + aux_sym_if_statement_repeat1, + STATE(504), 1, + sym_elif_clause, + STATE(602), 1, + sym_else_clause, + ACTIONS(1112), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1110), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [31438] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1106), 1, + anon_sym_elif, + ACTIONS(1108), 1, + anon_sym_else, + STATE(451), 1, + aux_sym_if_statement_repeat1, + STATE(504), 1, + sym_elif_clause, + STATE(632), 1, + sym_else_clause, + ACTIONS(1140), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1138), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [31497] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(1124), 1, + anon_sym_RBRACK, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, + anon_sym_LPAREN, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1134), 1, + anon_sym_match, + ACTIONS(1136), 1, + anon_sym_LBRACK, + STATE(1097), 1, + sym_primary_expression, + STATE(1513), 1, + sym_pattern, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1070), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1503), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31576] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(1126), 1, + sym_identifier, + ACTIONS(1128), 1, + anon_sym_LPAREN, + ACTIONS(1130), 1, + anon_sym_STAR, + ACTIONS(1134), 1, + anon_sym_match, + ACTIONS(1136), 1, + anon_sym_LBRACK, + STATE(1097), 1, + sym_primary_expression, + STATE(1513), 1, + sym_pattern, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1070), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1503), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1132), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31652] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1146), 1, + anon_sym_elif, + STATE(472), 1, + aux_sym_if_statement_repeat1, + STATE(510), 1, + sym_elif_clause, + ACTIONS(1144), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1142), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [31706] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(1086), 1, + sym_identifier, + ACTIONS(1088), 1, + anon_sym_LPAREN, + ACTIONS(1092), 1, + anon_sym_STAR, + ACTIONS(1096), 1, + anon_sym_match, + ACTIONS(1098), 1, + anon_sym_LBRACK, + STATE(1093), 1, + sym_primary_expression, + STATE(1525), 1, + sym_pattern, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1076), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1550), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1094), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31782] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(11), 1, + anon_sym_STAR, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(669), 1, + sym_identifier, + ACTIONS(671), 1, + anon_sym_LPAREN, + ACTIONS(677), 1, + anon_sym_match, + ACTIONS(683), 1, + anon_sym_LBRACK, + STATE(1092), 1, + sym_pattern, + STATE(1096), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(853), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + STATE(1099), 3, + sym_tuple_pattern, + sym_list_pattern, + sym_list_splat_pattern, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(675), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [31858] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1149), 1, + anon_sym_elif, + STATE(475), 1, + aux_sym_if_statement_repeat1, + STATE(504), 1, + sym_elif_clause, + ACTIONS(1144), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1142), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [31912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1154), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1152), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [31959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1156), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32006] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 1, + anon_sym_case, + STATE(491), 1, + aux_sym_match_statement_repeat2, + STATE(525), 1, + sym_case_clause, + ACTIONS(1162), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1160), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32059] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1168), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1166), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32106] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_case, + STATE(503), 1, + aux_sym_match_statement_repeat2, + STATE(529), 1, + sym_case_clause, + ACTIONS(1170), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1172), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32159] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 1, + anon_sym_case, + STATE(494), 1, + aux_sym_match_statement_repeat2, + STATE(525), 1, + sym_case_clause, + ACTIONS(1178), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1176), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32212] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 1, + anon_sym_case, + STATE(494), 1, + aux_sym_match_statement_repeat2, + STATE(525), 1, + sym_case_clause, + ACTIONS(1182), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1180), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32265] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 1, + anon_sym_case, + STATE(482), 1, + aux_sym_match_statement_repeat2, + STATE(525), 1, + sym_case_clause, + ACTIONS(1186), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1184), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32318] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 1, + anon_sym_case, + STATE(498), 1, + aux_sym_match_statement_repeat2, + STATE(525), 1, + sym_case_clause, + ACTIONS(1170), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1172), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32371] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1190), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1188), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32418] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1158), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1156), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32465] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_case, + STATE(490), 1, + aux_sym_match_statement_repeat2, + STATE(529), 1, + sym_case_clause, + ACTIONS(1186), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1184), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32518] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1154), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1152), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32565] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_case, + STATE(502), 1, + aux_sym_match_statement_repeat2, + STATE(529), 1, + sym_case_clause, + ACTIONS(1178), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1176), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32618] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_case, + STATE(502), 1, + aux_sym_match_statement_repeat2, + STATE(529), 1, + sym_case_clause, + ACTIONS(1182), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1180), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32671] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 1, + anon_sym_case, + STATE(494), 1, + aux_sym_match_statement_repeat2, + STATE(525), 1, + sym_case_clause, + ACTIONS(1194), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1192), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1168), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1166), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32771] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 1, + anon_sym_case, + STATE(481), 1, + aux_sym_match_statement_repeat2, + STATE(525), 1, + sym_case_clause, + ACTIONS(1198), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1196), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32824] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1204), 1, + anon_sym_case, + STATE(494), 1, + aux_sym_match_statement_repeat2, + STATE(525), 1, + sym_case_clause, + ACTIONS(1202), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1200), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32877] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_case, + STATE(500), 1, + aux_sym_match_statement_repeat2, + STATE(529), 1, + sym_case_clause, + ACTIONS(1162), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1160), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1190), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1188), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [32977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1207), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33024] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1164), 1, + anon_sym_case, + STATE(494), 1, + aux_sym_match_statement_repeat2, + STATE(525), 1, + sym_case_clause, + ACTIONS(1213), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1211), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33077] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1209), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1207), 27, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33124] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_case, + STATE(502), 1, + aux_sym_match_statement_repeat2, + STATE(529), 1, + sym_case_clause, + ACTIONS(1194), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1192), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33177] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_case, + STATE(489), 1, + aux_sym_match_statement_repeat2, + STATE(529), 1, + sym_case_clause, + ACTIONS(1198), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1196), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33230] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1215), 1, + anon_sym_case, + STATE(502), 1, + aux_sym_match_statement_repeat2, + STATE(529), 1, + sym_case_clause, + ACTIONS(1202), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1200), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33283] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1174), 1, + anon_sym_case, + STATE(502), 1, + aux_sym_match_statement_repeat2, + STATE(529), 1, + sym_case_clause, + ACTIONS(1213), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1211), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1218), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1220), 26, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33382] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + anon_sym_else, + STATE(593), 1, + sym_else_clause, + ACTIONS(1224), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1222), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1226), 26, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33478] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 1, + anon_sym_else, + STATE(609), 1, + sym_else_clause, + ACTIONS(1230), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1232), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33528] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + anon_sym_else, + STATE(591), 1, + sym_else_clause, + ACTIONS(1236), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1234), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33578] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1240), 26, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33624] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1218), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1220), 26, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33670] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + anon_sym_else, + STATE(596), 1, + sym_else_clause, + ACTIONS(1244), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1242), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33720] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 1, + anon_sym_else, + STATE(611), 1, + sym_else_clause, + ACTIONS(1224), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1222), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 1, + anon_sym_else, + STATE(637), 1, + sym_else_clause, + ACTIONS(1246), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1248), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + anon_sym_else, + STATE(604), 1, + sym_else_clause, + ACTIONS(1252), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1250), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33870] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 1, + anon_sym_else, + STATE(641), 1, + sym_else_clause, + ACTIONS(1236), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1234), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33920] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + anon_sym_else, + STATE(626), 1, + sym_else_clause, + ACTIONS(1230), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1232), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [33970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1228), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1226), 26, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34016] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1116), 1, + anon_sym_else, + STATE(616), 1, + sym_else_clause, + ACTIONS(1246), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1248), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34066] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1238), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1240), 26, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_elif, + anon_sym_else, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34112] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 1, + anon_sym_else, + STATE(622), 1, + sym_else_clause, + ACTIONS(1252), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1250), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34162] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1108), 1, + anon_sym_else, + STATE(599), 1, + sym_else_clause, + ACTIONS(1244), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1242), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34212] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1256), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34257] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1258), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34302] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1264), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34347] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1266), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34392] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1262), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1264), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34437] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1272), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1270), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1272), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34527] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1268), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1266), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1276), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34617] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1278), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1278), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34707] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1284), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1282), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34752] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1288), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34797] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1292), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1296), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1300), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1304), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [34977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1306), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1304), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1312), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1316), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35157] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1258), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35202] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, + sym_identifier, + ACTIONS(1324), 1, + anon_sym_match, + STATE(1096), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(1320), 2, + anon_sym_COMMA, + anon_sym_COLON, + STATE(826), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [35271] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1258), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1304), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1306), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35406] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1304), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1326), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1316), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1258), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35586] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1312), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35631] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1258), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35676] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1284), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1282), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35721] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + ACTIONS(1330), 1, + sym_identifier, + STATE(1093), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(1320), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1059), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [35790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1274), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1276), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35835] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1306), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1306), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35925] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1326), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [35970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1254), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1256), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36015] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1312), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1326), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36105] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1306), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36150] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1294), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1296), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1306), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1284), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1282), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36285] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1328), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1326), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1306), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36375] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1312), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36420] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1308), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1306), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1284), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1282), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36510] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1278), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1280), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1278), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36600] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1258), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1258), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36690] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1312), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1316), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36780] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1304), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36825] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1304), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36870] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1260), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1258), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1312), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [36960] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1314), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1316), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1304), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1302), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1304), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1298), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1300), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1290), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1292), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37185] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1286), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1288), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37230] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1312), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1310), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1312), 25, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_case, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1334), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1338), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1342), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1346), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1350), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37540] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1360), 1, + anon_sym_as, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + ACTIONS(1374), 1, + anon_sym_not, + ACTIONS(1378), 1, + anon_sym_PIPE, + ACTIONS(1380), 1, + anon_sym_AMP, + ACTIONS(1382), 1, + anon_sym_CARET, + STATE(784), 1, + sym_argument_list, + STATE(1056), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1362), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1364), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1376), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1384), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1366), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1358), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [37616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1388), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1386), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1392), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1390), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1392), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1390), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1388), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1386), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1394), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1396), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37836] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + anon_sym_EQ, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + ACTIONS(1414), 1, + anon_sym_not, + ACTIONS(1418), 1, + anon_sym_PIPE, + ACTIONS(1420), 1, + anon_sym_AMP, + ACTIONS(1422), 1, + anon_sym_CARET, + STATE(811), 1, + sym_argument_list, + STATE(1055), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1424), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1406), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1358), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [37912] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1426), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1428), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [37956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1432), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1430), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1436), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1434), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1440), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1438), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38088] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1442), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1444), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1448), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1446), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1352), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1350), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1450), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1452), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38264] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1456), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1454), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38308] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1348), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1346), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38352] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1432), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1430), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1458), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1460), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1462), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1464), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1468), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1466), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38528] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1472), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1470), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1474), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38616] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1480), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1478), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1484), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1482), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38704] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1488), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1486), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1462), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1464), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1436), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1434), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1440), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1438), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1492), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1490), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38924] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1458), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1460), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [38968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1450), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1452), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39012] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1448), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1446), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39056] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1442), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1444), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39100] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1456), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1454), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39144] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1426), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1428), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1488), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1486), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39232] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1484), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1482), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1480), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1478), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1476), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1474), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1394), 12, + sym__dedent, + sym__string_start, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1396), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39408] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1492), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1490), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39452] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1472), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1470), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39496] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1468), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1466), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39540] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1344), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1342), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39584] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1336), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1334), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1340), 12, + sym__string_start, + ts_builtin_sym_end, + anon_sym_LPAREN, + anon_sym_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + sym_ellipsis, + anon_sym_LBRACE, + sym_float, + ACTIONS(1338), 24, + anon_sym_print, + anon_sym_assert, + anon_sym_match, + anon_sym_return, + anon_sym_del, + anon_sym_pass, + anon_sym_break, + anon_sym_continue, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_while, + anon_sym_with, + anon_sym_def, + anon_sym_exec, + anon_sym_not, + anon_sym_lambda, + sym_integer, + sym_identifier, + anon_sym_await, + anon_sym_struct, + sym_true, + sym_false, + sym_none, + [39672] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(782), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [39733] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(969), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [39794] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(732), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [39855] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(733), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [39916] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(845), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [39977] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(708), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40038] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(824), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40099] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(757), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40160] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(709), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40221] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(711), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40282] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + STATE(784), 1, + sym_argument_list, + ACTIONS(1504), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1502), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [40335] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(713), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40396] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(755), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40457] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(752), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40518] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(715), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40579] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(753), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40640] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(773), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40701] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(847), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40762] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1318), 1, + sym_identifier, + ACTIONS(1324), 1, + anon_sym_match, + STATE(1096), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(826), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [40827] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1020), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [40872] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(87), 6, + anon_sym_as, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [40917] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + anon_sym_EQ, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + ACTIONS(1522), 1, + anon_sym_not, + ACTIONS(1526), 1, + anon_sym_PIPE, + ACTIONS(1528), 1, + anon_sym_AMP, + ACTIONS(1530), 1, + anon_sym_CARET, + STATE(877), 1, + sym_argument_list, + STATE(1075), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1512), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1532), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1514), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1358), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [40992] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(844), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41053] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(968), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41114] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + ACTIONS(1538), 1, + sym_identifier, + STATE(1096), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1077), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1540), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41179] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + ACTIONS(1542), 1, + sym_identifier, + STATE(1093), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1053), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1544), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41244] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(734), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41305] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(716), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41366] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(872), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41427] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(931), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41488] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + ACTIONS(1330), 1, + sym_identifier, + STATE(1093), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1059), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1332), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41553] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(842), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41614] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(841), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41675] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(840), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41736] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(836), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41797] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(833), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41858] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(822), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41919] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(820), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [41980] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(819), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42041] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(717), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42102] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(718), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42163] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(890), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42224] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_PIPE, + ACTIONS(1380), 1, + anon_sym_AMP, + ACTIONS(1382), 1, + anon_sym_CARET, + STATE(784), 1, + sym_argument_list, + ACTIONS(1362), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1364), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1376), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1548), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1546), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [42291] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(760), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42352] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(837), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42413] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(835), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42474] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + ACTIONS(1550), 1, + sym_identifier, + STATE(1097), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + STATE(1082), 2, + sym_attribute, + sym_subscript, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(132), 4, + sym_integer, + sym_true, + sym_false, + sym_none, + ACTIONS(1552), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(946), 12, + sym_binary_operator, + sym_unary_operator, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42539] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(904), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42600] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(726), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42661] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(723), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42722] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(1062), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42783] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(652), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42844] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(721), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42905] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(720), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [42966] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(762), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43027] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(710), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1020), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [43133] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(87), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [43178] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(770), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43239] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + anon_sym_as, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1570), 1, + anon_sym_not, + ACTIONS(1574), 1, + anon_sym_PIPE, + ACTIONS(1576), 1, + anon_sym_AMP, + ACTIONS(1578), 1, + anon_sym_CARET, + STATE(977), 1, + sym_argument_list, + STATE(1069), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1560), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1572), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1580), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1566), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1562), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1358), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [43314] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(829), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43375] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(846), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43436] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(55), 1, + anon_sym_LBRACE, + ACTIONS(63), 1, + sym__string_start, + ACTIONS(231), 1, + anon_sym_LPAREN, + ACTIONS(233), 1, + anon_sym_LBRACK, + ACTIONS(1494), 1, + anon_sym_match, + STATE(831), 1, + sym_primary_expression, + ACTIONS(53), 2, + sym_ellipsis, + sym_float, + ACTIONS(49), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(57), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + ACTIONS(92), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + STATE(862), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43497] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(905), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43558] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(906), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43619] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(908), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43680] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + STATE(811), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [43733] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + STATE(811), 1, + sym_argument_list, + ACTIONS(1402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 20, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [43792] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + STATE(784), 1, + sym_argument_list, + ACTIONS(1362), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1364), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1376), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [43853] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_PIPE, + ACTIONS(1420), 1, + anon_sym_AMP, + ACTIONS(1422), 1, + anon_sym_CARET, + STATE(811), 1, + sym_argument_list, + ACTIONS(1402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1588), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1586), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [43920] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(320), 1, + anon_sym_LPAREN, + ACTIONS(326), 1, + anon_sym_LBRACK, + ACTIONS(336), 1, + anon_sym_LBRACE, + ACTIONS(342), 1, + sym__string_start, + ACTIONS(1534), 1, + anon_sym_match, + STATE(843), 1, + sym_primary_expression, + ACTIONS(334), 2, + sym_ellipsis, + sym_float, + ACTIONS(330), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(322), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(338), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(948), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [43981] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + STATE(811), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [44034] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(262), 1, + anon_sym_LPAREN, + ACTIONS(268), 1, + anon_sym_LBRACK, + ACTIONS(278), 1, + anon_sym_LBRACE, + ACTIONS(284), 1, + sym__string_start, + ACTIONS(1500), 1, + anon_sym_match, + STATE(731), 1, + sym_primary_expression, + ACTIONS(276), 2, + sym_ellipsis, + sym_float, + ACTIONS(272), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(264), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(280), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(799), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44095] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + STATE(811), 1, + sym_argument_list, + ACTIONS(1402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 22, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [44152] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + ACTIONS(1420), 1, + anon_sym_AMP, + ACTIONS(1422), 1, + anon_sym_CARET, + STATE(811), 1, + sym_argument_list, + ACTIONS(1402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [44217] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + ACTIONS(1422), 1, + anon_sym_CARET, + STATE(811), 1, + sym_argument_list, + ACTIONS(1402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [44280] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + STATE(811), 1, + sym_argument_list, + ACTIONS(1402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 18, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [44341] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(915), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44402] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + ACTIONS(1382), 1, + anon_sym_CARET, + STATE(784), 1, + sym_argument_list, + ACTIONS(1362), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1364), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1376), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 17, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [44465] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + ACTIONS(1380), 1, + anon_sym_AMP, + ACTIONS(1382), 1, + anon_sym_CARET, + STATE(784), 1, + sym_argument_list, + ACTIONS(1362), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1364), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1376), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [44530] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(797), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44591] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + STATE(784), 1, + sym_argument_list, + ACTIONS(1362), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 22, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [44648] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(917), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44709] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(684), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44770] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + STATE(784), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [44823] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(919), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [44884] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + ACTIONS(1378), 1, + anon_sym_PIPE, + ACTIONS(1380), 1, + anon_sym_AMP, + ACTIONS(1382), 1, + anon_sym_CARET, + STATE(784), 1, + sym_argument_list, + ACTIONS(1362), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1364), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1376), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1588), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1586), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [44951] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(771), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45012] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(372), 1, + anon_sym_LPAREN, + ACTIONS(378), 1, + anon_sym_LBRACK, + ACTIONS(388), 1, + anon_sym_LBRACE, + ACTIONS(394), 1, + sym__string_start, + ACTIONS(1536), 1, + anon_sym_match, + STATE(920), 1, + sym_primary_expression, + ACTIONS(386), 2, + sym_ellipsis, + sym_float, + ACTIONS(382), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(374), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(390), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(1019), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45073] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + ACTIONS(1418), 1, + anon_sym_PIPE, + ACTIONS(1420), 1, + anon_sym_AMP, + ACTIONS(1422), 1, + anon_sym_CARET, + STATE(811), 1, + sym_argument_list, + ACTIONS(1402), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1404), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1416), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1410), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1548), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1546), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [45140] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + STATE(784), 1, + sym_argument_list, + ACTIONS(1362), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1376), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1370), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 20, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [45199] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1354), 1, + anon_sym_DOT, + ACTIONS(1356), 1, + anon_sym_LPAREN, + ACTIONS(1368), 1, + anon_sym_STAR_STAR, + ACTIONS(1372), 1, + anon_sym_LBRACK, + STATE(784), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 25, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [45252] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1398), 1, + anon_sym_DOT, + ACTIONS(1400), 1, + anon_sym_LPAREN, + ACTIONS(1408), 1, + anon_sym_STAR_STAR, + ACTIONS(1412), 1, + anon_sym_LBRACK, + STATE(811), 1, + sym_argument_list, + ACTIONS(1504), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1502), 25, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [45305] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(935), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45366] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_LBRACE, + ACTIONS(136), 1, + sym__string_start, + ACTIONS(286), 1, + anon_sym_LPAREN, + ACTIONS(288), 1, + anon_sym_LBRACK, + ACTIONS(1324), 1, + anon_sym_match, + STATE(785), 1, + sym_primary_expression, + ACTIONS(128), 2, + sym_ellipsis, + sym_float, + ACTIONS(124), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(109), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(132), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(946), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45427] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(936), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45488] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(938), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45549] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(955), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45610] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(967), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45671] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + anon_sym_EQ, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + ACTIONS(1606), 1, + anon_sym_not, + ACTIONS(1610), 1, + anon_sym_PIPE, + ACTIONS(1612), 1, + anon_sym_AMP, + ACTIONS(1614), 1, + anon_sym_CARET, + STATE(924), 1, + sym_argument_list, + STATE(1074), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1594), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1616), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1602), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1598), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1358), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [45746] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(294), 1, + anon_sym_LPAREN, + ACTIONS(300), 1, + anon_sym_LBRACK, + ACTIONS(310), 1, + anon_sym_LBRACE, + ACTIONS(316), 1, + sym__string_start, + ACTIONS(1498), 1, + anon_sym_match, + STATE(728), 1, + sym_primary_expression, + ACTIONS(308), 2, + sym_ellipsis, + sym_float, + ACTIONS(304), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(296), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(312), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(849), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45807] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(978), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45868] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(346), 1, + anon_sym_LPAREN, + ACTIONS(352), 1, + anon_sym_LBRACK, + ACTIONS(362), 1, + anon_sym_LBRACE, + ACTIONS(368), 1, + sym__string_start, + ACTIONS(1496), 1, + anon_sym_match, + STATE(979), 1, + sym_primary_expression, + ACTIONS(360), 2, + sym_ellipsis, + sym_float, + ACTIONS(356), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_TILDE, + ACTIONS(348), 5, + anon_sym_print, + anon_sym_async, + anon_sym_exec, + anon_sym_await, + anon_sym_struct, + ACTIONS(364), 5, + sym_integer, + sym_identifier, + sym_true, + sym_false, + sym_none, + STATE(994), 14, + sym_binary_operator, + sym_unary_operator, + sym_attribute, + sym_subscript, + sym_call, + sym_list, + sym_set, + sym_tuple, + sym_dictionary, + sym_list_comprehension, + sym_dictionary_comprehension, + sym_set_comprehension, + sym_parenthesized_expression, + sym_string, + [45929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1620), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1618), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [45971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1063), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [46013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1622), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [46055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [46097] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [46139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [46181] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1630), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [46223] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 19, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46281] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + STATE(877), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46333] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1636), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [46375] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + ACTIONS(1526), 1, + anon_sym_PIPE, + ACTIONS(1528), 1, + anon_sym_AMP, + ACTIONS(1530), 1, + anon_sym_CARET, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1512), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1588), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1586), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46441] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [46483] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + STATE(877), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46535] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [46577] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [46619] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 21, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46675] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [46717] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + ACTIONS(1528), 1, + anon_sym_AMP, + ACTIONS(1530), 1, + anon_sym_CARET, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1512), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46781] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1020), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46825] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(87), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [46869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1644), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1642), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [46911] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [46953] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1032), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [46995] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [47037] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + ACTIONS(1666), 1, + anon_sym_not, + ACTIONS(1670), 1, + anon_sym_PIPE, + ACTIONS(1672), 1, + anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_CARET, + STATE(987), 1, + sym_argument_list, + STATE(1101), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1654), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1668), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1676), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1662), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1658), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1358), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [47109] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + ACTIONS(1530), 1, + anon_sym_CARET, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1512), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47171] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1512), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47231] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1053), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [47273] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + ACTIONS(1610), 1, + anon_sym_PIPE, + ACTIONS(1612), 1, + anon_sym_AMP, + ACTIONS(1614), 1, + anon_sym_CARET, + STATE(924), 1, + sym_argument_list, + ACTIONS(1594), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1548), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1602), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1546), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1678), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [47381] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1684), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1682), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [47423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1686), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [47465] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1690), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [47507] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1696), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [47549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1698), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [47591] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1063), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [47633] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1620), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1618), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [47675] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(1594), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1602), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 17, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47735] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1704), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1702), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [47777] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [47819] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + ACTIONS(1526), 1, + anon_sym_PIPE, + ACTIONS(1528), 1, + anon_sym_AMP, + ACTIONS(1530), 1, + anon_sym_CARET, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1512), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1548), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1546), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [47885] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [47927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1032), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [47969] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1710), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1020), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48055] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1644), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1642), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48097] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(87), 6, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48141] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48183] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1710), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [48225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1704), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1702), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [48267] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1684), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1682), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48309] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48351] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + STATE(877), 1, + sym_argument_list, + ACTIONS(1504), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1502), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48403] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48445] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48487] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1698), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [48529] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1720), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48571] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48613] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1690), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [48655] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1696), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48697] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(89), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(87), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48743] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1678), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [48785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1053), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [48827] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [48869] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [48911] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + anon_sym_EQ, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + ACTIONS(1742), 1, + anon_sym_not, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(1748), 1, + anon_sym_AMP, + ACTIONS(1750), 1, + anon_sym_CARET, + STATE(1018), 1, + sym_argument_list, + STATE(1100), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1730), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1732), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1752), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1738), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1358), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1734), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [48985] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [49027] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1630), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [49069] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1622), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [49111] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1716), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [49153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [49195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1686), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [49237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [49279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [49321] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(977), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 24, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49373] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(977), 1, + sym_argument_list, + ACTIONS(1558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1572), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1566), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 19, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49431] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(87), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1754), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [49475] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1574), 1, + anon_sym_PIPE, + ACTIONS(1576), 1, + anon_sym_AMP, + ACTIONS(1578), 1, + anon_sym_CARET, + STATE(977), 1, + sym_argument_list, + ACTIONS(1558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1560), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1572), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1566), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1588), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1586), 14, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49541] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [49583] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49635] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1636), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [49677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1015), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1020), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1756), 18, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [49721] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + sym_type_conversion, + [49763] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49807] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(1594), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1602), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 19, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49865] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1020), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49909] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(1504), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1502), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [49961] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [50003] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(977), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 24, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50055] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1017), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1020), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50101] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + ACTIONS(1610), 1, + anon_sym_PIPE, + ACTIONS(1612), 1, + anon_sym_AMP, + ACTIONS(1614), 1, + anon_sym_CARET, + STATE(924), 1, + sym_argument_list, + ACTIONS(1594), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1588), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1602), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1586), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50167] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(977), 1, + sym_argument_list, + ACTIONS(1558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1566), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 21, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50223] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50275] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [50317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [50359] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1576), 1, + anon_sym_AMP, + ACTIONS(1578), 1, + anon_sym_CARET, + STATE(977), 1, + sym_argument_list, + ACTIONS(1558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1560), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1572), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1566), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 15, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50423] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1578), 1, + anon_sym_CARET, + STATE(977), 1, + sym_argument_list, + ACTIONS(1558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1560), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1572), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1566), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 16, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50485] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(977), 1, + sym_argument_list, + ACTIONS(1558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1560), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1572), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1566), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1584), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 17, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50545] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(977), 1, + sym_argument_list, + ACTIONS(1504), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1502), 24, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50597] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1556), 1, + anon_sym_LPAREN, + ACTIONS(1564), 1, + anon_sym_STAR_STAR, + ACTIONS(1568), 1, + anon_sym_LBRACK, + ACTIONS(1574), 1, + anon_sym_PIPE, + ACTIONS(1576), 1, + anon_sym_AMP, + ACTIONS(1578), 1, + anon_sym_CARET, + STATE(977), 1, + sym_argument_list, + ACTIONS(1558), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1560), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1572), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1548), 3, + anon_sym_as, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1566), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1546), 14, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50663] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + STATE(924), 1, + sym_argument_list, + ACTIONS(1594), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1602), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 21, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50719] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + ACTIONS(1612), 1, + anon_sym_AMP, + ACTIONS(1614), 1, + anon_sym_CARET, + STATE(924), 1, + sym_argument_list, + ACTIONS(1594), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1602), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50783] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + ACTIONS(1614), 1, + anon_sym_CARET, + STATE(924), 1, + sym_argument_list, + ACTIONS(1594), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1602), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [50845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [50887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [50929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [50971] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [51013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1720), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 29, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + anon_sym_RBRACE, + [51055] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1015), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1020), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1026), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [51098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1710), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51180] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51221] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(87), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(98), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [51264] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(396), 1, + anon_sym_EQ, + ACTIONS(87), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51309] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1042), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1047), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1049), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [51352] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1762), 1, + anon_sym_EQ, + ACTIONS(1020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51397] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1644), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1642), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51438] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51479] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1720), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51520] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51561] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1710), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51602] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1684), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1682), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51643] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51684] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1075), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(1080), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(1082), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [51727] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1704), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1702), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51768] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51809] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 3, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_LBRACK, + ACTIONS(87), 13, + anon_sym_STAR, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + ACTIONS(98), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [51852] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1504), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1502), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51903] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1020), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [51989] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52030] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52071] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52112] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52153] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52194] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52235] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1636), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52317] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52358] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1696), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52399] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1686), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52440] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1063), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52604] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + ACTIONS(1670), 1, + anon_sym_PIPE, + ACTIONS(1672), 1, + anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_CARET, + STATE(987), 1, + sym_argument_list, + ACTIONS(1548), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1654), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1668), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1662), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1546), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52669] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52710] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1684), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1682), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52751] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1716), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52792] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1622), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52833] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52874] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1644), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1642), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52915] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1630), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [52997] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1620), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1618), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1053), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53079] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1678), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53120] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1690), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53202] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + STATE(987), 1, + sym_argument_list, + ACTIONS(1584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1654), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1668), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1662), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 17, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53261] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + ACTIONS(1674), 1, + anon_sym_CARET, + STATE(987), 1, + sym_argument_list, + ACTIONS(1584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1654), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1668), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1662), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 16, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53322] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + ACTIONS(1672), 1, + anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_CARET, + STATE(987), 1, + sym_argument_list, + ACTIONS(1584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1654), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1668), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1662), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 15, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53385] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53426] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + STATE(987), 1, + sym_argument_list, + ACTIONS(1584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1654), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1662), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 21, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53481] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1698), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53604] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1063), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53645] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1698), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1620), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1618), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53727] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + STATE(987), 1, + sym_argument_list, + ACTIONS(1584), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53778] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1704), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1702), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53819] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + ACTIONS(1670), 1, + anon_sym_PIPE, + ACTIONS(1672), 1, + anon_sym_AMP, + ACTIONS(1674), 1, + anon_sym_CARET, + STATE(987), 1, + sym_argument_list, + ACTIONS(1588), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1654), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1656), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1668), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1662), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1586), 14, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53884] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1636), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53925] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + STATE(987), 1, + sym_argument_list, + ACTIONS(1584), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1654), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1668), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1662), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 19, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [53982] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + STATE(987), 1, + sym_argument_list, + ACTIONS(1584), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54033] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54074] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1720), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54197] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1710), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54238] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1690), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54279] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1704), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1702), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1620), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1618), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1698), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1032), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54443] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(1748), 1, + anon_sym_AMP, + ACTIONS(1750), 1, + anon_sym_CARET, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1730), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1732), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1548), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1738), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1546), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54508] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1690), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54549] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1678), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54590] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1053), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54631] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54682] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1730), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1738), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 18, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1630), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54780] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + ACTIONS(1746), 1, + anon_sym_PIPE, + ACTIONS(1748), 1, + anon_sym_AMP, + ACTIONS(1750), 1, + anon_sym_CARET, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1730), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1732), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1588), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1738), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1586), 13, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54845] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1622), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54886] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [54968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1032), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1636), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55091] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55132] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55173] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1622), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55214] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55255] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(87), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55298] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1644), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1642), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55339] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55380] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1020), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55423] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55464] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1077), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1080), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55507] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1584), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1582), 23, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_AT, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55558] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55599] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1630), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55640] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1684), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1682), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55681] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1678), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55763] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55804] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1047), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 26, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55847] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1686), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55888] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1696), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [55970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1720), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56011] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1730), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1738), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 20, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56066] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1650), 1, + anon_sym_DOT, + ACTIONS(1652), 1, + anon_sym_LPAREN, + ACTIONS(1660), 1, + anon_sym_STAR_STAR, + ACTIONS(1664), 1, + anon_sym_LBRACK, + STATE(987), 1, + sym_argument_list, + ACTIONS(1504), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1502), 24, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_AT, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56117] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + ACTIONS(1748), 1, + anon_sym_AMP, + ACTIONS(1750), 1, + anon_sym_CARET, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1730), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1732), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1738), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 14, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56180] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1020), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56223] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_COLON, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56266] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1686), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56307] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1696), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56389] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56430] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 28, + sym__newline, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 5, + anon_sym_as, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56512] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1730), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1732), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1738), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 16, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56571] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1728), 1, + anon_sym_LPAREN, + ACTIONS(1736), 1, + anon_sym_STAR_STAR, + ACTIONS(1740), 1, + anon_sym_LBRACK, + ACTIONS(1750), 1, + anon_sym_CARET, + STATE(1018), 1, + sym_argument_list, + ACTIONS(1730), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1732), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1744), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1584), 3, + anon_sym_EQ, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1738), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + ACTIONS(1582), 15, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_in, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56632] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1636), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56672] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1764), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56716] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56756] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56796] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56836] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1710), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56876] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1720), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56916] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56956] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [56996] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1696), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1704), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1702), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57076] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1686), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57116] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1620), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1618), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57156] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1698), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57196] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57236] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57276] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57316] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1678), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57356] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1684), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1682), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57436] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57476] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1644), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1642), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57516] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1034), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1032), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57556] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1648), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1646), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57596] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1686), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57636] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(396), 1, + anon_sym_EQ, + ACTIONS(87), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57678] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57718] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1696), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1694), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57798] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_COLON_EQ, + ACTIONS(89), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(87), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57842] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1630), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57882] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1622), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1716), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [57962] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1712), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1710), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1704), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1702), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58042] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1620), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1618), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58082] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1700), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1698), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1690), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58162] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1708), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1706), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58202] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58242] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1692), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1690), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58282] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1055), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1053), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58362] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1632), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1630), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58402] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1624), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1622), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58442] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1716), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1714), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58482] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1065), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1063), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58522] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58562] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1069), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1067), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58602] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1017), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58686] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1684), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1682), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58726] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1760), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1758), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58766] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1022), 1, + anon_sym_COLON_EQ, + ACTIONS(1764), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58810] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1724), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1722), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58850] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1636), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1634), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58890] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1680), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1678), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58930] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1644), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1642), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [58970] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1640), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1638), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59010] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59050] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1073), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1071), 28, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_COLON, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1720), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1718), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59130] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1628), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1626), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59170] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 5, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 27, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59210] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1044), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1047), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1042), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59251] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(468), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(87), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59333] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1764), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59374] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(468), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(87), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1077), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1080), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1075), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59456] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1017), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1020), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1015), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(89), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(87), 4, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_LT, + anon_sym_GT, + ACTIONS(85), 25, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_as, + anon_sym_GT_GT, + anon_sym_if, + anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_not, + anon_sym_and, + anon_sym_or, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [59538] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_as, + ACTIONS(1774), 1, + anon_sym_not, + STATE(1052), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1777), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1771), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1767), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [59573] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1780), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1015), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1782), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(85), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59631] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1414), 1, + anon_sym_not, + ACTIONS(1786), 1, + anon_sym_EQ, + STATE(1057), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1424), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1406), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1784), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [59666] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1374), 1, + anon_sym_not, + ACTIONS(1786), 1, + anon_sym_as, + STATE(1052), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1384), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1366), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1784), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [59701] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_EQ, + ACTIONS(1791), 1, + anon_sym_not, + STATE(1057), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1794), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1788), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1767), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [59736] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1754), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(85), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59765] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1756), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1015), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(98), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(85), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59822] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1042), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59850] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1590), 1, + anon_sym_DOT, + ACTIONS(1592), 1, + anon_sym_LPAREN, + ACTIONS(1600), 1, + anon_sym_STAR_STAR, + ACTIONS(1604), 1, + anon_sym_LBRACK, + ACTIONS(1610), 1, + anon_sym_PIPE, + ACTIONS(1612), 1, + anon_sym_AMP, + ACTIONS(1614), 1, + anon_sym_CARET, + ACTIONS(1797), 1, + sym__newline, + STATE(924), 1, + sym_argument_list, + ACTIONS(1594), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1596), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1608), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1602), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [59898] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1047), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1049), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1042), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59926] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1082), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1075), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59954] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(98), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(85), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [59982] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_EQ, + ACTIONS(1802), 1, + anon_sym_not, + STATE(1066), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1805), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1799), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1767), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [60016] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1808), 1, + anon_sym_COMMA, + STATE(1067), 1, + aux_sym__patterns_repeat1, + ACTIONS(1811), 16, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [60044] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_EQ, + ACTIONS(1816), 1, + anon_sym_not, + STATE(1068), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1819), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1813), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1767), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [60078] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1570), 1, + anon_sym_not, + ACTIONS(1786), 1, + anon_sym_as, + STATE(1079), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1580), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1562), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1784), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [60112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1026), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1015), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [60140] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(98), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(85), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [60168] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(98), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(85), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [60196] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1822), 1, + anon_sym_COMMA, + STATE(1067), 1, + aux_sym__patterns_repeat1, + ACTIONS(687), 16, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [60224] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1606), 1, + anon_sym_not, + ACTIONS(1786), 1, + anon_sym_EQ, + STATE(1066), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1616), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1598), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1784), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [60258] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1522), 1, + anon_sym_not, + ACTIONS(1786), 1, + anon_sym_EQ, + STATE(1068), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1532), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1514), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1784), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_and, + anon_sym_or, + [60292] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1026), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1015), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [60320] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1780), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(1015), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [60348] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1080), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1082), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1075), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [60376] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_as, + ACTIONS(1827), 1, + anon_sym_not, + STATE(1079), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1830), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1824), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1767), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [60410] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1782), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(85), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [60438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(87), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1754), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(85), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [60466] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1020), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1756), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1015), 14, + anon_sym_DOT, + anon_sym_LPAREN, + anon_sym_GT_GT, + anon_sym_STAR_STAR, + anon_sym_AT, + anon_sym_LBRACK, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + anon_sym_PIPE, + anon_sym_AMP, + anon_sym_CARET, + anon_sym_LT_LT, + [60494] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1839), 1, + anon_sym_COLON, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + STATE(1463), 1, + sym_parameter, + STATE(1553), 1, + sym__parameters, + STATE(1668), 1, + sym_lambda_parameters, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [60537] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1845), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [60560] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1847), 1, + anon_sym_COLON, + STATE(1463), 1, + sym_parameter, + STATE(1553), 1, + sym__parameters, + STATE(1571), 1, + sym_lambda_parameters, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [60603] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1852), 1, + anon_sym_not, + STATE(1086), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1855), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1849), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1767), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [60634] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1858), 1, + anon_sym_COLON, + STATE(1463), 1, + sym_parameter, + STATE(1553), 1, + sym__parameters, + STATE(1561), 1, + sym_lambda_parameters, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [60677] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1769), 1, + anon_sym_EQ, + ACTIONS(1863), 1, + anon_sym_not, + STATE(1088), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1866), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1767), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + ACTIONS(1860), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + [60710] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1869), 1, + anon_sym_COLON, + STATE(1463), 1, + sym_parameter, + STATE(1553), 1, + sym__parameters, + STATE(1658), 1, + sym_lambda_parameters, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [60753] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1871), 1, + anon_sym_COLON, + STATE(1463), 1, + sym_parameter, + STATE(1553), 1, + sym__parameters, + STATE(1645), 1, + sym_lambda_parameters, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [60796] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COMMA, + ACTIONS(1875), 1, + anon_sym_COLON, + ACTIONS(1877), 1, + anon_sym_EQ, + STATE(1073), 1, + aux_sym__patterns_repeat1, + ACTIONS(1879), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [60827] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [60850] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1526), 1, + anon_sym_PIPE, + ACTIONS(1528), 1, + anon_sym_AMP, + ACTIONS(1530), 1, + anon_sym_CARET, + ACTIONS(1726), 1, + anon_sym_DOT, + ACTIONS(1740), 1, + anon_sym_LBRACK, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1512), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [60895] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [60918] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1883), 1, + anon_sym_COLON, + STATE(1463), 1, + sym_parameter, + STATE(1553), 1, + sym__parameters, + STATE(1578), 1, + sym_lambda_parameters, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [60961] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1506), 1, + anon_sym_DOT, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1520), 1, + anon_sym_LBRACK, + ACTIONS(1526), 1, + anon_sym_PIPE, + ACTIONS(1528), 1, + anon_sym_AMP, + ACTIONS(1530), 1, + anon_sym_CARET, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1512), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [61006] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1508), 1, + anon_sym_LPAREN, + ACTIONS(1516), 1, + anon_sym_STAR_STAR, + ACTIONS(1526), 1, + anon_sym_PIPE, + ACTIONS(1528), 1, + anon_sym_AMP, + ACTIONS(1530), 1, + anon_sym_CARET, + ACTIONS(1554), 1, + anon_sym_DOT, + ACTIONS(1568), 1, + anon_sym_LBRACK, + STATE(877), 1, + sym_argument_list, + ACTIONS(1510), 2, + anon_sym_STAR, + anon_sym_SLASH, + ACTIONS(1512), 2, + anon_sym_GT_GT, + anon_sym_LT_LT, + ACTIONS(1524), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1518), 3, + anon_sym_AT, + anon_sym_PERCENT, + anon_sym_SLASH_SLASH, + [61051] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1885), 1, + anon_sym_COLON, + STATE(1463), 1, + sym_parameter, + STATE(1553), 1, + sym__parameters, + STATE(1651), 1, + sym_lambda_parameters, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 17, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_in, + anon_sym_EQ, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [61117] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1742), 1, + anon_sym_not, + ACTIONS(1786), 1, + anon_sym_EQ, + STATE(1088), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1752), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1734), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1784), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_and, + anon_sym_or, + [61150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1666), 1, + anon_sym_not, + STATE(1086), 1, + aux_sym_comparison_operator_repeat1, + ACTIONS(1676), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(1658), 6, + anon_sym_in, + anon_sym_LT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_GT, + ACTIONS(1784), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [61181] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1887), 1, + anon_sym_COLON, + STATE(1463), 1, + sym_parameter, + STATE(1553), 1, + sym__parameters, + STATE(1581), 1, + sym_lambda_parameters, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61224] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1889), 1, + anon_sym_COLON, + STATE(1463), 1, + sym_parameter, + STATE(1553), 1, + sym__parameters, + STATE(1653), 1, + sym_lambda_parameters, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61267] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1891), 1, + sym_identifier, + ACTIONS(1893), 1, + anon_sym_LPAREN, + ACTIONS(1895), 1, + anon_sym_RPAREN, + ACTIONS(1897), 1, + anon_sym_STAR, + ACTIONS(1899), 1, + anon_sym_STAR_STAR, + ACTIONS(1901), 1, + anon_sym_SLASH, + STATE(1410), 1, + sym_parameter, + STATE(1565), 1, + sym__parameters, + STATE(1408), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1535), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61307] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1903), 1, + anon_sym_COLON, + STATE(1538), 1, + sym_parameter, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61344] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1891), 1, + sym_identifier, + ACTIONS(1893), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + anon_sym_STAR, + ACTIONS(1899), 1, + anon_sym_STAR_STAR, + ACTIONS(1901), 1, + anon_sym_SLASH, + ACTIONS(1905), 1, + anon_sym_RPAREN, + STATE(1519), 1, + sym_parameter, + STATE(1408), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1535), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61381] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1875), 1, + anon_sym_COLON, + ACTIONS(1877), 1, + anon_sym_EQ, + ACTIONS(1879), 13, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_AT_EQ, + anon_sym_SLASH_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_AMP_EQ, + anon_sym_CARET_EQ, + anon_sym_PIPE_EQ, + [61406] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1891), 1, + sym_identifier, + ACTIONS(1893), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + anon_sym_STAR, + ACTIONS(1899), 1, + anon_sym_STAR_STAR, + ACTIONS(1901), 1, + anon_sym_SLASH, + ACTIONS(1903), 1, + anon_sym_RPAREN, + STATE(1519), 1, + sym_parameter, + STATE(1408), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1535), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61443] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + ACTIONS(1905), 1, + anon_sym_COLON, + STATE(1538), 1, + sym_parameter, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61480] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1833), 1, + sym_identifier, + ACTIONS(1835), 1, + anon_sym_LPAREN, + ACTIONS(1837), 1, + anon_sym_STAR, + ACTIONS(1841), 1, + anon_sym_STAR_STAR, + ACTIONS(1843), 1, + anon_sym_SLASH, + STATE(1538), 1, + sym_parameter, + STATE(1530), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1549), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61514] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1891), 1, + sym_identifier, + ACTIONS(1893), 1, + anon_sym_LPAREN, + ACTIONS(1897), 1, + anon_sym_STAR, + ACTIONS(1899), 1, + anon_sym_STAR_STAR, + ACTIONS(1901), 1, + anon_sym_SLASH, + STATE(1519), 1, + sym_parameter, + STATE(1408), 2, + sym_list_splat_pattern, + sym_dictionary_splat_pattern, + STATE(1535), 6, + sym_tuple_pattern, + sym_default_parameter, + sym_typed_default_parameter, + sym_typed_parameter, + sym_positional_separator, + sym_keyword_separator, + [61548] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_COMMA, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1913), 1, + anon_sym_COLON, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(1923), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1381), 1, + aux_sym__collection_elements_repeat1, + STATE(1590), 1, + sym__comprehension_clauses, + [61588] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_COMMA, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1913), 1, + anon_sym_COLON, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(1923), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1381), 1, + aux_sym__collection_elements_repeat1, + STATE(1680), 1, + sym__comprehension_clauses, + [61628] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_COMMA, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1913), 1, + anon_sym_COLON, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(1923), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1381), 1, + aux_sym__collection_elements_repeat1, + STATE(1610), 1, + sym__comprehension_clauses, + [61668] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_COMMA, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1913), 1, + anon_sym_COLON, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(1923), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1381), 1, + aux_sym__collection_elements_repeat1, + STATE(1612), 1, + sym__comprehension_clauses, + [61708] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_COMMA, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1913), 1, + anon_sym_COLON, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(1923), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1381), 1, + aux_sym__collection_elements_repeat1, + STATE(1555), 1, + sym__comprehension_clauses, + [61748] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_COMMA, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1913), 1, + anon_sym_COLON, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(1923), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1381), 1, + aux_sym__collection_elements_repeat1, + STATE(1597), 1, + sym__comprehension_clauses, + [61788] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_COMMA, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1913), 1, + anon_sym_COLON, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(1923), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1381), 1, + aux_sym__collection_elements_repeat1, + STATE(1563), 1, + sym__comprehension_clauses, + [61828] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACK, + ACTIONS(1925), 1, + anon_sym_COMMA, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_for, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + STATE(1281), 1, + sym_for_in_clause, + STATE(1407), 1, + aux_sym__collection_elements_repeat1, + STATE(1588), 1, + sym__comprehension_clauses, + [61865] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACK, + ACTIONS(1925), 1, + anon_sym_COMMA, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_for, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + STATE(1281), 1, + sym_for_in_clause, + STATE(1407), 1, + aux_sym__collection_elements_repeat1, + STATE(1564), 1, + sym__comprehension_clauses, + [61902] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACK, + ACTIONS(1925), 1, + anon_sym_COMMA, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_for, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + STATE(1281), 1, + sym_for_in_clause, + STATE(1407), 1, + aux_sym__collection_elements_repeat1, + STATE(1622), 1, + sym__comprehension_clauses, + [61939] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACK, + ACTIONS(1925), 1, + anon_sym_COMMA, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_for, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + STATE(1281), 1, + sym_for_in_clause, + STATE(1407), 1, + aux_sym__collection_elements_repeat1, + STATE(1616), 1, + sym__comprehension_clauses, + [61976] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACK, + ACTIONS(1925), 1, + anon_sym_COMMA, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_for, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + STATE(1281), 1, + sym_for_in_clause, + STATE(1407), 1, + aux_sym__collection_elements_repeat1, + STATE(1637), 1, + sym__comprehension_clauses, + [62013] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACK, + ACTIONS(1925), 1, + anon_sym_COMMA, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_for, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + STATE(1281), 1, + sym_for_in_clause, + STATE(1407), 1, + aux_sym__collection_elements_repeat1, + STATE(1614), 1, + sym__comprehension_clauses, + [62050] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACK, + ACTIONS(1925), 1, + anon_sym_COMMA, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_for, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + STATE(1281), 1, + sym_for_in_clause, + STATE(1407), 1, + aux_sym__collection_elements_repeat1, + STATE(1557), 1, + sym__comprehension_clauses, + [62087] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1945), 1, + sym__string_content, + ACTIONS(1947), 1, + sym__string_end, + STATE(1139), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1941), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62111] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1951), 1, + sym__string_content, + ACTIONS(1953), 1, + sym__string_end, + STATE(1136), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1949), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62135] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1957), 1, + sym__string_content, + ACTIONS(1959), 1, + sym__string_end, + STATE(1134), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1955), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62159] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1963), 1, + sym__string_content, + ACTIONS(1965), 1, + sym__string_end, + STATE(1133), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1961), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62183] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1967), 1, + anon_sym_COMMA, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + STATE(1313), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(1973), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [62211] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1981), 1, + sym__string_content, + ACTIONS(1983), 1, + sym__string_end, + STATE(1135), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1979), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62235] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1987), 1, + sym__string_content, + ACTIONS(1989), 1, + sym__string_end, + STATE(1140), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1985), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62259] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1993), 1, + sym__string_content, + ACTIONS(1995), 1, + sym__string_end, + STATE(1141), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1991), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62283] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1993), 1, + sym__string_content, + ACTIONS(1997), 1, + sym__string_end, + STATE(1141), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1991), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62307] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1993), 1, + sym__string_content, + ACTIONS(1999), 1, + sym__string_end, + STATE(1141), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1991), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62331] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1993), 1, + sym__string_content, + ACTIONS(2001), 1, + sym__string_end, + STATE(1141), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1991), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62355] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2005), 1, + sym__string_content, + ACTIONS(2007), 1, + sym__string_end, + STATE(1138), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(2003), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62379] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1993), 1, + sym__string_content, + ACTIONS(2009), 1, + sym__string_end, + STATE(1141), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1991), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62403] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1993), 1, + sym__string_content, + ACTIONS(2011), 1, + sym__string_end, + STATE(1141), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1991), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62427] = 6, + ACTIONS(1939), 1, + anon_sym_LBRACE, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(1993), 1, + sym__string_content, + ACTIONS(2013), 1, + sym__string_end, + STATE(1141), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(1991), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62451] = 6, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2015), 1, + anon_sym_LBRACE, + ACTIONS(2021), 1, + sym__string_content, + ACTIONS(2024), 1, + sym__string_end, + STATE(1141), 3, + sym_interpolation, + sym__escape_interpolation, + aux_sym_string_repeat1, + ACTIONS(2018), 4, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [62475] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2026), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [62498] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2030), 1, + anon_sym_as, + ACTIONS(2028), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [62515] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2028), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [62530] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2032), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [62553] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2034), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [62576] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2036), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [62591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2038), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [62614] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2040), 1, + anon_sym_as, + ACTIONS(2036), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [62631] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(2044), 1, + anon_sym_as, + ACTIONS(2042), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_or, + anon_sym_RBRACE, + [62650] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + anon_sym_as, + ACTIONS(1358), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [62667] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2048), 1, + anon_sym_as, + ACTIONS(2046), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [62688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2051), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [62707] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [62722] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(2042), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [62739] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 9, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + sym_type_conversion, + [62754] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 1, + anon_sym_as, + ACTIONS(2042), 8, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_and, + anon_sym_or, + anon_sym_RBRACE, + [62771] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2032), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [62794] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2053), 1, + anon_sym_as, + ACTIONS(2051), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [62815] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2055), 1, + anon_sym_as, + ACTIONS(2046), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [62836] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2026), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [62859] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2038), 5, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [62882] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2060), 1, + anon_sym_COMMA, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + STATE(1360), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2058), 2, + sym__newline, + anon_sym_SEMI, + [62908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [62922] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2070), 1, + anon_sym_COMMA, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2076), 1, + anon_sym_COLON, + ACTIONS(2078), 1, + anon_sym_RBRACK, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + STATE(1486), 1, + aux_sym_subscript_repeat1, + [62950] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2051), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + [62968] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2084), 1, + anon_sym_as, + ACTIONS(2046), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + [62988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2036), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [63002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [63016] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2076), 1, + anon_sym_COLON, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2087), 1, + anon_sym_COMMA, + ACTIONS(2089), 1, + anon_sym_RBRACK, + STATE(1485), 1, + aux_sym_subscript_repeat1, + [63044] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2042), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_or, + [63060] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2093), 1, + anon_sym_COMMA, + STATE(1368), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2091), 2, + sym__newline, + anon_sym_SEMI, + [63086] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2095), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [63106] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2028), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [63120] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [63134] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2099), 1, + anon_sym_COMMA, + STATE(1366), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2097), 2, + sym__newline, + anon_sym_SEMI, + [63160] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(2044), 1, + anon_sym_as, + ACTIONS(2042), 6, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_or, + [63178] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2076), 1, + anon_sym_COLON, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2101), 1, + anon_sym_COMMA, + ACTIONS(2103), 1, + anon_sym_RBRACK, + STATE(1451), 1, + aux_sym_subscript_repeat1, + [63206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2036), 8, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [63220] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 1, + anon_sym_as, + ACTIONS(2042), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [63236] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + ACTIONS(2053), 1, + anon_sym_as, + ACTIONS(2051), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [63256] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2107), 1, + anon_sym_COMMA, + STATE(1357), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2105), 2, + sym__newline, + anon_sym_SEMI, + [63282] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2099), 1, + anon_sym_COMMA, + STATE(1358), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2109), 2, + sym__newline, + anon_sym_SEMI, + [63308] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2026), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + [63330] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + ACTIONS(2111), 1, + anon_sym_as, + ACTIONS(2046), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [63350] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2095), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [63370] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2093), 1, + anon_sym_COMMA, + STATE(1368), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2114), 2, + sym__newline, + anon_sym_SEMI, + [63396] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + ACTIONS(2038), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [63418] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + ACTIONS(2032), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [63440] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2093), 1, + anon_sym_COMMA, + STATE(1368), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2116), 2, + sym__newline, + anon_sym_SEMI, + [63466] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2038), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + [63488] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + ACTIONS(2095), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [63508] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [63522] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2032), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_EQ, + [63544] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2076), 1, + anon_sym_COLON, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2118), 1, + anon_sym_COMMA, + ACTIONS(2120), 1, + anon_sym_RBRACK, + STATE(1425), 1, + aux_sym_subscript_repeat1, + [63572] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2076), 1, + anon_sym_COLON, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2122), 1, + anon_sym_COMMA, + ACTIONS(2124), 1, + anon_sym_RBRACK, + STATE(1415), 1, + aux_sym_subscript_repeat1, + [63600] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1911), 1, + anon_sym_if, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2126), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [63622] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_COMMA, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2132), 1, + anon_sym_if, + ACTIONS(2134), 1, + anon_sym_COLON, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + STATE(1331), 1, + aux_sym_case_clause_repeat1, + STATE(1634), 1, + sym_if_clause, + [63650] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + ACTIONS(2095), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [63670] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2038), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + [63692] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2142), 1, + anon_sym_as, + ACTIONS(2046), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + [63712] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2051), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + [63730] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2132), 1, + anon_sym_if, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2145), 1, + anon_sym_COMMA, + ACTIONS(2147), 1, + anon_sym_COLON, + STATE(1349), 1, + aux_sym_case_clause_repeat1, + STATE(1654), 1, + sym_if_clause, + [63758] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2040), 1, + anon_sym_as, + ACTIONS(2036), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [63774] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2042), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + anon_sym_or, + [63790] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2076), 1, + anon_sym_COLON, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2149), 1, + anon_sym_COMMA, + ACTIONS(2151), 1, + anon_sym_RBRACK, + STATE(1468), 1, + aux_sym_subscript_repeat1, + [63818] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + ACTIONS(2095), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [63838] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2095), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [63858] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2030), 1, + anon_sym_as, + ACTIONS(2028), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [63874] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1929), 1, + anon_sym_if, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + ACTIONS(2026), 4, + anon_sym_COMMA, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [63896] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2032), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + [63918] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2028), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [63932] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2026), 4, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_else, + anon_sym_EQ, + [63954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1360), 1, + anon_sym_as, + ACTIONS(1358), 7, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [63970] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2076), 1, + anon_sym_COLON, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2153), 1, + anon_sym_COMMA, + ACTIONS(2155), 1, + anon_sym_RBRACK, + STATE(1447), 1, + aux_sym_subscript_repeat1, + [63998] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2034), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [64019] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(2157), 1, + anon_sym_if, + ACTIONS(2159), 1, + anon_sym_RBRACE, + STATE(1226), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [64040] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2161), 1, + anon_sym_RPAREN, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [64065] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2173), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [64086] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2051), 5, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + [64103] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(2175), 1, + anon_sym_COMMA, + ACTIONS(2177), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1460), 1, + aux_sym_dictionary_repeat1, + STATE(1556), 1, + sym__comprehension_clauses, + [64128] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(2179), 1, + anon_sym_COMMA, + ACTIONS(2181), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1452), 1, + aux_sym_dictionary_repeat1, + STATE(1562), 1, + sym__comprehension_clauses, + [64153] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2038), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [64174] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(2157), 1, + anon_sym_if, + ACTIONS(2183), 1, + anon_sym_RBRACE, + STATE(1217), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [64195] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(935), 1, + anon_sym_COLON, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(933), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [64218] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2185), 1, + anon_sym_if, + ACTIONS(2188), 1, + anon_sym_async, + ACTIONS(2191), 1, + anon_sym_for, + ACTIONS(2194), 1, + anon_sym_RBRACE, + STATE(1226), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [64239] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2196), 1, + anon_sym_as, + ACTIONS(2046), 4, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [64258] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2051), 5, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + [64275] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [64288] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2042), 6, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_or, + [64303] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2199), 1, + anon_sym_RPAREN, + ACTIONS(2201), 1, + anon_sym_COMMA, + STATE(1476), 1, + aux_sym_argument_list_repeat1, + [64328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2042), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [64341] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(2203), 1, + anon_sym_COMMA, + ACTIONS(2205), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1379), 1, + aux_sym_dictionary_repeat1, + STATE(1686), 1, + sym__comprehension_clauses, + [64366] = 3, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2209), 2, + sym__string_content, + sym__string_end, + ACTIONS(2207), 5, + anon_sym_LBRACE, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [64381] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2211), 1, + anon_sym_RPAREN, + ACTIONS(2213), 1, + anon_sym_COMMA, + STATE(1489), 1, + aux_sym_argument_list_repeat1, + [64406] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2032), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [64427] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2026), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [64448] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2215), 1, + anon_sym_COLON, + ACTIONS(1007), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [64471] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2217), 1, + anon_sym_RPAREN, + ACTIONS(2219), 1, + anon_sym_COMMA, + STATE(1464), 1, + aux_sym_argument_list_repeat1, + [64496] = 3, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2223), 2, + sym__string_content, + sym__string_end, + ACTIONS(2221), 5, + anon_sym_LBRACE, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [64511] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1927), 1, + anon_sym_as, + ACTIONS(1935), 1, + anon_sym_and, + ACTIONS(1937), 1, + anon_sym_or, + ACTIONS(2225), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [64530] = 3, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2229), 2, + sym__string_content, + sym__string_end, + ACTIONS(2227), 5, + anon_sym_LBRACE, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [64545] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2042), 6, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_or, + [64560] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2032), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [64581] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(2231), 1, + anon_sym_COMMA, + ACTIONS(2233), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1437), 1, + aux_sym_dictionary_repeat1, + STATE(1591), 1, + sym__comprehension_clauses, + [64606] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2036), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [64619] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2076), 1, + anon_sym_COLON, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2235), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [64642] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2237), 1, + anon_sym_COMMA, + ACTIONS(2239), 1, + anon_sym_COLON, + STATE(1385), 1, + aux_sym_assert_statement_repeat1, + [64667] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2241), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [64688] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2241), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_EQ, + [64709] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2243), 1, + anon_sym_RPAREN, + ACTIONS(2245), 1, + anon_sym_COMMA, + STATE(1445), 1, + aux_sym_argument_list_repeat1, + [64734] = 3, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2249), 2, + sym__string_content, + sym__string_end, + ACTIONS(2247), 5, + anon_sym_LBRACE, + anon_sym_LBRACE_LBRACE, + anon_sym_RBRACE_RBRACE, + sym_escape_sequence, + sym__not_escape_sequence, + [64749] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2062), 1, + anon_sym_as, + ACTIONS(2064), 1, + anon_sym_if, + ACTIONS(2066), 1, + anon_sym_and, + ACTIONS(2068), 1, + anon_sym_or, + ACTIONS(2251), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_COMMA, + [64770] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2026), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_RBRACK, + [64791] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1909), 1, + anon_sym_as, + ACTIONS(1919), 1, + anon_sym_and, + ACTIONS(1921), 1, + anon_sym_or, + ACTIONS(2225), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [64810] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2253), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [64835] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2241), 3, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_EQ, + [64856] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(2255), 1, + anon_sym_COMMA, + ACTIONS(2257), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1496), 1, + aux_sym_dictionary_repeat1, + STATE(1693), 1, + sym__comprehension_clauses, + [64881] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2194), 1, + anon_sym_RBRACK, + ACTIONS(2259), 1, + anon_sym_if, + ACTIONS(2262), 1, + anon_sym_async, + ACTIONS(2265), 1, + anon_sym_for, + STATE(1259), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [64902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [64915] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2038), 3, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_EQ, + [64936] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2268), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [64961] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2036), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [64974] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2028), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [64987] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(2270), 1, + anon_sym_COMMA, + ACTIONS(2272), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1400), 1, + aux_sym_dictionary_repeat1, + STATE(1611), 1, + sym__comprehension_clauses, + [65012] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2274), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [65037] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2276), 1, + anon_sym_as, + ACTIONS(2046), 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_if, + anon_sym_EQ, + [65056] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2279), 1, + anon_sym_COMMA, + ACTIONS(2281), 1, + anon_sym_COLON, + STATE(1435), 1, + aux_sym_match_statement_repeat1, + [65081] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2237), 1, + anon_sym_COMMA, + ACTIONS(2283), 1, + anon_sym_COLON, + STATE(1385), 1, + aux_sym_assert_statement_repeat1, + [65106] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2285), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [65131] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2287), 1, + anon_sym_RPAREN, + ACTIONS(2289), 1, + anon_sym_COMMA, + STATE(1450), 1, + aux_sym_argument_list_repeat1, + [65156] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2291), 1, + anon_sym_RPAREN, + ACTIONS(2293), 1, + anon_sym_COMMA, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [65181] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2291), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [65206] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_for, + ACTIONS(2159), 1, + anon_sym_RBRACK, + ACTIONS(2296), 1, + anon_sym_if, + STATE(1259), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [65227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2028), 7, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_EQ, + anon_sym_and, + anon_sym_or, + [65240] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2237), 1, + anon_sym_COMMA, + ACTIONS(2298), 1, + anon_sym_COLON, + STATE(1385), 1, + aux_sym_assert_statement_repeat1, + [65265] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1358), 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_if, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_and, + anon_sym_or, + [65278] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2237), 1, + anon_sym_COMMA, + ACTIONS(2300), 1, + anon_sym_COLON, + STATE(1385), 1, + aux_sym_assert_statement_repeat1, + [65303] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2302), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [65328] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2304), 1, + anon_sym_RPAREN, + ACTIONS(2306), 1, + anon_sym_COMMA, + STATE(1421), 1, + aux_sym_argument_list_repeat1, + [65353] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1931), 1, + anon_sym_async, + ACTIONS(1933), 1, + anon_sym_for, + ACTIONS(2183), 1, + anon_sym_RBRACK, + ACTIONS(2296), 1, + anon_sym_if, + STATE(1274), 3, + sym_for_in_clause, + sym_if_clause, + aux_sym__comprehension_clauses_repeat1, + [65374] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2308), 1, + anon_sym_RPAREN, + ACTIONS(2310), 1, + anon_sym_COMMA, + STATE(1418), 1, + aux_sym_argument_list_repeat1, + [65399] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2312), 1, + anon_sym_COMMA, + ACTIONS(2314), 1, + anon_sym_COLON, + STATE(1376), 1, + aux_sym_match_statement_repeat1, + [65424] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1915), 1, + anon_sym_async, + ACTIONS(1917), 1, + anon_sym_for, + ACTIONS(2316), 1, + anon_sym_COMMA, + ACTIONS(2318), 1, + anon_sym_RBRACE, + STATE(1224), 1, + sym_for_in_clause, + STATE(1409), 1, + aux_sym_dictionary_repeat1, + STATE(1607), 1, + sym__comprehension_clauses, + [65449] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2320), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65469] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2322), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [65489] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2324), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [65509] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(993), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [65529] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_AT, + ACTIONS(2326), 1, + anon_sym_async, + ACTIONS(2328), 1, + anon_sym_def, + STATE(624), 1, + sym_function_definition, + STATE(1324), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [65549] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2330), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65569] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2332), 1, + anon_sym_COMMA, + STATE(1291), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2335), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [65585] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2337), 3, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + [65603] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(2339), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [65623] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2339), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65643] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2341), 1, + anon_sym_COMMA, + STATE(1296), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2343), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [65659] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2345), 1, + anon_sym_COMMA, + STATE(1291), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2347), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [65675] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2339), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [65695] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(43), 1, + anon_sym_AT, + ACTIONS(2349), 1, + anon_sym_async, + ACTIONS(2351), 1, + anon_sym_def, + STATE(636), 1, + sym_function_definition, + STATE(1324), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [65715] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2353), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2355), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65755] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_COMMA, + STATE(1291), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2359), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [65771] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2361), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [65791] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2363), 2, + anon_sym_COMMA, + anon_sym_COLON, + [65811] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2365), 2, + anon_sym_COMMA, + anon_sym_COLON, + [65831] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2365), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65851] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2324), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [65871] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2367), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2034), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [65887] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2370), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2335), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [65903] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2072), 1, + anon_sym_as, + ACTIONS(2074), 1, + anon_sym_if, + ACTIONS(2080), 1, + anon_sym_and, + ACTIONS(2082), 1, + anon_sym_or, + ACTIONS(1007), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [65923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2373), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2347), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [65939] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2330), 2, + anon_sym_COMMA, + anon_sym_COLON, + [65959] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2034), 2, + anon_sym_COMMA, + anon_sym_COLON, + [65979] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2375), 1, + anon_sym_COMMA, + STATE(1307), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(909), 4, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_RBRACE, + sym_type_conversion, + [65995] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2377), 1, + anon_sym_COMMA, + STATE(1319), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2379), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [66011] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2361), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66031] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2165), 1, + anon_sym_as, + ACTIONS(2167), 1, + anon_sym_if, + ACTIONS(2169), 1, + anon_sym_and, + ACTIONS(2171), 1, + anon_sym_or, + ACTIONS(2381), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66051] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2383), 1, + anon_sym_COMMA, + STATE(1301), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2379), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [66067] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2381), 2, + anon_sym_COMMA, + anon_sym_COLON, + [66087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2385), 1, + anon_sym_COMMA, + STATE(1308), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2359), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [66103] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2324), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [66123] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2387), 1, + anon_sym_COMMA, + STATE(1310), 1, + aux_sym_for_in_clause_repeat1, + ACTIONS(2343), 4, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [66139] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2225), 1, + anon_sym_COLON, + ACTIONS(2389), 1, + anon_sym_else, + [66161] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2126), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [66181] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2393), 1, + anon_sym_AT, + ACTIONS(2391), 2, + anon_sym_async, + anon_sym_def, + STATE(1324), 2, + sym_decorator, + aux_sym_decorated_definition_repeat1, + [66196] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2396), 1, + anon_sym_else, + [66215] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [66226] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2398), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [66237] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2225), 1, + anon_sym_COLON, + [66256] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACE, + [66267] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2402), 1, + anon_sym_COLON, + [66286] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2404), 1, + anon_sym_COMMA, + ACTIONS(2406), 1, + anon_sym_if, + ACTIONS(2408), 1, + anon_sym_COLON, + STATE(1361), 1, + aux_sym_case_clause_repeat1, + STATE(1644), 1, + sym_if_clause, + [66305] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 1, + anon_sym_if, + ACTIONS(2410), 1, + anon_sym_COMMA, + ACTIONS(2412), 1, + anon_sym_COLON, + STATE(1361), 1, + aux_sym_case_clause_repeat1, + STATE(1642), 1, + sym_if_clause, + [66324] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2414), 1, + anon_sym_COLON, + [66343] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2128), 1, + anon_sym_COMMA, + ACTIONS(2134), 1, + anon_sym_COLON, + ACTIONS(2406), 1, + anon_sym_if, + STATE(1332), 1, + aux_sym_case_clause_repeat1, + STATE(1634), 1, + sym_if_clause, + [66362] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2416), 1, + anon_sym_COLON, + [66381] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2418), 1, + anon_sym_COLON, + [66400] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2389), 1, + anon_sym_else, + [66419] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2420), 1, + anon_sym_COLON, + [66438] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2422), 1, + anon_sym_else, + [66457] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2424), 1, + anon_sym_else, + [66476] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2426), 1, + anon_sym_COLON, + [66495] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2400), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [66506] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2335), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [66517] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2428), 1, + anon_sym_else, + [66536] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2430), 1, + anon_sym_else, + [66555] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2398), 5, + anon_sym_COMMA, + anon_sym_if, + anon_sym_async, + anon_sym_for, + anon_sym_RBRACK, + [66566] = 5, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2432), 1, + anon_sym_LBRACE, + ACTIONS(2434), 1, + anon_sym_RBRACE, + ACTIONS(2436), 1, + aux_sym_format_specifier_token1, + STATE(1351), 2, + sym_format_expression, + aux_sym_format_specifier_repeat1, + [66583] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2438), 1, + anon_sym_COLON, + [66602] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 1, + anon_sym_if, + ACTIONS(2440), 1, + anon_sym_COMMA, + ACTIONS(2442), 1, + anon_sym_COLON, + STATE(1361), 1, + aux_sym_case_clause_repeat1, + STATE(1570), 1, + sym_if_clause, + [66621] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2406), 1, + anon_sym_if, + ACTIONS(2444), 1, + anon_sym_COMMA, + ACTIONS(2446), 1, + anon_sym_COLON, + STATE(1361), 1, + aux_sym_case_clause_repeat1, + STATE(1576), 1, + sym_if_clause, + [66640] = 5, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2448), 1, + anon_sym_LBRACE, + ACTIONS(2451), 1, + anon_sym_RBRACE, + ACTIONS(2453), 1, + aux_sym_format_specifier_token1, + STATE(1351), 2, + sym_format_expression, + aux_sym_format_specifier_repeat1, + [66657] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1969), 1, + anon_sym_as, + ACTIONS(1971), 1, + anon_sym_if, + ACTIONS(1975), 1, + anon_sym_and, + ACTIONS(1977), 1, + anon_sym_or, + ACTIONS(2456), 1, + anon_sym_RBRACE, + [66676] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2130), 1, + anon_sym_as, + ACTIONS(2136), 1, + anon_sym_and, + ACTIONS(2138), 1, + anon_sym_or, + ACTIONS(2140), 1, + anon_sym_if, + ACTIONS(2458), 1, + anon_sym_else, + [66695] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, + anon_sym_COLON, + ACTIONS(2462), 1, + anon_sym_EQ, + ACTIONS(2464), 1, + anon_sym_RBRACE, + ACTIONS(2466), 1, + sym_type_conversion, + STATE(1641), 1, + sym_format_specifier, + [66714] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2145), 1, + anon_sym_COMMA, + ACTIONS(2147), 1, + anon_sym_COLON, + ACTIONS(2406), 1, + anon_sym_if, + STATE(1350), 1, + aux_sym_case_clause_repeat1, + STATE(1654), 1, + sym_if_clause, + [66733] = 5, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2432), 1, + anon_sym_LBRACE, + ACTIONS(2468), 1, + anon_sym_RBRACE, + ACTIONS(2470), 1, + aux_sym_format_specifier_token1, + STATE(1347), 2, + sym_format_expression, + aux_sym_format_specifier_repeat1, + [66750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2474), 1, + anon_sym_COMMA, + STATE(1363), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2472), 2, + sym__newline, + anon_sym_SEMI, + [66764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2099), 1, + anon_sym_COMMA, + STATE(1362), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2476), 2, + sym__newline, + anon_sym_SEMI, + [66778] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, + anon_sym_COLON, + ACTIONS(2478), 1, + anon_sym_RBRACE, + ACTIONS(2480), 1, + sym_type_conversion, + STATE(1554), 1, + sym_format_specifier, + [66794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2482), 1, + anon_sym_COMMA, + STATE(1362), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(991), 2, + sym__newline, + anon_sym_SEMI, + [66808] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2484), 1, + anon_sym_COMMA, + STATE(1361), 1, + aux_sym_case_clause_repeat1, + ACTIONS(2487), 2, + anon_sym_if, + anon_sym_COLON, + [66822] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2489), 1, + anon_sym_COMMA, + STATE(1362), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2034), 2, + sym__newline, + anon_sym_SEMI, + [66836] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2494), 1, + anon_sym_COMMA, + STATE(1363), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2492), 2, + sym__newline, + anon_sym_SEMI, + [66850] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2499), 1, + anon_sym_COLON, + ACTIONS(2501), 1, + anon_sym_EQ, + ACTIONS(2497), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [66864] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2505), 1, + anon_sym_COMMA, + STATE(1367), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2503), 2, + sym__newline, + anon_sym_SEMI, + [66878] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2099), 1, + anon_sym_COMMA, + STATE(1362), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(2507), 2, + sym__newline, + anon_sym_SEMI, + [66892] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2511), 1, + anon_sym_COMMA, + STATE(1363), 1, + aux_sym_print_statement_repeat1, + ACTIONS(2509), 2, + sym__newline, + anon_sym_SEMI, + [66906] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2513), 1, + anon_sym_COMMA, + STATE(1362), 1, + aux_sym_assert_statement_repeat1, + ACTIONS(909), 2, + sym__newline, + anon_sym_SEMI, + [66920] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(777), 1, + anon_sym_RPAREN, + ACTIONS(2515), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [66933] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2320), 1, + anon_sym_RPAREN, + ACTIONS(2517), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [66946] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COMMA, + ACTIONS(2520), 1, + anon_sym_in, + STATE(1073), 1, + aux_sym__patterns_repeat1, + [66959] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2524), 1, + anon_sym_EQ, + ACTIONS(2522), 2, + sym__newline, + anon_sym_SEMI, + [66970] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2526), 1, + anon_sym_SEMI, + ACTIONS(2529), 1, + sym__newline, + STATE(1373), 1, + aux_sym__simple_statements_repeat1, + [66983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COMMA, + ACTIONS(2531), 1, + anon_sym_in, + STATE(1073), 1, + aux_sym__patterns_repeat1, + [66996] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2533), 1, + anon_sym_SEMI, + ACTIONS(2535), 1, + sym__newline, + STATE(1383), 1, + aux_sym__simple_statements_repeat1, + [67009] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2537), 1, + anon_sym_COMMA, + ACTIONS(2539), 1, + anon_sym_COLON, + STATE(1411), 1, + aux_sym_match_statement_repeat1, + [67022] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2541), 1, + anon_sym_SEMI, + ACTIONS(2543), 1, + sym__newline, + STATE(1483), 1, + aux_sym__simple_statements_repeat1, + [67035] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2545), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [67048] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(903), 1, + anon_sym_RBRACE, + ACTIONS(2547), 1, + anon_sym_COMMA, + STATE(1432), 1, + aux_sym_dictionary_repeat1, + [67061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1907), 1, + anon_sym_COMMA, + ACTIONS(1923), 1, + anon_sym_RBRACE, + STATE(1381), 1, + aux_sym__collection_elements_repeat1, + [67074] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(891), 1, + anon_sym_RBRACE, + ACTIONS(2549), 1, + anon_sym_COMMA, + STATE(1389), 1, + aux_sym__collection_elements_repeat1, + [67087] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1905), 1, + anon_sym_COLON, + ACTIONS(2551), 1, + anon_sym_COMMA, + STATE(1424), 1, + aux_sym__parameters_repeat1, + [67100] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(597), 1, + sym__newline, + ACTIONS(2553), 1, + anon_sym_SEMI, + STATE(1373), 1, + aux_sym__simple_statements_repeat1, + [67113] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COMMA, + ACTIONS(2555), 1, + anon_sym_in, + STATE(1073), 1, + aux_sym__patterns_repeat1, + [67126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(909), 1, + anon_sym_COLON, + ACTIONS(2557), 1, + anon_sym_COMMA, + STATE(1388), 1, + aux_sym_assert_statement_repeat1, + [67139] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 1, + anon_sym_RBRACK, + ACTIONS(2559), 1, + anon_sym_COMMA, + STATE(1386), 1, + aux_sym__patterns_repeat1, + [67152] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2270), 1, + anon_sym_COMMA, + ACTIONS(2272), 1, + anon_sym_RBRACE, + STATE(1400), 1, + aux_sym_dictionary_repeat1, + [67165] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2034), 1, + anon_sym_COLON, + ACTIONS(2562), 1, + anon_sym_COMMA, + STATE(1388), 1, + aux_sym_assert_statement_repeat1, + [67178] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 1, + anon_sym_RBRACE, + ACTIONS(2565), 1, + anon_sym_COMMA, + STATE(1389), 1, + aux_sym__collection_elements_repeat1, + [67191] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RPAREN, + ACTIONS(2163), 1, + anon_sym_COMMA, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [67204] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2568), 1, + anon_sym_COMMA, + ACTIONS(2571), 1, + anon_sym_COLON, + STATE(1391), 1, + aux_sym_with_clause_repeat1, + [67217] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2573), 1, + anon_sym_RPAREN, + ACTIONS(2575), 1, + anon_sym_COMMA, + STATE(1465), 1, + aux_sym__patterns_repeat1, + [67230] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 1, + anon_sym_RPAREN, + ACTIONS(2579), 1, + anon_sym_COMMA, + STATE(1393), 1, + aux_sym__parameters_repeat1, + [67243] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2584), 1, + anon_sym_EQ, + ACTIONS(2582), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [67254] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2571), 1, + anon_sym_RPAREN, + ACTIONS(2586), 1, + anon_sym_COMMA, + STATE(1395), 1, + aux_sym_with_clause_repeat1, + [67267] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 1, + anon_sym_RBRACK, + ACTIONS(2589), 1, + anon_sym_COMMA, + STATE(1396), 1, + aux_sym__collection_elements_repeat1, + [67280] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(995), 1, + anon_sym_RPAREN, + ACTIONS(2592), 1, + anon_sym_COMMA, + STATE(1395), 1, + aux_sym_with_clause_repeat1, + [67293] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2594), 1, + anon_sym_EQ, + ACTIONS(2582), 2, + anon_sym_COMMA, + anon_sym_COLON, + [67304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2316), 1, + anon_sym_COMMA, + ACTIONS(2318), 1, + anon_sym_RBRACE, + STATE(1409), 1, + aux_sym_dictionary_repeat1, + [67317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(907), 1, + anon_sym_RBRACE, + ACTIONS(2596), 1, + anon_sym_COMMA, + STATE(1432), 1, + aux_sym_dictionary_repeat1, + [67330] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COMMA, + ACTIONS(2598), 1, + anon_sym_in, + STATE(1073), 1, + aux_sym__patterns_repeat1, + [67343] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1905), 1, + anon_sym_RPAREN, + ACTIONS(2600), 1, + anon_sym_COMMA, + STATE(1393), 1, + aux_sym__parameters_repeat1, + [67356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COMMA, + ACTIONS(2602), 1, + anon_sym_in, + STATE(1073), 1, + aux_sym__patterns_repeat1, + [67369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1122), 1, + anon_sym_RBRACK, + ACTIONS(2604), 1, + anon_sym_COMMA, + STATE(1386), 1, + aux_sym__patterns_repeat1, + [67382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2606), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [67395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2608), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [67408] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(891), 1, + anon_sym_RBRACK, + ACTIONS(2610), 1, + anon_sym_COMMA, + STATE(1396), 1, + aux_sym__collection_elements_repeat1, + [67421] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2612), 1, + anon_sym_COLON, + ACTIONS(2497), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [67432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(917), 1, + anon_sym_RBRACE, + ACTIONS(2614), 1, + anon_sym_COMMA, + STATE(1432), 1, + aux_sym_dictionary_repeat1, + [67445] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2616), 1, + anon_sym_RPAREN, + ACTIONS(2618), 1, + anon_sym_COMMA, + STATE(1402), 1, + aux_sym__parameters_repeat1, + [67458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2620), 1, + anon_sym_COMMA, + ACTIONS(2623), 1, + anon_sym_COLON, + STATE(1411), 1, + aux_sym_match_statement_repeat1, + [67471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2625), 1, + anon_sym_COMMA, + ACTIONS(2627), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [67484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2304), 1, + anon_sym_RPAREN, + ACTIONS(2306), 1, + anon_sym_COMMA, + STATE(1421), 1, + aux_sym_argument_list_repeat1, + [67497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2629), 1, + anon_sym_RPAREN, + ACTIONS(2631), 1, + anon_sym_COMMA, + STATE(1423), 1, + aux_sym_argument_list_repeat1, + [67510] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2633), 1, + anon_sym_COMMA, + ACTIONS(2635), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [67523] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2637), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [67536] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2118), 1, + anon_sym_COMMA, + ACTIONS(2120), 1, + anon_sym_RBRACK, + STATE(1426), 1, + aux_sym_subscript_repeat1, + [67549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(769), 1, + anon_sym_RPAREN, + ACTIONS(2639), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [67562] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COMMA, + ACTIONS(2641), 1, + anon_sym_in, + STATE(1073), 1, + aux_sym__patterns_repeat1, + [67575] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2643), 3, + anon_sym_async, + anon_sym_def, + anon_sym_AT, + [67584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(787), 1, + anon_sym_RPAREN, + ACTIONS(2645), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [67597] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2122), 1, + anon_sym_COMMA, + ACTIONS(2124), 1, + anon_sym_RBRACK, + STATE(1412), 1, + aux_sym_subscript_repeat1, + [67610] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(785), 1, + anon_sym_RPAREN, + ACTIONS(2647), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [67623] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 1, + anon_sym_COLON, + ACTIONS(2649), 1, + anon_sym_COMMA, + STATE(1424), 1, + aux_sym__parameters_repeat1, + [67636] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2652), 1, + anon_sym_COMMA, + ACTIONS(2654), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [67649] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2656), 1, + anon_sym_COMMA, + ACTIONS(2658), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [67662] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(999), 1, + anon_sym_COLON, + ACTIONS(2660), 1, + anon_sym_COMMA, + STATE(1391), 1, + aux_sym_with_clause_repeat1, + [67675] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2573), 1, + anon_sym_RBRACK, + ACTIONS(2662), 1, + anon_sym_COMMA, + STATE(1404), 1, + aux_sym__patterns_repeat1, + [67688] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2664), 1, + anon_sym_RPAREN, + ACTIONS(2666), 1, + anon_sym_COMMA, + STATE(1397), 1, + aux_sym_with_clause_repeat1, + [67701] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1923), 1, + anon_sym_RBRACK, + ACTIONS(1925), 1, + anon_sym_COMMA, + STATE(1407), 1, + aux_sym__collection_elements_repeat1, + [67714] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2668), 1, + anon_sym_RPAREN, + ACTIONS(2670), 1, + anon_sym_COMMA, + STATE(1369), 1, + aux_sym_argument_list_repeat1, + [67727] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2672), 1, + anon_sym_COMMA, + ACTIONS(2675), 1, + anon_sym_RBRACE, + STATE(1432), 1, + aux_sym_dictionary_repeat1, + [67740] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2308), 1, + anon_sym_RPAREN, + ACTIONS(2310), 1, + anon_sym_COMMA, + STATE(1418), 1, + aux_sym_argument_list_repeat1, + [67753] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COMMA, + ACTIONS(2677), 1, + anon_sym_in, + STATE(1073), 1, + aux_sym__patterns_repeat1, + [67766] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2679), 1, + anon_sym_COMMA, + ACTIONS(2681), 1, + anon_sym_COLON, + STATE(1411), 1, + aux_sym_match_statement_repeat1, + [67779] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + anon_sym_RPAREN, + ACTIONS(2201), 1, + anon_sym_COMMA, + STATE(1476), 1, + aux_sym_argument_list_repeat1, + [67792] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(915), 1, + anon_sym_RBRACE, + ACTIONS(2683), 1, + anon_sym_COMMA, + STATE(1432), 1, + aux_sym_dictionary_repeat1, + [67805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2685), 1, + anon_sym_RPAREN, + ACTIONS(2687), 1, + anon_sym_COMMA, + STATE(1482), 1, + aux_sym_argument_list_repeat1, + [67818] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2231), 1, + anon_sym_COMMA, + ACTIONS(2233), 1, + anon_sym_RBRACE, + STATE(1437), 1, + aux_sym_dictionary_repeat1, + [67831] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2689), 1, + anon_sym_COMMA, + ACTIONS(2691), 1, + anon_sym_COLON, + STATE(1427), 1, + aux_sym_with_clause_repeat1, + [67844] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2070), 1, + anon_sym_COMMA, + ACTIONS(2078), 1, + anon_sym_RBRACK, + STATE(1495), 1, + aux_sym_subscript_repeat1, + [67857] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 1, + anon_sym_RPAREN, + ACTIONS(2693), 1, + anon_sym_COMMA, + STATE(1442), 1, + aux_sym__collection_elements_repeat1, + [67870] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 1, + anon_sym_RPAREN, + ACTIONS(2696), 1, + anon_sym_COMMA, + STATE(1443), 1, + aux_sym__patterns_repeat1, + [67883] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2179), 1, + anon_sym_COMMA, + ACTIONS(2181), 1, + anon_sym_RBRACE, + STATE(1452), 1, + aux_sym_dictionary_repeat1, + [67896] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(799), 1, + anon_sym_RPAREN, + ACTIONS(2699), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [67909] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2701), 1, + anon_sym_COMMA, + ACTIONS(2703), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [67922] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2705), 1, + anon_sym_COMMA, + ACTIONS(2707), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [67935] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(797), 1, + anon_sym_RPAREN, + ACTIONS(2709), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [67948] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(803), 1, + anon_sym_RPAREN, + ACTIONS(2711), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [67961] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(805), 1, + anon_sym_RPAREN, + ACTIONS(2713), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [67974] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2715), 1, + anon_sym_COMMA, + ACTIONS(2717), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [67987] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(911), 1, + anon_sym_RBRACE, + ACTIONS(2719), 1, + anon_sym_COMMA, + STATE(1432), 1, + aux_sym_dictionary_repeat1, + [68000] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2721), 1, + anon_sym_EQ, + ACTIONS(2497), 2, + anon_sym_COMMA, + anon_sym_COLON, + [68011] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2153), 1, + anon_sym_COMMA, + ACTIONS(2155), 1, + anon_sym_RBRACK, + STATE(1446), 1, + aux_sym_subscript_repeat1, + [68024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2337), 3, + anon_sym_COMMA, + anon_sym_if, + anon_sym_COLON, + [68033] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2723), 1, + anon_sym_RPAREN, + ACTIONS(2725), 1, + anon_sym_COMMA, + STATE(1449), 1, + aux_sym_argument_list_repeat1, + [68046] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2217), 1, + anon_sym_RPAREN, + ACTIONS(2219), 1, + anon_sym_COMMA, + STATE(1464), 1, + aux_sym_argument_list_repeat1, + [68059] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2727), 1, + anon_sym_RPAREN, + ACTIONS(2729), 1, + anon_sym_COMMA, + STATE(1466), 1, + aux_sym_argument_list_repeat1, + [68072] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2287), 1, + anon_sym_RPAREN, + ACTIONS(2289), 1, + anon_sym_COMMA, + STATE(1450), 1, + aux_sym_argument_list_repeat1, + [68085] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(897), 1, + anon_sym_RBRACE, + ACTIONS(2731), 1, + anon_sym_COMMA, + STATE(1432), 1, + aux_sym_dictionary_repeat1, + [68098] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2149), 1, + anon_sym_COMMA, + ACTIONS(2151), 1, + anon_sym_RBRACK, + STATE(1469), 1, + aux_sym_subscript_repeat1, + [68111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, + anon_sym_COLON, + ACTIONS(2733), 1, + anon_sym_RBRACE, + STATE(1657), 1, + sym_format_specifier, + [68124] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2616), 1, + anon_sym_COLON, + ACTIONS(2735), 1, + anon_sym_COMMA, + STATE(1382), 1, + aux_sym__parameters_repeat1, + [68137] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(757), 1, + anon_sym_RPAREN, + ACTIONS(2737), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [68150] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1122), 1, + anon_sym_RPAREN, + ACTIONS(2739), 1, + anon_sym_COMMA, + STATE(1443), 1, + aux_sym__patterns_repeat1, + [68163] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(765), 1, + anon_sym_RPAREN, + ACTIONS(2741), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [68176] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 1, + anon_sym_RPAREN, + ACTIONS(2245), 1, + anon_sym_COMMA, + STATE(1445), 1, + aux_sym_argument_list_repeat1, + [68189] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2743), 1, + anon_sym_COMMA, + ACTIONS(2745), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [68202] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2747), 1, + anon_sym_COMMA, + ACTIONS(2749), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [68215] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(891), 1, + anon_sym_RPAREN, + ACTIONS(2751), 1, + anon_sym_COMMA, + STATE(1442), 1, + aux_sym__collection_elements_repeat1, + [68228] = 3, + ACTIONS(1943), 1, + sym_comment, + ACTIONS(2755), 1, + aux_sym_format_specifier_token1, + ACTIONS(2753), 2, + anon_sym_LBRACE, + anon_sym_RBRACE, + [68239] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2175), 1, + anon_sym_COMMA, + ACTIONS(2177), 1, + anon_sym_RBRACE, + STATE(1460), 1, + aux_sym_dictionary_repeat1, + [68252] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2757), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [68265] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2759), 1, + anon_sym_COMMA, + ACTIONS(2761), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [68278] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2163), 1, + anon_sym_COMMA, + ACTIONS(2763), 1, + anon_sym_RPAREN, + STATE(1470), 1, + aux_sym__collection_elements_repeat1, + [68291] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(755), 1, + anon_sym_RPAREN, + ACTIONS(2765), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [68304] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2203), 1, + anon_sym_COMMA, + ACTIONS(2205), 1, + anon_sym_RBRACE, + STATE(1379), 1, + aux_sym_dictionary_repeat1, + [68317] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2767), 1, + anon_sym_RPAREN, + ACTIONS(2769), 1, + anon_sym_COMMA, + STATE(1448), 1, + aux_sym_argument_list_repeat1, + [68330] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2101), 1, + anon_sym_COMMA, + ACTIONS(2103), 1, + anon_sym_RBRACK, + STATE(1474), 1, + aux_sym_subscript_repeat1, + [68343] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2460), 1, + anon_sym_COLON, + ACTIONS(2478), 1, + anon_sym_RBRACE, + STATE(1554), 1, + sym_format_specifier, + [68356] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1873), 1, + anon_sym_COMMA, + ACTIONS(2771), 1, + anon_sym_in, + STATE(1073), 1, + aux_sym__patterns_repeat1, + [68369] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(793), 1, + anon_sym_RPAREN, + ACTIONS(2773), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [68382] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(595), 1, + sym__newline, + ACTIONS(2775), 1, + anon_sym_SEMI, + STATE(1373), 1, + aux_sym__simple_statements_repeat1, + [68395] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2777), 1, + anon_sym_COMMA, + ACTIONS(2779), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [68408] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2781), 1, + anon_sym_COMMA, + ACTIONS(2783), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [68421] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2785), 1, + anon_sym_COMMA, + ACTIONS(2787), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [68434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(763), 1, + anon_sym_RPAREN, + ACTIONS(2789), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [68447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2793), 1, + anon_sym_in, + ACTIONS(2791), 2, + sym__newline, + anon_sym_SEMI, + [68458] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(807), 1, + anon_sym_RPAREN, + ACTIONS(2795), 1, + anon_sym_COMMA, + STATE(1370), 1, + aux_sym_argument_list_repeat1, + [68471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2255), 1, + anon_sym_COMMA, + ACTIONS(2257), 1, + anon_sym_RBRACE, + STATE(1496), 1, + aux_sym_dictionary_repeat1, + [68484] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2087), 1, + anon_sym_COMMA, + ACTIONS(2089), 1, + anon_sym_RBRACK, + STATE(1484), 1, + aux_sym_subscript_repeat1, + [68497] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2797), 1, + anon_sym_COMMA, + ACTIONS(2800), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [68510] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2802), 1, + anon_sym_RPAREN, + ACTIONS(2804), 1, + anon_sym_COMMA, + STATE(1487), 1, + aux_sym_argument_list_repeat1, + [68523] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_RPAREN, + ACTIONS(2213), 1, + anon_sym_COMMA, + STATE(1489), 1, + aux_sym_argument_list_repeat1, + [68536] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2806), 1, + anon_sym_COMMA, + ACTIONS(2808), 1, + anon_sym_RBRACK, + STATE(1492), 1, + aux_sym_subscript_repeat1, + [68549] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(883), 1, + anon_sym_RBRACE, + ACTIONS(2810), 1, + anon_sym_COMMA, + STATE(1432), 1, + aux_sym_dictionary_repeat1, + [68562] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 2, + anon_sym_COMMA, + anon_sym_COLON, + [68570] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2812), 1, + anon_sym_LPAREN, + STATE(1540), 1, + sym_parameters, + [68580] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2814), 2, + sym__newline, + anon_sym_SEMI, + [68588] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2816), 2, + sym__newline, + anon_sym_SEMI, + [68596] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2529), 2, + sym__newline, + anon_sym_SEMI, + [68604] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2818), 2, + sym__newline, + anon_sym_SEMI, + [68612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68620] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2820), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68628] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2235), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68636] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2822), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [68644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2812), 1, + anon_sym_LPAREN, + STATE(1528), 1, + sym_parameters, + [68654] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2812), 1, + anon_sym_LPAREN, + STATE(1529), 1, + sym_parameters, + [68664] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68672] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2320), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68680] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2058), 2, + sym__newline, + anon_sym_SEMI, + [68688] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1845), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68704] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2824), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [68712] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2826), 2, + sym__newline, + anon_sym_SEMI, + [68720] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [68728] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [68736] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68744] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2571), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68760] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68768] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68776] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2824), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [68784] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2571), 2, + anon_sym_COMMA, + anon_sym_COLON, + [68792] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1811), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68800] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2830), 1, + anon_sym_COLON, + ACTIONS(2832), 1, + anon_sym_DASH_GT, + [68810] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1082), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68818] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2834), 1, + anon_sym_COLON, + ACTIONS(2836), 1, + anon_sym_DASH_GT, + [68828] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2838), 1, + anon_sym_COLON, + ACTIONS(2840), 1, + anon_sym_DASH_GT, + [68838] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2497), 2, + anon_sym_COMMA, + anon_sym_COLON, + [68846] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2842), 2, + anon_sym_COLON, + anon_sym_DASH_GT, + [68854] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1845), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68862] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2844), 2, + sym__newline, + anon_sym_SEMI, + [68870] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1881), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2497), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68886] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2114), 2, + sym__newline, + anon_sym_SEMI, + [68894] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2116), 2, + sym__newline, + anon_sym_SEMI, + [68902] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2577), 2, + anon_sym_COMMA, + anon_sym_COLON, + [68910] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68918] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2848), 1, + anon_sym_COLON, + ACTIONS(2850), 1, + anon_sym_DASH_GT, + [68928] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2828), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68936] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2675), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [68944] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2324), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68952] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2852), 2, + sym__newline, + anon_sym_SEMI, + [68960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2846), 2, + anon_sym_COMMA, + anon_sym_COLON, + [68968] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2824), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [68976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2582), 2, + anon_sym_COMMA, + anon_sym_COLON, + [68984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2812), 1, + anon_sym_LPAREN, + STATE(1526), 1, + sym_parameters, + [68994] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2497), 2, + anon_sym_COMMA, + anon_sym_COLON, + [69002] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1026), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + [69010] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2287), 1, + anon_sym_RPAREN, + [69017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2854), 1, + anon_sym_COLON, + [69024] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2856), 1, + anon_sym_COLON, + [69031] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2733), 1, + anon_sym_RBRACE, + [69038] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2858), 1, + anon_sym_RBRACE, + [69045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2860), 1, + anon_sym_RBRACE, + [69052] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2862), 1, + anon_sym_RBRACK, + [69059] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2243), 1, + anon_sym_RPAREN, + [69066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2217), 1, + anon_sym_RPAREN, + [69073] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2864), 1, + anon_sym_COLON, + [69080] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2866), 1, + anon_sym_COLON, + [69087] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2868), 1, + anon_sym_RBRACE, + [69094] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2870), 1, + anon_sym_RBRACE, + [69101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2872), 1, + anon_sym_RBRACK, + [69108] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2874), 1, + anon_sym_RPAREN, + [69115] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2876), 1, + anon_sym_in, + [69122] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2878), 1, + sym_identifier, + [69129] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2880), 1, + anon_sym_RBRACK, + [69136] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2882), 1, + anon_sym_RBRACK, + [69143] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2884), 1, + anon_sym_COLON, + [69150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2886), 1, + anon_sym_COLON, + [69157] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2888), 1, + anon_sym_COLON, + [69164] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2890), 1, + anon_sym_COLON, + [69171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2892), 1, + anon_sym_COLON_EQ, + [69178] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2181), 1, + anon_sym_RBRACE, + [69185] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2894), 1, + anon_sym_COLON, + [69192] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2896), 1, + anon_sym_RPAREN, + [69199] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2898), 1, + anon_sym_COLON, + [69206] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2900), 1, + anon_sym_COLON, + [69213] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2902), 1, + anon_sym_RBRACK, + [69220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2904), 1, + anon_sym_COLON, + [69227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 1, + anon_sym_RBRACE, + [69234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2906), 1, + anon_sym_RBRACK, + [69241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2908), 1, + anon_sym_RBRACE, + [69248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2910), 1, + sym_identifier, + [69255] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2912), 1, + anon_sym_RPAREN, + [69262] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2914), 1, + anon_sym_in, + [69269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2916), 1, + anon_sym_RBRACK, + [69276] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2641), 1, + anon_sym_in, + [69283] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2918), 1, + anon_sym_RBRACE, + [69290] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_RBRACE, + [69297] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2922), 1, + anon_sym_COLON_EQ, + [69304] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2308), 1, + anon_sym_RPAREN, + [69311] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2677), 1, + anon_sym_in, + [69318] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2924), 1, + anon_sym_COLON, + [69325] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2926), 1, + anon_sym_COLON_EQ, + [69332] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2928), 1, + anon_sym_RBRACE, + [69339] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2930), 1, + anon_sym_in, + [69346] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2932), 1, + anon_sym_RPAREN, + [69353] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2934), 1, + sym_identifier, + [69360] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2936), 1, + anon_sym_for, + [69367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2199), 1, + anon_sym_RPAREN, + [69374] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2938), 1, + anon_sym_RPAREN, + [69381] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2940), 1, + anon_sym_COLON, + [69388] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2304), 1, + anon_sym_RPAREN, + [69395] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2942), 1, + sym_identifier, + [69402] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2944), 1, + anon_sym_RBRACE, + [69409] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2946), 1, + anon_sym_RBRACE, + [69416] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_COLON, + [69423] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2948), 1, + anon_sym_RBRACE, + [69430] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2950), 1, + anon_sym_RBRACE, + [69437] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2952), 1, + anon_sym_RBRACE, + [69444] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2954), 1, + anon_sym_COLON, + [69451] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2956), 1, + anon_sym_RBRACK, + [69458] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2958), 1, + anon_sym_COLON, + [69465] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2960), 1, + anon_sym_RBRACK, + [69472] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2177), 1, + anon_sym_RBRACE, + [69479] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_COLON, + [69486] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2964), 1, + anon_sym_RBRACK, + [69493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 1, + anon_sym_RPAREN, + [69500] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2298), 1, + anon_sym_COLON, + [69507] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 1, + anon_sym_RBRACK, + [69514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_in, + [69521] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2602), 1, + anon_sym_in, + [69528] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2972), 1, + anon_sym_COLON, + [69535] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2974), 1, + anon_sym_RBRACK, + [69542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2976), 1, + anon_sym_COLON, + [69549] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2300), 1, + anon_sym_COLON, + [69556] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2978), 1, + anon_sym_COLON_EQ, + [69563] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2980), 1, + anon_sym_COLON, + [69570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2982), 1, + sym_identifier, + [69577] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2598), 1, + anon_sym_in, + [69584] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2984), 1, + anon_sym_RBRACE, + [69591] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2986), 1, + anon_sym_COLON, + [69598] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2239), 1, + anon_sym_COLON, + [69605] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2988), 1, + anon_sym_RBRACK, + [69612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2990), 1, + anon_sym_RBRACK, + [69619] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2992), 1, + anon_sym_COLON, + [69626] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2205), 1, + anon_sym_RBRACE, + [69633] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2994), 1, + anon_sym_COLON, + [69640] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2478), 1, + anon_sym_RBRACE, + [69647] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2996), 1, + anon_sym_COLON, + [69654] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(997), 1, + anon_sym_COLON, + [69661] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2998), 1, + anon_sym_COLON, + [69668] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3000), 1, + anon_sym_COLON, + [69675] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3002), 1, + anon_sym_COLON, + [69682] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3004), 1, + anon_sym_COLON, + [69689] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3006), 1, + anon_sym_COLON_EQ, + [69696] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2318), 1, + anon_sym_RBRACE, + [69703] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2771), 1, + anon_sym_in, + [69710] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3008), 1, + anon_sym_COLON, + [69717] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3010), 1, + anon_sym_RPAREN, + [69724] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3012), 1, + anon_sym_COLON, + [69731] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3014), 1, + anon_sym_COLON, + [69738] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3016), 1, + anon_sym_RBRACK, + [69745] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3018), 1, + anon_sym_RBRACK, + [69752] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3020), 1, + anon_sym_RBRACE, + [69759] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3022), 1, + anon_sym_COLON, + [69766] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3024), 1, + anon_sym_RPAREN, + [69773] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2272), 1, + anon_sym_RBRACE, + [69780] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3026), 1, + anon_sym_RPAREN, + [69787] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3028), 1, + anon_sym_RBRACE, + [69794] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3030), 1, + anon_sym_RPAREN, + [69801] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_COLON, + [69808] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2555), 1, + anon_sym_in, + [69815] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3034), 1, + anon_sym_RPAREN, + [69822] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3036), 1, + anon_sym_RBRACK, + [69829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3038), 1, + anon_sym_COLON, + [69836] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3040), 1, + anon_sym_COLON_EQ, + [69843] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(973), 1, + anon_sym_def, + [69850] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2257), 1, + anon_sym_RBRACE, + [69857] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3042), 1, + anon_sym_RBRACE, + [69864] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3044), 1, + sym_identifier, + [69871] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3046), 1, + anon_sym_in, + [69878] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3048), 1, + anon_sym_RBRACE, + [69885] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3050), 1, + anon_sym_COLON_EQ, + [69892] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3052), 1, + sym_identifier, + [69899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3054), 1, + anon_sym_in, + [69906] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3056), 1, + ts_builtin_sym_end, + [69913] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3058), 1, + anon_sym_RBRACE, + [69920] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3060), 1, + sym_identifier, + [69927] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3062), 1, + sym_identifier, + [69934] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3064), 1, + anon_sym_in, + [69941] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3066), 1, + sym_identifier, + [69948] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3068), 1, + sym_identifier, + [69955] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3070), 1, + anon_sym_RBRACE, + [69962] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2531), 1, + anon_sym_in, + [69969] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(983), 1, + anon_sym_def, + [69976] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2211), 1, + anon_sym_RPAREN, + [69983] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2520), 1, + anon_sym_in, + [69990] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3072), 1, + anon_sym_for, + [69997] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3074), 1, + anon_sym_RBRACE, + [70004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3076), 1, + anon_sym_RBRACE, +}; + +static const uint32_t ts_small_parse_table_map[] = { + [SMALL_STATE(124)] = 0, + [SMALL_STATE(125)] = 109, + [SMALL_STATE(126)] = 222, + [SMALL_STATE(127)] = 331, + [SMALL_STATE(128)] = 440, + [SMALL_STATE(129)] = 553, + [SMALL_STATE(130)] = 666, + [SMALL_STATE(131)] = 779, + [SMALL_STATE(132)] = 894, + [SMALL_STATE(133)] = 1007, + [SMALL_STATE(134)] = 1120, + [SMALL_STATE(135)] = 1233, + [SMALL_STATE(136)] = 1346, + [SMALL_STATE(137)] = 1459, + [SMALL_STATE(138)] = 1574, + [SMALL_STATE(139)] = 1687, + [SMALL_STATE(140)] = 1799, + [SMALL_STATE(141)] = 1911, + [SMALL_STATE(142)] = 2009, + [SMALL_STATE(143)] = 2107, + [SMALL_STATE(144)] = 2219, + [SMALL_STATE(145)] = 2331, + [SMALL_STATE(146)] = 2443, + [SMALL_STATE(147)] = 2555, + [SMALL_STATE(148)] = 2667, + [SMALL_STATE(149)] = 2774, + [SMALL_STATE(150)] = 2881, + [SMALL_STATE(151)] = 2988, + [SMALL_STATE(152)] = 3095, + [SMALL_STATE(153)] = 3202, + [SMALL_STATE(154)] = 3309, + [SMALL_STATE(155)] = 3416, + [SMALL_STATE(156)] = 3520, + [SMALL_STATE(157)] = 3624, + [SMALL_STATE(158)] = 3728, + [SMALL_STATE(159)] = 3832, + [SMALL_STATE(160)] = 3936, + [SMALL_STATE(161)] = 4040, + [SMALL_STATE(162)] = 4144, + [SMALL_STATE(163)] = 4248, + [SMALL_STATE(164)] = 4352, + [SMALL_STATE(165)] = 4456, + [SMALL_STATE(166)] = 4560, + [SMALL_STATE(167)] = 4664, + [SMALL_STATE(168)] = 4768, + [SMALL_STATE(169)] = 4872, + [SMALL_STATE(170)] = 4976, + [SMALL_STATE(171)] = 5080, + [SMALL_STATE(172)] = 5184, + [SMALL_STATE(173)] = 5288, + [SMALL_STATE(174)] = 5392, + [SMALL_STATE(175)] = 5496, + [SMALL_STATE(176)] = 5600, + [SMALL_STATE(177)] = 5704, + [SMALL_STATE(178)] = 5808, + [SMALL_STATE(179)] = 5912, + [SMALL_STATE(180)] = 6016, + [SMALL_STATE(181)] = 6120, + [SMALL_STATE(182)] = 6224, + [SMALL_STATE(183)] = 6328, + [SMALL_STATE(184)] = 6429, + [SMALL_STATE(185)] = 6532, + [SMALL_STATE(186)] = 6634, + [SMALL_STATE(187)] = 6736, + [SMALL_STATE(188)] = 6834, + [SMALL_STATE(189)] = 6934, + [SMALL_STATE(190)] = 7032, + [SMALL_STATE(191)] = 7130, + [SMALL_STATE(192)] = 7230, + [SMALL_STATE(193)] = 7328, + [SMALL_STATE(194)] = 7428, + [SMALL_STATE(195)] = 7526, + [SMALL_STATE(196)] = 7628, + [SMALL_STATE(197)] = 7728, + [SMALL_STATE(198)] = 7830, + [SMALL_STATE(199)] = 7932, + [SMALL_STATE(200)] = 8030, + [SMALL_STATE(201)] = 8132, + [SMALL_STATE(202)] = 8232, + [SMALL_STATE(203)] = 8332, + [SMALL_STATE(204)] = 8434, + [SMALL_STATE(205)] = 8534, + [SMALL_STATE(206)] = 8634, + [SMALL_STATE(207)] = 8736, + [SMALL_STATE(208)] = 8838, + [SMALL_STATE(209)] = 8938, + [SMALL_STATE(210)] = 9036, + [SMALL_STATE(211)] = 9136, + [SMALL_STATE(212)] = 9236, + [SMALL_STATE(213)] = 9336, + [SMALL_STATE(214)] = 9438, + [SMALL_STATE(215)] = 9540, + [SMALL_STATE(216)] = 9640, + [SMALL_STATE(217)] = 9738, + [SMALL_STATE(218)] = 9838, + [SMALL_STATE(219)] = 9935, + [SMALL_STATE(220)] = 10032, + [SMALL_STATE(221)] = 10129, + [SMALL_STATE(222)] = 10226, + [SMALL_STATE(223)] = 10323, + [SMALL_STATE(224)] = 10420, + [SMALL_STATE(225)] = 10517, + [SMALL_STATE(226)] = 10614, + [SMALL_STATE(227)] = 10711, + [SMALL_STATE(228)] = 10808, + [SMALL_STATE(229)] = 10905, + [SMALL_STATE(230)] = 11002, + [SMALL_STATE(231)] = 11095, + [SMALL_STATE(232)] = 11192, + [SMALL_STATE(233)] = 11289, + [SMALL_STATE(234)] = 11386, + [SMALL_STATE(235)] = 11479, + [SMALL_STATE(236)] = 11576, + [SMALL_STATE(237)] = 11673, + [SMALL_STATE(238)] = 11770, + [SMALL_STATE(239)] = 11867, + [SMALL_STATE(240)] = 11964, + [SMALL_STATE(241)] = 12060, + [SMALL_STATE(242)] = 12156, + [SMALL_STATE(243)] = 12252, + [SMALL_STATE(244)] = 12348, + [SMALL_STATE(245)] = 12444, + [SMALL_STATE(246)] = 12540, + [SMALL_STATE(247)] = 12634, + [SMALL_STATE(248)] = 12728, + [SMALL_STATE(249)] = 12822, + [SMALL_STATE(250)] = 12916, + [SMALL_STATE(251)] = 13012, + [SMALL_STATE(252)] = 13106, + [SMALL_STATE(253)] = 13202, + [SMALL_STATE(254)] = 13298, + [SMALL_STATE(255)] = 13394, + [SMALL_STATE(256)] = 13490, + [SMALL_STATE(257)] = 13586, + [SMALL_STATE(258)] = 13680, + [SMALL_STATE(259)] = 13776, + [SMALL_STATE(260)] = 13870, + [SMALL_STATE(261)] = 13966, + [SMALL_STATE(262)] = 14062, + [SMALL_STATE(263)] = 14158, + [SMALL_STATE(264)] = 14254, + [SMALL_STATE(265)] = 14350, + [SMALL_STATE(266)] = 14446, + [SMALL_STATE(267)] = 14516, + [SMALL_STATE(268)] = 14612, + [SMALL_STATE(269)] = 14708, + [SMALL_STATE(270)] = 14778, + [SMALL_STATE(271)] = 14869, + [SMALL_STATE(272)] = 14960, + [SMALL_STATE(273)] = 15053, + [SMALL_STATE(274)] = 15144, + [SMALL_STATE(275)] = 15235, + [SMALL_STATE(276)] = 15326, + [SMALL_STATE(277)] = 15419, + [SMALL_STATE(278)] = 15512, + [SMALL_STATE(279)] = 15605, + [SMALL_STATE(280)] = 15696, + [SMALL_STATE(281)] = 15789, + [SMALL_STATE(282)] = 15880, + [SMALL_STATE(283)] = 15971, + [SMALL_STATE(284)] = 16062, + [SMALL_STATE(285)] = 16153, + [SMALL_STATE(286)] = 16244, + [SMALL_STATE(287)] = 16337, + [SMALL_STATE(288)] = 16404, + [SMALL_STATE(289)] = 16497, + [SMALL_STATE(290)] = 16590, + [SMALL_STATE(291)] = 16683, + [SMALL_STATE(292)] = 16776, + [SMALL_STATE(293)] = 16867, + [SMALL_STATE(294)] = 16958, + [SMALL_STATE(295)] = 17051, + [SMALL_STATE(296)] = 17144, + [SMALL_STATE(297)] = 17235, + [SMALL_STATE(298)] = 17326, + [SMALL_STATE(299)] = 17417, + [SMALL_STATE(300)] = 17510, + [SMALL_STATE(301)] = 17603, + [SMALL_STATE(302)] = 17696, + [SMALL_STATE(303)] = 17787, + [SMALL_STATE(304)] = 17878, + [SMALL_STATE(305)] = 17969, + [SMALL_STATE(306)] = 18062, + [SMALL_STATE(307)] = 18153, + [SMALL_STATE(308)] = 18244, + [SMALL_STATE(309)] = 18335, + [SMALL_STATE(310)] = 18428, + [SMALL_STATE(311)] = 18521, + [SMALL_STATE(312)] = 18614, + [SMALL_STATE(313)] = 18704, + [SMALL_STATE(314)] = 18794, + [SMALL_STATE(315)] = 18884, + [SMALL_STATE(316)] = 18974, + [SMALL_STATE(317)] = 19064, + [SMALL_STATE(318)] = 19154, + [SMALL_STATE(319)] = 19244, + [SMALL_STATE(320)] = 19334, + [SMALL_STATE(321)] = 19424, + [SMALL_STATE(322)] = 19514, + [SMALL_STATE(323)] = 19578, + [SMALL_STATE(324)] = 19642, + [SMALL_STATE(325)] = 19732, + [SMALL_STATE(326)] = 19822, + [SMALL_STATE(327)] = 19912, + [SMALL_STATE(328)] = 20002, + [SMALL_STATE(329)] = 20092, + [SMALL_STATE(330)] = 20182, + [SMALL_STATE(331)] = 20272, + [SMALL_STATE(332)] = 20362, + [SMALL_STATE(333)] = 20452, + [SMALL_STATE(334)] = 20542, + [SMALL_STATE(335)] = 20629, + [SMALL_STATE(336)] = 20716, + [SMALL_STATE(337)] = 20803, + [SMALL_STATE(338)] = 20858, + [SMALL_STATE(339)] = 20947, + [SMALL_STATE(340)] = 21008, + [SMALL_STATE(341)] = 21095, + [SMALL_STATE(342)] = 21182, + [SMALL_STATE(343)] = 21269, + [SMALL_STATE(344)] = 21356, + [SMALL_STATE(345)] = 21443, + [SMALL_STATE(346)] = 21530, + [SMALL_STATE(347)] = 21617, + [SMALL_STATE(348)] = 21704, + [SMALL_STATE(349)] = 21791, + [SMALL_STATE(350)] = 21878, + [SMALL_STATE(351)] = 21965, + [SMALL_STATE(352)] = 22052, + [SMALL_STATE(353)] = 22139, + [SMALL_STATE(354)] = 22226, + [SMALL_STATE(355)] = 22313, + [SMALL_STATE(356)] = 22400, + [SMALL_STATE(357)] = 22487, + [SMALL_STATE(358)] = 22548, + [SMALL_STATE(359)] = 22603, + [SMALL_STATE(360)] = 22690, + [SMALL_STATE(361)] = 22777, + [SMALL_STATE(362)] = 22864, + [SMALL_STATE(363)] = 22951, + [SMALL_STATE(364)] = 23038, + [SMALL_STATE(365)] = 23125, + [SMALL_STATE(366)] = 23212, + [SMALL_STATE(367)] = 23299, + [SMALL_STATE(368)] = 23386, + [SMALL_STATE(369)] = 23473, + [SMALL_STATE(370)] = 23560, + [SMALL_STATE(371)] = 23647, + [SMALL_STATE(372)] = 23734, + [SMALL_STATE(373)] = 23821, + [SMALL_STATE(374)] = 23908, + [SMALL_STATE(375)] = 23995, + [SMALL_STATE(376)] = 24082, + [SMALL_STATE(377)] = 24169, + [SMALL_STATE(378)] = 24256, + [SMALL_STATE(379)] = 24343, + [SMALL_STATE(380)] = 24430, + [SMALL_STATE(381)] = 24517, + [SMALL_STATE(382)] = 24604, + [SMALL_STATE(383)] = 24691, + [SMALL_STATE(384)] = 24778, + [SMALL_STATE(385)] = 24865, + [SMALL_STATE(386)] = 24952, + [SMALL_STATE(387)] = 25039, + [SMALL_STATE(388)] = 25126, + [SMALL_STATE(389)] = 25213, + [SMALL_STATE(390)] = 25300, + [SMALL_STATE(391)] = 25387, + [SMALL_STATE(392)] = 25474, + [SMALL_STATE(393)] = 25561, + [SMALL_STATE(394)] = 25648, + [SMALL_STATE(395)] = 25735, + [SMALL_STATE(396)] = 25822, + [SMALL_STATE(397)] = 25909, + [SMALL_STATE(398)] = 25996, + [SMALL_STATE(399)] = 26057, + [SMALL_STATE(400)] = 26144, + [SMALL_STATE(401)] = 26231, + [SMALL_STATE(402)] = 26318, + [SMALL_STATE(403)] = 26405, + [SMALL_STATE(404)] = 26492, + [SMALL_STATE(405)] = 26579, + [SMALL_STATE(406)] = 26666, + [SMALL_STATE(407)] = 26753, + [SMALL_STATE(408)] = 26842, + [SMALL_STATE(409)] = 26929, + [SMALL_STATE(410)] = 27016, + [SMALL_STATE(411)] = 27103, + [SMALL_STATE(412)] = 27190, + [SMALL_STATE(413)] = 27245, + [SMALL_STATE(414)] = 27332, + [SMALL_STATE(415)] = 27419, + [SMALL_STATE(416)] = 27506, + [SMALL_STATE(417)] = 27593, + [SMALL_STATE(418)] = 27648, + [SMALL_STATE(419)] = 27735, + [SMALL_STATE(420)] = 27822, + [SMALL_STATE(421)] = 27877, + [SMALL_STATE(422)] = 27964, + [SMALL_STATE(423)] = 28051, + [SMALL_STATE(424)] = 28106, + [SMALL_STATE(425)] = 28161, + [SMALL_STATE(426)] = 28248, + [SMALL_STATE(427)] = 28335, + [SMALL_STATE(428)] = 28422, + [SMALL_STATE(429)] = 28483, + [SMALL_STATE(430)] = 28570, + [SMALL_STATE(431)] = 28657, + [SMALL_STATE(432)] = 28744, + [SMALL_STATE(433)] = 28831, + [SMALL_STATE(434)] = 28918, + [SMALL_STATE(435)] = 29005, + [SMALL_STATE(436)] = 29092, + [SMALL_STATE(437)] = 29179, + [SMALL_STATE(438)] = 29266, + [SMALL_STATE(439)] = 29353, + [SMALL_STATE(440)] = 29440, + [SMALL_STATE(441)] = 29527, + [SMALL_STATE(442)] = 29614, + [SMALL_STATE(443)] = 29668, + [SMALL_STATE(444)] = 29722, + [SMALL_STATE(445)] = 29776, + [SMALL_STATE(446)] = 29830, + [SMALL_STATE(447)] = 29884, + [SMALL_STATE(448)] = 29938, + [SMALL_STATE(449)] = 29992, + [SMALL_STATE(450)] = 30074, + [SMALL_STATE(451)] = 30156, + [SMALL_STATE(452)] = 30215, + [SMALL_STATE(453)] = 30274, + [SMALL_STATE(454)] = 30333, + [SMALL_STATE(455)] = 30412, + [SMALL_STATE(456)] = 30491, + [SMALL_STATE(457)] = 30570, + [SMALL_STATE(458)] = 30649, + [SMALL_STATE(459)] = 30728, + [SMALL_STATE(460)] = 30807, + [SMALL_STATE(461)] = 30866, + [SMALL_STATE(462)] = 30945, + [SMALL_STATE(463)] = 31024, + [SMALL_STATE(464)] = 31103, + [SMALL_STATE(465)] = 31182, + [SMALL_STATE(466)] = 31261, + [SMALL_STATE(467)] = 31320, + [SMALL_STATE(468)] = 31379, + [SMALL_STATE(469)] = 31438, + [SMALL_STATE(470)] = 31497, + [SMALL_STATE(471)] = 31576, + [SMALL_STATE(472)] = 31652, + [SMALL_STATE(473)] = 31706, + [SMALL_STATE(474)] = 31782, + [SMALL_STATE(475)] = 31858, + [SMALL_STATE(476)] = 31912, + [SMALL_STATE(477)] = 31959, + [SMALL_STATE(478)] = 32006, + [SMALL_STATE(479)] = 32059, + [SMALL_STATE(480)] = 32106, + [SMALL_STATE(481)] = 32159, + [SMALL_STATE(482)] = 32212, + [SMALL_STATE(483)] = 32265, + [SMALL_STATE(484)] = 32318, + [SMALL_STATE(485)] = 32371, + [SMALL_STATE(486)] = 32418, + [SMALL_STATE(487)] = 32465, + [SMALL_STATE(488)] = 32518, + [SMALL_STATE(489)] = 32565, + [SMALL_STATE(490)] = 32618, + [SMALL_STATE(491)] = 32671, + [SMALL_STATE(492)] = 32724, + [SMALL_STATE(493)] = 32771, + [SMALL_STATE(494)] = 32824, + [SMALL_STATE(495)] = 32877, + [SMALL_STATE(496)] = 32930, + [SMALL_STATE(497)] = 32977, + [SMALL_STATE(498)] = 33024, + [SMALL_STATE(499)] = 33077, + [SMALL_STATE(500)] = 33124, + [SMALL_STATE(501)] = 33177, + [SMALL_STATE(502)] = 33230, + [SMALL_STATE(503)] = 33283, + [SMALL_STATE(504)] = 33336, + [SMALL_STATE(505)] = 33382, + [SMALL_STATE(506)] = 33432, + [SMALL_STATE(507)] = 33478, + [SMALL_STATE(508)] = 33528, + [SMALL_STATE(509)] = 33578, + [SMALL_STATE(510)] = 33624, + [SMALL_STATE(511)] = 33670, + [SMALL_STATE(512)] = 33720, + [SMALL_STATE(513)] = 33770, + [SMALL_STATE(514)] = 33820, + [SMALL_STATE(515)] = 33870, + [SMALL_STATE(516)] = 33920, + [SMALL_STATE(517)] = 33970, + [SMALL_STATE(518)] = 34016, + [SMALL_STATE(519)] = 34066, + [SMALL_STATE(520)] = 34112, + [SMALL_STATE(521)] = 34162, + [SMALL_STATE(522)] = 34212, + [SMALL_STATE(523)] = 34257, + [SMALL_STATE(524)] = 34302, + [SMALL_STATE(525)] = 34347, + [SMALL_STATE(526)] = 34392, + [SMALL_STATE(527)] = 34437, + [SMALL_STATE(528)] = 34482, + [SMALL_STATE(529)] = 34527, + [SMALL_STATE(530)] = 34572, + [SMALL_STATE(531)] = 34617, + [SMALL_STATE(532)] = 34662, + [SMALL_STATE(533)] = 34707, + [SMALL_STATE(534)] = 34752, + [SMALL_STATE(535)] = 34797, + [SMALL_STATE(536)] = 34842, + [SMALL_STATE(537)] = 34887, + [SMALL_STATE(538)] = 34932, + [SMALL_STATE(539)] = 34977, + [SMALL_STATE(540)] = 35022, + [SMALL_STATE(541)] = 35067, + [SMALL_STATE(542)] = 35112, + [SMALL_STATE(543)] = 35157, + [SMALL_STATE(544)] = 35202, + [SMALL_STATE(545)] = 35271, + [SMALL_STATE(546)] = 35316, + [SMALL_STATE(547)] = 35361, + [SMALL_STATE(548)] = 35406, + [SMALL_STATE(549)] = 35451, + [SMALL_STATE(550)] = 35496, + [SMALL_STATE(551)] = 35541, + [SMALL_STATE(552)] = 35586, + [SMALL_STATE(553)] = 35631, + [SMALL_STATE(554)] = 35676, + [SMALL_STATE(555)] = 35721, + [SMALL_STATE(556)] = 35790, + [SMALL_STATE(557)] = 35835, + [SMALL_STATE(558)] = 35880, + [SMALL_STATE(559)] = 35925, + [SMALL_STATE(560)] = 35970, + [SMALL_STATE(561)] = 36015, + [SMALL_STATE(562)] = 36060, + [SMALL_STATE(563)] = 36105, + [SMALL_STATE(564)] = 36150, + [SMALL_STATE(565)] = 36195, + [SMALL_STATE(566)] = 36240, + [SMALL_STATE(567)] = 36285, + [SMALL_STATE(568)] = 36330, + [SMALL_STATE(569)] = 36375, + [SMALL_STATE(570)] = 36420, + [SMALL_STATE(571)] = 36465, + [SMALL_STATE(572)] = 36510, + [SMALL_STATE(573)] = 36555, + [SMALL_STATE(574)] = 36600, + [SMALL_STATE(575)] = 36645, + [SMALL_STATE(576)] = 36690, + [SMALL_STATE(577)] = 36735, + [SMALL_STATE(578)] = 36780, + [SMALL_STATE(579)] = 36825, + [SMALL_STATE(580)] = 36870, + [SMALL_STATE(581)] = 36915, + [SMALL_STATE(582)] = 36960, + [SMALL_STATE(583)] = 37005, + [SMALL_STATE(584)] = 37050, + [SMALL_STATE(585)] = 37095, + [SMALL_STATE(586)] = 37140, + [SMALL_STATE(587)] = 37185, + [SMALL_STATE(588)] = 37230, + [SMALL_STATE(589)] = 37275, + [SMALL_STATE(590)] = 37320, + [SMALL_STATE(591)] = 37364, + [SMALL_STATE(592)] = 37408, + [SMALL_STATE(593)] = 37452, + [SMALL_STATE(594)] = 37496, + [SMALL_STATE(595)] = 37540, + [SMALL_STATE(596)] = 37616, + [SMALL_STATE(597)] = 37660, + [SMALL_STATE(598)] = 37704, + [SMALL_STATE(599)] = 37748, + [SMALL_STATE(600)] = 37792, + [SMALL_STATE(601)] = 37836, + [SMALL_STATE(602)] = 37912, + [SMALL_STATE(603)] = 37956, + [SMALL_STATE(604)] = 38000, + [SMALL_STATE(605)] = 38044, + [SMALL_STATE(606)] = 38088, + [SMALL_STATE(607)] = 38132, + [SMALL_STATE(608)] = 38176, + [SMALL_STATE(609)] = 38220, + [SMALL_STATE(610)] = 38264, + [SMALL_STATE(611)] = 38308, + [SMALL_STATE(612)] = 38352, + [SMALL_STATE(613)] = 38396, + [SMALL_STATE(614)] = 38440, + [SMALL_STATE(615)] = 38484, + [SMALL_STATE(616)] = 38528, + [SMALL_STATE(617)] = 38572, + [SMALL_STATE(618)] = 38616, + [SMALL_STATE(619)] = 38660, + [SMALL_STATE(620)] = 38704, + [SMALL_STATE(621)] = 38748, + [SMALL_STATE(622)] = 38792, + [SMALL_STATE(623)] = 38836, + [SMALL_STATE(624)] = 38880, + [SMALL_STATE(625)] = 38924, + [SMALL_STATE(626)] = 38968, + [SMALL_STATE(627)] = 39012, + [SMALL_STATE(628)] = 39056, + [SMALL_STATE(629)] = 39100, + [SMALL_STATE(630)] = 39144, + [SMALL_STATE(631)] = 39188, + [SMALL_STATE(632)] = 39232, + [SMALL_STATE(633)] = 39276, + [SMALL_STATE(634)] = 39320, + [SMALL_STATE(635)] = 39364, + [SMALL_STATE(636)] = 39408, + [SMALL_STATE(637)] = 39452, + [SMALL_STATE(638)] = 39496, + [SMALL_STATE(639)] = 39540, + [SMALL_STATE(640)] = 39584, + [SMALL_STATE(641)] = 39628, + [SMALL_STATE(642)] = 39672, + [SMALL_STATE(643)] = 39733, + [SMALL_STATE(644)] = 39794, + [SMALL_STATE(645)] = 39855, + [SMALL_STATE(646)] = 39916, + [SMALL_STATE(647)] = 39977, + [SMALL_STATE(648)] = 40038, + [SMALL_STATE(649)] = 40099, + [SMALL_STATE(650)] = 40160, + [SMALL_STATE(651)] = 40221, + [SMALL_STATE(652)] = 40282, + [SMALL_STATE(653)] = 40335, + [SMALL_STATE(654)] = 40396, + [SMALL_STATE(655)] = 40457, + [SMALL_STATE(656)] = 40518, + [SMALL_STATE(657)] = 40579, + [SMALL_STATE(658)] = 40640, + [SMALL_STATE(659)] = 40701, + [SMALL_STATE(660)] = 40762, + [SMALL_STATE(661)] = 40827, + [SMALL_STATE(662)] = 40872, + [SMALL_STATE(663)] = 40917, + [SMALL_STATE(664)] = 40992, + [SMALL_STATE(665)] = 41053, + [SMALL_STATE(666)] = 41114, + [SMALL_STATE(667)] = 41179, + [SMALL_STATE(668)] = 41244, + [SMALL_STATE(669)] = 41305, + [SMALL_STATE(670)] = 41366, + [SMALL_STATE(671)] = 41427, + [SMALL_STATE(672)] = 41488, + [SMALL_STATE(673)] = 41553, + [SMALL_STATE(674)] = 41614, + [SMALL_STATE(675)] = 41675, + [SMALL_STATE(676)] = 41736, + [SMALL_STATE(677)] = 41797, + [SMALL_STATE(678)] = 41858, + [SMALL_STATE(679)] = 41919, + [SMALL_STATE(680)] = 41980, + [SMALL_STATE(681)] = 42041, + [SMALL_STATE(682)] = 42102, + [SMALL_STATE(683)] = 42163, + [SMALL_STATE(684)] = 42224, + [SMALL_STATE(685)] = 42291, + [SMALL_STATE(686)] = 42352, + [SMALL_STATE(687)] = 42413, + [SMALL_STATE(688)] = 42474, + [SMALL_STATE(689)] = 42539, + [SMALL_STATE(690)] = 42600, + [SMALL_STATE(691)] = 42661, + [SMALL_STATE(692)] = 42722, + [SMALL_STATE(693)] = 42783, + [SMALL_STATE(694)] = 42844, + [SMALL_STATE(695)] = 42905, + [SMALL_STATE(696)] = 42966, + [SMALL_STATE(697)] = 43027, + [SMALL_STATE(698)] = 43088, + [SMALL_STATE(699)] = 43133, + [SMALL_STATE(700)] = 43178, + [SMALL_STATE(701)] = 43239, + [SMALL_STATE(702)] = 43314, + [SMALL_STATE(703)] = 43375, + [SMALL_STATE(704)] = 43436, + [SMALL_STATE(705)] = 43497, + [SMALL_STATE(706)] = 43558, + [SMALL_STATE(707)] = 43619, + [SMALL_STATE(708)] = 43680, + [SMALL_STATE(709)] = 43733, + [SMALL_STATE(710)] = 43792, + [SMALL_STATE(711)] = 43853, + [SMALL_STATE(712)] = 43920, + [SMALL_STATE(713)] = 43981, + [SMALL_STATE(714)] = 44034, + [SMALL_STATE(715)] = 44095, + [SMALL_STATE(716)] = 44152, + [SMALL_STATE(717)] = 44217, + [SMALL_STATE(718)] = 44280, + [SMALL_STATE(719)] = 44341, + [SMALL_STATE(720)] = 44402, + [SMALL_STATE(721)] = 44465, + [SMALL_STATE(722)] = 44530, + [SMALL_STATE(723)] = 44591, + [SMALL_STATE(724)] = 44648, + [SMALL_STATE(725)] = 44709, + [SMALL_STATE(726)] = 44770, + [SMALL_STATE(727)] = 44823, + [SMALL_STATE(728)] = 44884, + [SMALL_STATE(729)] = 44951, + [SMALL_STATE(730)] = 45012, + [SMALL_STATE(731)] = 45073, + [SMALL_STATE(732)] = 45140, + [SMALL_STATE(733)] = 45199, + [SMALL_STATE(734)] = 45252, + [SMALL_STATE(735)] = 45305, + [SMALL_STATE(736)] = 45366, + [SMALL_STATE(737)] = 45427, + [SMALL_STATE(738)] = 45488, + [SMALL_STATE(739)] = 45549, + [SMALL_STATE(740)] = 45610, + [SMALL_STATE(741)] = 45671, + [SMALL_STATE(742)] = 45746, + [SMALL_STATE(743)] = 45807, + [SMALL_STATE(744)] = 45868, + [SMALL_STATE(745)] = 45929, + [SMALL_STATE(746)] = 45971, + [SMALL_STATE(747)] = 46013, + [SMALL_STATE(748)] = 46055, + [SMALL_STATE(749)] = 46097, + [SMALL_STATE(750)] = 46139, + [SMALL_STATE(751)] = 46181, + [SMALL_STATE(752)] = 46223, + [SMALL_STATE(753)] = 46281, + [SMALL_STATE(754)] = 46333, + [SMALL_STATE(755)] = 46375, + [SMALL_STATE(756)] = 46441, + [SMALL_STATE(757)] = 46483, + [SMALL_STATE(758)] = 46535, + [SMALL_STATE(759)] = 46577, + [SMALL_STATE(760)] = 46619, + [SMALL_STATE(761)] = 46675, + [SMALL_STATE(762)] = 46717, + [SMALL_STATE(763)] = 46781, + [SMALL_STATE(764)] = 46825, + [SMALL_STATE(765)] = 46869, + [SMALL_STATE(766)] = 46911, + [SMALL_STATE(767)] = 46953, + [SMALL_STATE(768)] = 46995, + [SMALL_STATE(769)] = 47037, + [SMALL_STATE(770)] = 47109, + [SMALL_STATE(771)] = 47171, + [SMALL_STATE(772)] = 47231, + [SMALL_STATE(773)] = 47273, + [SMALL_STATE(774)] = 47339, + [SMALL_STATE(775)] = 47381, + [SMALL_STATE(776)] = 47423, + [SMALL_STATE(777)] = 47465, + [SMALL_STATE(778)] = 47507, + [SMALL_STATE(779)] = 47549, + [SMALL_STATE(780)] = 47591, + [SMALL_STATE(781)] = 47633, + [SMALL_STATE(782)] = 47675, + [SMALL_STATE(783)] = 47735, + [SMALL_STATE(784)] = 47777, + [SMALL_STATE(785)] = 47819, + [SMALL_STATE(786)] = 47885, + [SMALL_STATE(787)] = 47927, + [SMALL_STATE(788)] = 47969, + [SMALL_STATE(789)] = 48011, + [SMALL_STATE(790)] = 48055, + [SMALL_STATE(791)] = 48097, + [SMALL_STATE(792)] = 48141, + [SMALL_STATE(793)] = 48183, + [SMALL_STATE(794)] = 48225, + [SMALL_STATE(795)] = 48267, + [SMALL_STATE(796)] = 48309, + [SMALL_STATE(797)] = 48351, + [SMALL_STATE(798)] = 48403, + [SMALL_STATE(799)] = 48445, + [SMALL_STATE(800)] = 48487, + [SMALL_STATE(801)] = 48529, + [SMALL_STATE(802)] = 48571, + [SMALL_STATE(803)] = 48613, + [SMALL_STATE(804)] = 48655, + [SMALL_STATE(805)] = 48697, + [SMALL_STATE(806)] = 48743, + [SMALL_STATE(807)] = 48785, + [SMALL_STATE(808)] = 48827, + [SMALL_STATE(809)] = 48869, + [SMALL_STATE(810)] = 48911, + [SMALL_STATE(811)] = 48985, + [SMALL_STATE(812)] = 49027, + [SMALL_STATE(813)] = 49069, + [SMALL_STATE(814)] = 49111, + [SMALL_STATE(815)] = 49153, + [SMALL_STATE(816)] = 49195, + [SMALL_STATE(817)] = 49237, + [SMALL_STATE(818)] = 49279, + [SMALL_STATE(819)] = 49321, + [SMALL_STATE(820)] = 49373, + [SMALL_STATE(821)] = 49431, + [SMALL_STATE(822)] = 49475, + [SMALL_STATE(823)] = 49541, + [SMALL_STATE(824)] = 49583, + [SMALL_STATE(825)] = 49635, + [SMALL_STATE(826)] = 49677, + [SMALL_STATE(827)] = 49721, + [SMALL_STATE(828)] = 49763, + [SMALL_STATE(829)] = 49807, + [SMALL_STATE(830)] = 49865, + [SMALL_STATE(831)] = 49909, + [SMALL_STATE(832)] = 49961, + [SMALL_STATE(833)] = 50003, + [SMALL_STATE(834)] = 50055, + [SMALL_STATE(835)] = 50101, + [SMALL_STATE(836)] = 50167, + [SMALL_STATE(837)] = 50223, + [SMALL_STATE(838)] = 50275, + [SMALL_STATE(839)] = 50317, + [SMALL_STATE(840)] = 50359, + [SMALL_STATE(841)] = 50423, + [SMALL_STATE(842)] = 50485, + [SMALL_STATE(843)] = 50545, + [SMALL_STATE(844)] = 50597, + [SMALL_STATE(845)] = 50663, + [SMALL_STATE(846)] = 50719, + [SMALL_STATE(847)] = 50783, + [SMALL_STATE(848)] = 50845, + [SMALL_STATE(849)] = 50887, + [SMALL_STATE(850)] = 50929, + [SMALL_STATE(851)] = 50971, + [SMALL_STATE(852)] = 51013, + [SMALL_STATE(853)] = 51055, + [SMALL_STATE(854)] = 51098, + [SMALL_STATE(855)] = 51139, + [SMALL_STATE(856)] = 51180, + [SMALL_STATE(857)] = 51221, + [SMALL_STATE(858)] = 51264, + [SMALL_STATE(859)] = 51309, + [SMALL_STATE(860)] = 51352, + [SMALL_STATE(861)] = 51397, + [SMALL_STATE(862)] = 51438, + [SMALL_STATE(863)] = 51479, + [SMALL_STATE(864)] = 51520, + [SMALL_STATE(865)] = 51561, + [SMALL_STATE(866)] = 51602, + [SMALL_STATE(867)] = 51643, + [SMALL_STATE(868)] = 51684, + [SMALL_STATE(869)] = 51727, + [SMALL_STATE(870)] = 51768, + [SMALL_STATE(871)] = 51809, + [SMALL_STATE(872)] = 51852, + [SMALL_STATE(873)] = 51903, + [SMALL_STATE(874)] = 51946, + [SMALL_STATE(875)] = 51989, + [SMALL_STATE(876)] = 52030, + [SMALL_STATE(877)] = 52071, + [SMALL_STATE(878)] = 52112, + [SMALL_STATE(879)] = 52153, + [SMALL_STATE(880)] = 52194, + [SMALL_STATE(881)] = 52235, + [SMALL_STATE(882)] = 52276, + [SMALL_STATE(883)] = 52317, + [SMALL_STATE(884)] = 52358, + [SMALL_STATE(885)] = 52399, + [SMALL_STATE(886)] = 52440, + [SMALL_STATE(887)] = 52481, + [SMALL_STATE(888)] = 52522, + [SMALL_STATE(889)] = 52563, + [SMALL_STATE(890)] = 52604, + [SMALL_STATE(891)] = 52669, + [SMALL_STATE(892)] = 52710, + [SMALL_STATE(893)] = 52751, + [SMALL_STATE(894)] = 52792, + [SMALL_STATE(895)] = 52833, + [SMALL_STATE(896)] = 52874, + [SMALL_STATE(897)] = 52915, + [SMALL_STATE(898)] = 52956, + [SMALL_STATE(899)] = 52997, + [SMALL_STATE(900)] = 53038, + [SMALL_STATE(901)] = 53079, + [SMALL_STATE(902)] = 53120, + [SMALL_STATE(903)] = 53161, + [SMALL_STATE(904)] = 53202, + [SMALL_STATE(905)] = 53261, + [SMALL_STATE(906)] = 53322, + [SMALL_STATE(907)] = 53385, + [SMALL_STATE(908)] = 53426, + [SMALL_STATE(909)] = 53481, + [SMALL_STATE(910)] = 53522, + [SMALL_STATE(911)] = 53563, + [SMALL_STATE(912)] = 53604, + [SMALL_STATE(913)] = 53645, + [SMALL_STATE(914)] = 53686, + [SMALL_STATE(915)] = 53727, + [SMALL_STATE(916)] = 53778, + [SMALL_STATE(917)] = 53819, + [SMALL_STATE(918)] = 53884, + [SMALL_STATE(919)] = 53925, + [SMALL_STATE(920)] = 53982, + [SMALL_STATE(921)] = 54033, + [SMALL_STATE(922)] = 54074, + [SMALL_STATE(923)] = 54115, + [SMALL_STATE(924)] = 54156, + [SMALL_STATE(925)] = 54197, + [SMALL_STATE(926)] = 54238, + [SMALL_STATE(927)] = 54279, + [SMALL_STATE(928)] = 54320, + [SMALL_STATE(929)] = 54361, + [SMALL_STATE(930)] = 54402, + [SMALL_STATE(931)] = 54443, + [SMALL_STATE(932)] = 54508, + [SMALL_STATE(933)] = 54549, + [SMALL_STATE(934)] = 54590, + [SMALL_STATE(935)] = 54631, + [SMALL_STATE(936)] = 54682, + [SMALL_STATE(937)] = 54739, + [SMALL_STATE(938)] = 54780, + [SMALL_STATE(939)] = 54845, + [SMALL_STATE(940)] = 54886, + [SMALL_STATE(941)] = 54927, + [SMALL_STATE(942)] = 54968, + [SMALL_STATE(943)] = 55009, + [SMALL_STATE(944)] = 55050, + [SMALL_STATE(945)] = 55091, + [SMALL_STATE(946)] = 55132, + [SMALL_STATE(947)] = 55173, + [SMALL_STATE(948)] = 55214, + [SMALL_STATE(949)] = 55255, + [SMALL_STATE(950)] = 55298, + [SMALL_STATE(951)] = 55339, + [SMALL_STATE(952)] = 55380, + [SMALL_STATE(953)] = 55423, + [SMALL_STATE(954)] = 55464, + [SMALL_STATE(955)] = 55507, + [SMALL_STATE(956)] = 55558, + [SMALL_STATE(957)] = 55599, + [SMALL_STATE(958)] = 55640, + [SMALL_STATE(959)] = 55681, + [SMALL_STATE(960)] = 55722, + [SMALL_STATE(961)] = 55763, + [SMALL_STATE(962)] = 55804, + [SMALL_STATE(963)] = 55847, + [SMALL_STATE(964)] = 55888, + [SMALL_STATE(965)] = 55929, + [SMALL_STATE(966)] = 55970, + [SMALL_STATE(967)] = 56011, + [SMALL_STATE(968)] = 56066, + [SMALL_STATE(969)] = 56117, + [SMALL_STATE(970)] = 56180, + [SMALL_STATE(971)] = 56223, + [SMALL_STATE(972)] = 56266, + [SMALL_STATE(973)] = 56307, + [SMALL_STATE(974)] = 56348, + [SMALL_STATE(975)] = 56389, + [SMALL_STATE(976)] = 56430, + [SMALL_STATE(977)] = 56471, + [SMALL_STATE(978)] = 56512, + [SMALL_STATE(979)] = 56571, + [SMALL_STATE(980)] = 56632, + [SMALL_STATE(981)] = 56672, + [SMALL_STATE(982)] = 56716, + [SMALL_STATE(983)] = 56756, + [SMALL_STATE(984)] = 56796, + [SMALL_STATE(985)] = 56836, + [SMALL_STATE(986)] = 56876, + [SMALL_STATE(987)] = 56916, + [SMALL_STATE(988)] = 56956, + [SMALL_STATE(989)] = 56996, + [SMALL_STATE(990)] = 57036, + [SMALL_STATE(991)] = 57076, + [SMALL_STATE(992)] = 57116, + [SMALL_STATE(993)] = 57156, + [SMALL_STATE(994)] = 57196, + [SMALL_STATE(995)] = 57236, + [SMALL_STATE(996)] = 57276, + [SMALL_STATE(997)] = 57316, + [SMALL_STATE(998)] = 57356, + [SMALL_STATE(999)] = 57396, + [SMALL_STATE(1000)] = 57436, + [SMALL_STATE(1001)] = 57476, + [SMALL_STATE(1002)] = 57516, + [SMALL_STATE(1003)] = 57556, + [SMALL_STATE(1004)] = 57596, + [SMALL_STATE(1005)] = 57636, + [SMALL_STATE(1006)] = 57678, + [SMALL_STATE(1007)] = 57718, + [SMALL_STATE(1008)] = 57758, + [SMALL_STATE(1009)] = 57798, + [SMALL_STATE(1010)] = 57842, + [SMALL_STATE(1011)] = 57882, + [SMALL_STATE(1012)] = 57922, + [SMALL_STATE(1013)] = 57962, + [SMALL_STATE(1014)] = 58002, + [SMALL_STATE(1015)] = 58042, + [SMALL_STATE(1016)] = 58082, + [SMALL_STATE(1017)] = 58122, + [SMALL_STATE(1018)] = 58162, + [SMALL_STATE(1019)] = 58202, + [SMALL_STATE(1020)] = 58242, + [SMALL_STATE(1021)] = 58282, + [SMALL_STATE(1022)] = 58322, + [SMALL_STATE(1023)] = 58362, + [SMALL_STATE(1024)] = 58402, + [SMALL_STATE(1025)] = 58442, + [SMALL_STATE(1026)] = 58482, + [SMALL_STATE(1027)] = 58522, + [SMALL_STATE(1028)] = 58562, + [SMALL_STATE(1029)] = 58602, + [SMALL_STATE(1030)] = 58646, + [SMALL_STATE(1031)] = 58686, + [SMALL_STATE(1032)] = 58726, + [SMALL_STATE(1033)] = 58766, + [SMALL_STATE(1034)] = 58810, + [SMALL_STATE(1035)] = 58850, + [SMALL_STATE(1036)] = 58890, + [SMALL_STATE(1037)] = 58930, + [SMALL_STATE(1038)] = 58970, + [SMALL_STATE(1039)] = 59010, + [SMALL_STATE(1040)] = 59050, + [SMALL_STATE(1041)] = 59090, + [SMALL_STATE(1042)] = 59130, + [SMALL_STATE(1043)] = 59170, + [SMALL_STATE(1044)] = 59210, + [SMALL_STATE(1045)] = 59251, + [SMALL_STATE(1046)] = 59292, + [SMALL_STATE(1047)] = 59333, + [SMALL_STATE(1048)] = 59374, + [SMALL_STATE(1049)] = 59415, + [SMALL_STATE(1050)] = 59456, + [SMALL_STATE(1051)] = 59497, + [SMALL_STATE(1052)] = 59538, + [SMALL_STATE(1053)] = 59573, + [SMALL_STATE(1054)] = 59602, + [SMALL_STATE(1055)] = 59631, + [SMALL_STATE(1056)] = 59666, + [SMALL_STATE(1057)] = 59701, + [SMALL_STATE(1058)] = 59736, + [SMALL_STATE(1059)] = 59765, + [SMALL_STATE(1060)] = 59794, + [SMALL_STATE(1061)] = 59822, + [SMALL_STATE(1062)] = 59850, + [SMALL_STATE(1063)] = 59898, + [SMALL_STATE(1064)] = 59926, + [SMALL_STATE(1065)] = 59954, + [SMALL_STATE(1066)] = 59982, + [SMALL_STATE(1067)] = 60016, + [SMALL_STATE(1068)] = 60044, + [SMALL_STATE(1069)] = 60078, + [SMALL_STATE(1070)] = 60112, + [SMALL_STATE(1071)] = 60140, + [SMALL_STATE(1072)] = 60168, + [SMALL_STATE(1073)] = 60196, + [SMALL_STATE(1074)] = 60224, + [SMALL_STATE(1075)] = 60258, + [SMALL_STATE(1076)] = 60292, + [SMALL_STATE(1077)] = 60320, + [SMALL_STATE(1078)] = 60348, + [SMALL_STATE(1079)] = 60376, + [SMALL_STATE(1080)] = 60410, + [SMALL_STATE(1081)] = 60438, + [SMALL_STATE(1082)] = 60466, + [SMALL_STATE(1083)] = 60494, + [SMALL_STATE(1084)] = 60537, + [SMALL_STATE(1085)] = 60560, + [SMALL_STATE(1086)] = 60603, + [SMALL_STATE(1087)] = 60634, + [SMALL_STATE(1088)] = 60677, + [SMALL_STATE(1089)] = 60710, + [SMALL_STATE(1090)] = 60753, + [SMALL_STATE(1091)] = 60796, + [SMALL_STATE(1092)] = 60827, + [SMALL_STATE(1093)] = 60850, + [SMALL_STATE(1094)] = 60895, + [SMALL_STATE(1095)] = 60918, + [SMALL_STATE(1096)] = 60961, + [SMALL_STATE(1097)] = 61006, + [SMALL_STATE(1098)] = 61051, + [SMALL_STATE(1099)] = 61094, + [SMALL_STATE(1100)] = 61117, + [SMALL_STATE(1101)] = 61150, + [SMALL_STATE(1102)] = 61181, + [SMALL_STATE(1103)] = 61224, + [SMALL_STATE(1104)] = 61267, + [SMALL_STATE(1105)] = 61307, + [SMALL_STATE(1106)] = 61344, + [SMALL_STATE(1107)] = 61381, + [SMALL_STATE(1108)] = 61406, + [SMALL_STATE(1109)] = 61443, + [SMALL_STATE(1110)] = 61480, + [SMALL_STATE(1111)] = 61514, + [SMALL_STATE(1112)] = 61548, + [SMALL_STATE(1113)] = 61588, + [SMALL_STATE(1114)] = 61628, + [SMALL_STATE(1115)] = 61668, + [SMALL_STATE(1116)] = 61708, + [SMALL_STATE(1117)] = 61748, + [SMALL_STATE(1118)] = 61788, + [SMALL_STATE(1119)] = 61828, + [SMALL_STATE(1120)] = 61865, + [SMALL_STATE(1121)] = 61902, + [SMALL_STATE(1122)] = 61939, + [SMALL_STATE(1123)] = 61976, + [SMALL_STATE(1124)] = 62013, + [SMALL_STATE(1125)] = 62050, + [SMALL_STATE(1126)] = 62087, + [SMALL_STATE(1127)] = 62111, + [SMALL_STATE(1128)] = 62135, + [SMALL_STATE(1129)] = 62159, + [SMALL_STATE(1130)] = 62183, + [SMALL_STATE(1131)] = 62211, + [SMALL_STATE(1132)] = 62235, + [SMALL_STATE(1133)] = 62259, + [SMALL_STATE(1134)] = 62283, + [SMALL_STATE(1135)] = 62307, + [SMALL_STATE(1136)] = 62331, + [SMALL_STATE(1137)] = 62355, + [SMALL_STATE(1138)] = 62379, + [SMALL_STATE(1139)] = 62403, + [SMALL_STATE(1140)] = 62427, + [SMALL_STATE(1141)] = 62451, + [SMALL_STATE(1142)] = 62475, + [SMALL_STATE(1143)] = 62498, + [SMALL_STATE(1144)] = 62515, + [SMALL_STATE(1145)] = 62530, + [SMALL_STATE(1146)] = 62553, + [SMALL_STATE(1147)] = 62576, + [SMALL_STATE(1148)] = 62591, + [SMALL_STATE(1149)] = 62614, + [SMALL_STATE(1150)] = 62631, + [SMALL_STATE(1151)] = 62650, + [SMALL_STATE(1152)] = 62667, + [SMALL_STATE(1153)] = 62688, + [SMALL_STATE(1154)] = 62707, + [SMALL_STATE(1155)] = 62722, + [SMALL_STATE(1156)] = 62739, + [SMALL_STATE(1157)] = 62754, + [SMALL_STATE(1158)] = 62771, + [SMALL_STATE(1159)] = 62794, + [SMALL_STATE(1160)] = 62815, + [SMALL_STATE(1161)] = 62836, + [SMALL_STATE(1162)] = 62859, + [SMALL_STATE(1163)] = 62882, + [SMALL_STATE(1164)] = 62908, + [SMALL_STATE(1165)] = 62922, + [SMALL_STATE(1166)] = 62950, + [SMALL_STATE(1167)] = 62968, + [SMALL_STATE(1168)] = 62988, + [SMALL_STATE(1169)] = 63002, + [SMALL_STATE(1170)] = 63016, + [SMALL_STATE(1171)] = 63044, + [SMALL_STATE(1172)] = 63060, + [SMALL_STATE(1173)] = 63086, + [SMALL_STATE(1174)] = 63106, + [SMALL_STATE(1175)] = 63120, + [SMALL_STATE(1176)] = 63134, + [SMALL_STATE(1177)] = 63160, + [SMALL_STATE(1178)] = 63178, + [SMALL_STATE(1179)] = 63206, + [SMALL_STATE(1180)] = 63220, + [SMALL_STATE(1181)] = 63236, + [SMALL_STATE(1182)] = 63256, + [SMALL_STATE(1183)] = 63282, + [SMALL_STATE(1184)] = 63308, + [SMALL_STATE(1185)] = 63330, + [SMALL_STATE(1186)] = 63350, + [SMALL_STATE(1187)] = 63370, + [SMALL_STATE(1188)] = 63396, + [SMALL_STATE(1189)] = 63418, + [SMALL_STATE(1190)] = 63440, + [SMALL_STATE(1191)] = 63466, + [SMALL_STATE(1192)] = 63488, + [SMALL_STATE(1193)] = 63508, + [SMALL_STATE(1194)] = 63522, + [SMALL_STATE(1195)] = 63544, + [SMALL_STATE(1196)] = 63572, + [SMALL_STATE(1197)] = 63600, + [SMALL_STATE(1198)] = 63622, + [SMALL_STATE(1199)] = 63650, + [SMALL_STATE(1200)] = 63670, + [SMALL_STATE(1201)] = 63692, + [SMALL_STATE(1202)] = 63712, + [SMALL_STATE(1203)] = 63730, + [SMALL_STATE(1204)] = 63758, + [SMALL_STATE(1205)] = 63774, + [SMALL_STATE(1206)] = 63790, + [SMALL_STATE(1207)] = 63818, + [SMALL_STATE(1208)] = 63838, + [SMALL_STATE(1209)] = 63858, + [SMALL_STATE(1210)] = 63874, + [SMALL_STATE(1211)] = 63896, + [SMALL_STATE(1212)] = 63918, + [SMALL_STATE(1213)] = 63932, + [SMALL_STATE(1214)] = 63954, + [SMALL_STATE(1215)] = 63970, + [SMALL_STATE(1216)] = 63998, + [SMALL_STATE(1217)] = 64019, + [SMALL_STATE(1218)] = 64040, + [SMALL_STATE(1219)] = 64065, + [SMALL_STATE(1220)] = 64086, + [SMALL_STATE(1221)] = 64103, + [SMALL_STATE(1222)] = 64128, + [SMALL_STATE(1223)] = 64153, + [SMALL_STATE(1224)] = 64174, + [SMALL_STATE(1225)] = 64195, + [SMALL_STATE(1226)] = 64218, + [SMALL_STATE(1227)] = 64239, + [SMALL_STATE(1228)] = 64258, + [SMALL_STATE(1229)] = 64275, + [SMALL_STATE(1230)] = 64288, + [SMALL_STATE(1231)] = 64303, + [SMALL_STATE(1232)] = 64328, + [SMALL_STATE(1233)] = 64341, + [SMALL_STATE(1234)] = 64366, + [SMALL_STATE(1235)] = 64381, + [SMALL_STATE(1236)] = 64406, + [SMALL_STATE(1237)] = 64427, + [SMALL_STATE(1238)] = 64448, + [SMALL_STATE(1239)] = 64471, + [SMALL_STATE(1240)] = 64496, + [SMALL_STATE(1241)] = 64511, + [SMALL_STATE(1242)] = 64530, + [SMALL_STATE(1243)] = 64545, + [SMALL_STATE(1244)] = 64560, + [SMALL_STATE(1245)] = 64581, + [SMALL_STATE(1246)] = 64606, + [SMALL_STATE(1247)] = 64619, + [SMALL_STATE(1248)] = 64642, + [SMALL_STATE(1249)] = 64667, + [SMALL_STATE(1250)] = 64688, + [SMALL_STATE(1251)] = 64709, + [SMALL_STATE(1252)] = 64734, + [SMALL_STATE(1253)] = 64749, + [SMALL_STATE(1254)] = 64770, + [SMALL_STATE(1255)] = 64791, + [SMALL_STATE(1256)] = 64810, + [SMALL_STATE(1257)] = 64835, + [SMALL_STATE(1258)] = 64856, + [SMALL_STATE(1259)] = 64881, + [SMALL_STATE(1260)] = 64902, + [SMALL_STATE(1261)] = 64915, + [SMALL_STATE(1262)] = 64936, + [SMALL_STATE(1263)] = 64961, + [SMALL_STATE(1264)] = 64974, + [SMALL_STATE(1265)] = 64987, + [SMALL_STATE(1266)] = 65012, + [SMALL_STATE(1267)] = 65037, + [SMALL_STATE(1268)] = 65056, + [SMALL_STATE(1269)] = 65081, + [SMALL_STATE(1270)] = 65106, + [SMALL_STATE(1271)] = 65131, + [SMALL_STATE(1272)] = 65156, + [SMALL_STATE(1273)] = 65181, + [SMALL_STATE(1274)] = 65206, + [SMALL_STATE(1275)] = 65227, + [SMALL_STATE(1276)] = 65240, + [SMALL_STATE(1277)] = 65265, + [SMALL_STATE(1278)] = 65278, + [SMALL_STATE(1279)] = 65303, + [SMALL_STATE(1280)] = 65328, + [SMALL_STATE(1281)] = 65353, + [SMALL_STATE(1282)] = 65374, + [SMALL_STATE(1283)] = 65399, + [SMALL_STATE(1284)] = 65424, + [SMALL_STATE(1285)] = 65449, + [SMALL_STATE(1286)] = 65469, + [SMALL_STATE(1287)] = 65489, + [SMALL_STATE(1288)] = 65509, + [SMALL_STATE(1289)] = 65529, + [SMALL_STATE(1290)] = 65549, + [SMALL_STATE(1291)] = 65569, + [SMALL_STATE(1292)] = 65585, + [SMALL_STATE(1293)] = 65603, + [SMALL_STATE(1294)] = 65623, + [SMALL_STATE(1295)] = 65643, + [SMALL_STATE(1296)] = 65659, + [SMALL_STATE(1297)] = 65675, + [SMALL_STATE(1298)] = 65695, + [SMALL_STATE(1299)] = 65715, + [SMALL_STATE(1300)] = 65735, + [SMALL_STATE(1301)] = 65755, + [SMALL_STATE(1302)] = 65771, + [SMALL_STATE(1303)] = 65791, + [SMALL_STATE(1304)] = 65811, + [SMALL_STATE(1305)] = 65831, + [SMALL_STATE(1306)] = 65851, + [SMALL_STATE(1307)] = 65871, + [SMALL_STATE(1308)] = 65887, + [SMALL_STATE(1309)] = 65903, + [SMALL_STATE(1310)] = 65923, + [SMALL_STATE(1311)] = 65939, + [SMALL_STATE(1312)] = 65959, + [SMALL_STATE(1313)] = 65979, + [SMALL_STATE(1314)] = 65995, + [SMALL_STATE(1315)] = 66011, + [SMALL_STATE(1316)] = 66031, + [SMALL_STATE(1317)] = 66051, + [SMALL_STATE(1318)] = 66067, + [SMALL_STATE(1319)] = 66087, + [SMALL_STATE(1320)] = 66103, + [SMALL_STATE(1321)] = 66123, + [SMALL_STATE(1322)] = 66139, + [SMALL_STATE(1323)] = 66161, + [SMALL_STATE(1324)] = 66181, + [SMALL_STATE(1325)] = 66196, + [SMALL_STATE(1326)] = 66215, + [SMALL_STATE(1327)] = 66226, + [SMALL_STATE(1328)] = 66237, + [SMALL_STATE(1329)] = 66256, + [SMALL_STATE(1330)] = 66267, + [SMALL_STATE(1331)] = 66286, + [SMALL_STATE(1332)] = 66305, + [SMALL_STATE(1333)] = 66324, + [SMALL_STATE(1334)] = 66343, + [SMALL_STATE(1335)] = 66362, + [SMALL_STATE(1336)] = 66381, + [SMALL_STATE(1337)] = 66400, + [SMALL_STATE(1338)] = 66419, + [SMALL_STATE(1339)] = 66438, + [SMALL_STATE(1340)] = 66457, + [SMALL_STATE(1341)] = 66476, + [SMALL_STATE(1342)] = 66495, + [SMALL_STATE(1343)] = 66506, + [SMALL_STATE(1344)] = 66517, + [SMALL_STATE(1345)] = 66536, + [SMALL_STATE(1346)] = 66555, + [SMALL_STATE(1347)] = 66566, + [SMALL_STATE(1348)] = 66583, + [SMALL_STATE(1349)] = 66602, + [SMALL_STATE(1350)] = 66621, + [SMALL_STATE(1351)] = 66640, + [SMALL_STATE(1352)] = 66657, + [SMALL_STATE(1353)] = 66676, + [SMALL_STATE(1354)] = 66695, + [SMALL_STATE(1355)] = 66714, + [SMALL_STATE(1356)] = 66733, + [SMALL_STATE(1357)] = 66750, + [SMALL_STATE(1358)] = 66764, + [SMALL_STATE(1359)] = 66778, + [SMALL_STATE(1360)] = 66794, + [SMALL_STATE(1361)] = 66808, + [SMALL_STATE(1362)] = 66822, + [SMALL_STATE(1363)] = 66836, + [SMALL_STATE(1364)] = 66850, + [SMALL_STATE(1365)] = 66864, + [SMALL_STATE(1366)] = 66878, + [SMALL_STATE(1367)] = 66892, + [SMALL_STATE(1368)] = 66906, + [SMALL_STATE(1369)] = 66920, + [SMALL_STATE(1370)] = 66933, + [SMALL_STATE(1371)] = 66946, + [SMALL_STATE(1372)] = 66959, + [SMALL_STATE(1373)] = 66970, + [SMALL_STATE(1374)] = 66983, + [SMALL_STATE(1375)] = 66996, + [SMALL_STATE(1376)] = 67009, + [SMALL_STATE(1377)] = 67022, + [SMALL_STATE(1378)] = 67035, + [SMALL_STATE(1379)] = 67048, + [SMALL_STATE(1380)] = 67061, + [SMALL_STATE(1381)] = 67074, + [SMALL_STATE(1382)] = 67087, + [SMALL_STATE(1383)] = 67100, + [SMALL_STATE(1384)] = 67113, + [SMALL_STATE(1385)] = 67126, + [SMALL_STATE(1386)] = 67139, + [SMALL_STATE(1387)] = 67152, + [SMALL_STATE(1388)] = 67165, + [SMALL_STATE(1389)] = 67178, + [SMALL_STATE(1390)] = 67191, + [SMALL_STATE(1391)] = 67204, + [SMALL_STATE(1392)] = 67217, + [SMALL_STATE(1393)] = 67230, + [SMALL_STATE(1394)] = 67243, + [SMALL_STATE(1395)] = 67254, + [SMALL_STATE(1396)] = 67267, + [SMALL_STATE(1397)] = 67280, + [SMALL_STATE(1398)] = 67293, + [SMALL_STATE(1399)] = 67304, + [SMALL_STATE(1400)] = 67317, + [SMALL_STATE(1401)] = 67330, + [SMALL_STATE(1402)] = 67343, + [SMALL_STATE(1403)] = 67356, + [SMALL_STATE(1404)] = 67369, + [SMALL_STATE(1405)] = 67382, + [SMALL_STATE(1406)] = 67395, + [SMALL_STATE(1407)] = 67408, + [SMALL_STATE(1408)] = 67421, + [SMALL_STATE(1409)] = 67432, + [SMALL_STATE(1410)] = 67445, + [SMALL_STATE(1411)] = 67458, + [SMALL_STATE(1412)] = 67471, + [SMALL_STATE(1413)] = 67484, + [SMALL_STATE(1414)] = 67497, + [SMALL_STATE(1415)] = 67510, + [SMALL_STATE(1416)] = 67523, + [SMALL_STATE(1417)] = 67536, + [SMALL_STATE(1418)] = 67549, + [SMALL_STATE(1419)] = 67562, + [SMALL_STATE(1420)] = 67575, + [SMALL_STATE(1421)] = 67584, + [SMALL_STATE(1422)] = 67597, + [SMALL_STATE(1423)] = 67610, + [SMALL_STATE(1424)] = 67623, + [SMALL_STATE(1425)] = 67636, + [SMALL_STATE(1426)] = 67649, + [SMALL_STATE(1427)] = 67662, + [SMALL_STATE(1428)] = 67675, + [SMALL_STATE(1429)] = 67688, + [SMALL_STATE(1430)] = 67701, + [SMALL_STATE(1431)] = 67714, + [SMALL_STATE(1432)] = 67727, + [SMALL_STATE(1433)] = 67740, + [SMALL_STATE(1434)] = 67753, + [SMALL_STATE(1435)] = 67766, + [SMALL_STATE(1436)] = 67779, + [SMALL_STATE(1437)] = 67792, + [SMALL_STATE(1438)] = 67805, + [SMALL_STATE(1439)] = 67818, + [SMALL_STATE(1440)] = 67831, + [SMALL_STATE(1441)] = 67844, + [SMALL_STATE(1442)] = 67857, + [SMALL_STATE(1443)] = 67870, + [SMALL_STATE(1444)] = 67883, + [SMALL_STATE(1445)] = 67896, + [SMALL_STATE(1446)] = 67909, + [SMALL_STATE(1447)] = 67922, + [SMALL_STATE(1448)] = 67935, + [SMALL_STATE(1449)] = 67948, + [SMALL_STATE(1450)] = 67961, + [SMALL_STATE(1451)] = 67974, + [SMALL_STATE(1452)] = 67987, + [SMALL_STATE(1453)] = 68000, + [SMALL_STATE(1454)] = 68011, + [SMALL_STATE(1455)] = 68024, + [SMALL_STATE(1456)] = 68033, + [SMALL_STATE(1457)] = 68046, + [SMALL_STATE(1458)] = 68059, + [SMALL_STATE(1459)] = 68072, + [SMALL_STATE(1460)] = 68085, + [SMALL_STATE(1461)] = 68098, + [SMALL_STATE(1462)] = 68111, + [SMALL_STATE(1463)] = 68124, + [SMALL_STATE(1464)] = 68137, + [SMALL_STATE(1465)] = 68150, + [SMALL_STATE(1466)] = 68163, + [SMALL_STATE(1467)] = 68176, + [SMALL_STATE(1468)] = 68189, + [SMALL_STATE(1469)] = 68202, + [SMALL_STATE(1470)] = 68215, + [SMALL_STATE(1471)] = 68228, + [SMALL_STATE(1472)] = 68239, + [SMALL_STATE(1473)] = 68252, + [SMALL_STATE(1474)] = 68265, + [SMALL_STATE(1475)] = 68278, + [SMALL_STATE(1476)] = 68291, + [SMALL_STATE(1477)] = 68304, + [SMALL_STATE(1478)] = 68317, + [SMALL_STATE(1479)] = 68330, + [SMALL_STATE(1480)] = 68343, + [SMALL_STATE(1481)] = 68356, + [SMALL_STATE(1482)] = 68369, + [SMALL_STATE(1483)] = 68382, + [SMALL_STATE(1484)] = 68395, + [SMALL_STATE(1485)] = 68408, + [SMALL_STATE(1486)] = 68421, + [SMALL_STATE(1487)] = 68434, + [SMALL_STATE(1488)] = 68447, + [SMALL_STATE(1489)] = 68458, + [SMALL_STATE(1490)] = 68471, + [SMALL_STATE(1491)] = 68484, + [SMALL_STATE(1492)] = 68497, + [SMALL_STATE(1493)] = 68510, + [SMALL_STATE(1494)] = 68523, + [SMALL_STATE(1495)] = 68536, + [SMALL_STATE(1496)] = 68549, + [SMALL_STATE(1497)] = 68562, + [SMALL_STATE(1498)] = 68570, + [SMALL_STATE(1499)] = 68580, + [SMALL_STATE(1500)] = 68588, + [SMALL_STATE(1501)] = 68596, + [SMALL_STATE(1502)] = 68604, + [SMALL_STATE(1503)] = 68612, + [SMALL_STATE(1504)] = 68620, + [SMALL_STATE(1505)] = 68628, + [SMALL_STATE(1506)] = 68636, + [SMALL_STATE(1507)] = 68644, + [SMALL_STATE(1508)] = 68654, + [SMALL_STATE(1509)] = 68664, + [SMALL_STATE(1510)] = 68672, + [SMALL_STATE(1511)] = 68680, + [SMALL_STATE(1512)] = 68688, + [SMALL_STATE(1513)] = 68696, + [SMALL_STATE(1514)] = 68704, + [SMALL_STATE(1515)] = 68712, + [SMALL_STATE(1516)] = 68720, + [SMALL_STATE(1517)] = 68728, + [SMALL_STATE(1518)] = 68736, + [SMALL_STATE(1519)] = 68744, + [SMALL_STATE(1520)] = 68752, + [SMALL_STATE(1521)] = 68760, + [SMALL_STATE(1522)] = 68768, + [SMALL_STATE(1523)] = 68776, + [SMALL_STATE(1524)] = 68784, + [SMALL_STATE(1525)] = 68792, + [SMALL_STATE(1526)] = 68800, + [SMALL_STATE(1527)] = 68810, + [SMALL_STATE(1528)] = 68818, + [SMALL_STATE(1529)] = 68828, + [SMALL_STATE(1530)] = 68838, + [SMALL_STATE(1531)] = 68846, + [SMALL_STATE(1532)] = 68854, + [SMALL_STATE(1533)] = 68862, + [SMALL_STATE(1534)] = 68870, + [SMALL_STATE(1535)] = 68878, + [SMALL_STATE(1536)] = 68886, + [SMALL_STATE(1537)] = 68894, + [SMALL_STATE(1538)] = 68902, + [SMALL_STATE(1539)] = 68910, + [SMALL_STATE(1540)] = 68918, + [SMALL_STATE(1541)] = 68928, + [SMALL_STATE(1542)] = 68936, + [SMALL_STATE(1543)] = 68944, + [SMALL_STATE(1544)] = 68952, + [SMALL_STATE(1545)] = 68960, + [SMALL_STATE(1546)] = 68968, + [SMALL_STATE(1547)] = 68976, + [SMALL_STATE(1548)] = 68984, + [SMALL_STATE(1549)] = 68994, + [SMALL_STATE(1550)] = 69002, + [SMALL_STATE(1551)] = 69010, + [SMALL_STATE(1552)] = 69017, + [SMALL_STATE(1553)] = 69024, + [SMALL_STATE(1554)] = 69031, + [SMALL_STATE(1555)] = 69038, + [SMALL_STATE(1556)] = 69045, + [SMALL_STATE(1557)] = 69052, + [SMALL_STATE(1558)] = 69059, + [SMALL_STATE(1559)] = 69066, + [SMALL_STATE(1560)] = 69073, + [SMALL_STATE(1561)] = 69080, + [SMALL_STATE(1562)] = 69087, + [SMALL_STATE(1563)] = 69094, + [SMALL_STATE(1564)] = 69101, + [SMALL_STATE(1565)] = 69108, + [SMALL_STATE(1566)] = 69115, + [SMALL_STATE(1567)] = 69122, + [SMALL_STATE(1568)] = 69129, + [SMALL_STATE(1569)] = 69136, + [SMALL_STATE(1570)] = 69143, + [SMALL_STATE(1571)] = 69150, + [SMALL_STATE(1572)] = 69157, + [SMALL_STATE(1573)] = 69164, + [SMALL_STATE(1574)] = 69171, + [SMALL_STATE(1575)] = 69178, + [SMALL_STATE(1576)] = 69185, + [SMALL_STATE(1577)] = 69192, + [SMALL_STATE(1578)] = 69199, + [SMALL_STATE(1579)] = 69206, + [SMALL_STATE(1580)] = 69213, + [SMALL_STATE(1581)] = 69220, + [SMALL_STATE(1582)] = 69227, + [SMALL_STATE(1583)] = 69234, + [SMALL_STATE(1584)] = 69241, + [SMALL_STATE(1585)] = 69248, + [SMALL_STATE(1586)] = 69255, + [SMALL_STATE(1587)] = 69262, + [SMALL_STATE(1588)] = 69269, + [SMALL_STATE(1589)] = 69276, + [SMALL_STATE(1590)] = 69283, + [SMALL_STATE(1591)] = 69290, + [SMALL_STATE(1592)] = 69297, + [SMALL_STATE(1593)] = 69304, + [SMALL_STATE(1594)] = 69311, + [SMALL_STATE(1595)] = 69318, + [SMALL_STATE(1596)] = 69325, + [SMALL_STATE(1597)] = 69332, + [SMALL_STATE(1598)] = 69339, + [SMALL_STATE(1599)] = 69346, + [SMALL_STATE(1600)] = 69353, + [SMALL_STATE(1601)] = 69360, + [SMALL_STATE(1602)] = 69367, + [SMALL_STATE(1603)] = 69374, + [SMALL_STATE(1604)] = 69381, + [SMALL_STATE(1605)] = 69388, + [SMALL_STATE(1606)] = 69395, + [SMALL_STATE(1607)] = 69402, + [SMALL_STATE(1608)] = 69409, + [SMALL_STATE(1609)] = 69416, + [SMALL_STATE(1610)] = 69423, + [SMALL_STATE(1611)] = 69430, + [SMALL_STATE(1612)] = 69437, + [SMALL_STATE(1613)] = 69444, + [SMALL_STATE(1614)] = 69451, + [SMALL_STATE(1615)] = 69458, + [SMALL_STATE(1616)] = 69465, + [SMALL_STATE(1617)] = 69472, + [SMALL_STATE(1618)] = 69479, + [SMALL_STATE(1619)] = 69486, + [SMALL_STATE(1620)] = 69493, + [SMALL_STATE(1621)] = 69500, + [SMALL_STATE(1622)] = 69507, + [SMALL_STATE(1623)] = 69514, + [SMALL_STATE(1624)] = 69521, + [SMALL_STATE(1625)] = 69528, + [SMALL_STATE(1626)] = 69535, + [SMALL_STATE(1627)] = 69542, + [SMALL_STATE(1628)] = 69549, + [SMALL_STATE(1629)] = 69556, + [SMALL_STATE(1630)] = 69563, + [SMALL_STATE(1631)] = 69570, + [SMALL_STATE(1632)] = 69577, + [SMALL_STATE(1633)] = 69584, + [SMALL_STATE(1634)] = 69591, + [SMALL_STATE(1635)] = 69598, + [SMALL_STATE(1636)] = 69605, + [SMALL_STATE(1637)] = 69612, + [SMALL_STATE(1638)] = 69619, + [SMALL_STATE(1639)] = 69626, + [SMALL_STATE(1640)] = 69633, + [SMALL_STATE(1641)] = 69640, + [SMALL_STATE(1642)] = 69647, + [SMALL_STATE(1643)] = 69654, + [SMALL_STATE(1644)] = 69661, + [SMALL_STATE(1645)] = 69668, + [SMALL_STATE(1646)] = 69675, + [SMALL_STATE(1647)] = 69682, + [SMALL_STATE(1648)] = 69689, + [SMALL_STATE(1649)] = 69696, + [SMALL_STATE(1650)] = 69703, + [SMALL_STATE(1651)] = 69710, + [SMALL_STATE(1652)] = 69717, + [SMALL_STATE(1653)] = 69724, + [SMALL_STATE(1654)] = 69731, + [SMALL_STATE(1655)] = 69738, + [SMALL_STATE(1656)] = 69745, + [SMALL_STATE(1657)] = 69752, + [SMALL_STATE(1658)] = 69759, + [SMALL_STATE(1659)] = 69766, + [SMALL_STATE(1660)] = 69773, + [SMALL_STATE(1661)] = 69780, + [SMALL_STATE(1662)] = 69787, + [SMALL_STATE(1663)] = 69794, + [SMALL_STATE(1664)] = 69801, + [SMALL_STATE(1665)] = 69808, + [SMALL_STATE(1666)] = 69815, + [SMALL_STATE(1667)] = 69822, + [SMALL_STATE(1668)] = 69829, + [SMALL_STATE(1669)] = 69836, + [SMALL_STATE(1670)] = 69843, + [SMALL_STATE(1671)] = 69850, + [SMALL_STATE(1672)] = 69857, + [SMALL_STATE(1673)] = 69864, + [SMALL_STATE(1674)] = 69871, + [SMALL_STATE(1675)] = 69878, + [SMALL_STATE(1676)] = 69885, + [SMALL_STATE(1677)] = 69892, + [SMALL_STATE(1678)] = 69899, + [SMALL_STATE(1679)] = 69906, + [SMALL_STATE(1680)] = 69913, + [SMALL_STATE(1681)] = 69920, + [SMALL_STATE(1682)] = 69927, + [SMALL_STATE(1683)] = 69934, + [SMALL_STATE(1684)] = 69941, + [SMALL_STATE(1685)] = 69948, + [SMALL_STATE(1686)] = 69955, + [SMALL_STATE(1687)] = 69962, + [SMALL_STATE(1688)] = 69969, + [SMALL_STATE(1689)] = 69976, + [SMALL_STATE(1690)] = 69983, + [SMALL_STATE(1691)] = 69990, + [SMALL_STATE(1692)] = 69997, + [SMALL_STATE(1693)] = 70004, +}; + +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 = true}}, REDUCE(sym_module, 0), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(434), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), + [53] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [85] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [87] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [89] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), REDUCE(sym_primary_expression, 1, .production_id = 1), + [92] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [94] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [96] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [98] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .production_id = 1), + [100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1, .production_id = 1), + [102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(193), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expresssion_lhs, 1, .production_id = 1), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(196), + [118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(379), + [121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(722), + [124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1103), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(322), + [141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(133), + [144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(660), + [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(5), + [150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(437), + [153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(15), + [156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(249), + [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(321), + [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1499), + [165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1500), + [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1502), + [171] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(389), + [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(269), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(465), + [180] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(383), + [183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(305), + [186] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1684), + [189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(287), + [192] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(692), + [195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(125), + [198] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(334), + [201] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(704), + [204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1087), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(862), + [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(143), + [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(862), + [216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(56), + [219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(357), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1129), + [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 1), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [237] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(7), + [240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(434), + [243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(266), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(457), + [249] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(342), + [252] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(294), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_module_repeat1, 2), SHIFT_REPEAT(1682), + [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(371), + [272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1098), + [276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(439), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1083), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), + [318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1095), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), + [352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), + [382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), + [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_list_splat_pattern, 2, .production_id = 2), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), + [601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 3), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 3), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern_list, 2), + [689] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern_list, 2), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), + [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1003), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1024), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), + [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), + [815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 7, .production_id = 86), + [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 7, .production_id = 86), + [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 75), + [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 75), + [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 6, .production_id = 74), + [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 74), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_clause, 5, .production_id = 62), + [843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 62), + [845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), + [879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 3), + [887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 2), + [893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 3), + [903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_list, 2), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), + [927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1026), + [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 2), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 1), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 1), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 10), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 4, .production_id = 11), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 4), + [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 3), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 2), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 3), + [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 3), + [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 3), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [1015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [1017] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1), REDUCE(sym_primary_expression, 1), + [1020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [1022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__named_expresssion_lhs, 1), + [1024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pattern, 1), + [1026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [1032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, .production_id = 19), + [1034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute, 3, .production_id = 19), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 2), + [1044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_list_pattern, 2), REDUCE(sym_list, 2), + [1047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 2), + [1049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 2), + [1051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_pattern, 2), + [1053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 4, .production_id = 35), + [1055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 4, .production_id = 35), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [1061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [1063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 35), + [1065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 35), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 5, .production_id = 51), + [1069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 5, .production_id = 51), + [1071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript, 6, .production_id = 51), + [1073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript, 6, .production_id = 51), + [1075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 2), + [1077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), REDUCE(sym_tuple, 2), + [1080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 2), + [1082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2), + [1084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_pattern, 2), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1072), + [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1060), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [1100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [1102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 56), + [1104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 56), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [1110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 28), + [1112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 28), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [1118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 41), + [1120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 41), + [1122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 2), + [1124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 3), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1070), + [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1065), + [1136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 42), + [1140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 42), + [1142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 38), + [1144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 38), + [1146] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 38), SHIFT_REPEAT(347), + [1149] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 2, .production_id = 38), SHIFT_REPEAT(373), + [1152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 4), + [1154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 4), + [1156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 3), + [1158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 3), + [1160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 26), + [1162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 26), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [1166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 1), + [1168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 1), + [1170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 12), + [1172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 12), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 6, .production_id = 53), + [1178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 6, .production_id = 53), + [1180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 4, .production_id = 25), + [1182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 4, .production_id = 25), + [1184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 3, .production_id = 12), + [1186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 3, .production_id = 12), + [1188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [1190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [1192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 39), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 39), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 26), + [1198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 26), + [1200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 38), + [1202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 38), + [1204] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 38), SHIFT_REPEAT(290), + [1207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__simple_statements, 2), + [1209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__simple_statements, 2), + [1211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_statement, 5, .production_id = 37), + [1213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_statement, 5, .production_id = 37), + [1215] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 2, .production_id = 38), SHIFT_REPEAT(278), + [1218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 24), + [1220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_if_statement_repeat1, 1, .production_id = 24), + [1222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 72), + [1224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 72), + [1226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 4, .production_id = 28), + [1228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 4, .production_id = 28), + [1230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 4, .production_id = 29), + [1232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 4, .production_id = 29), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 69), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 69), + [1238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_elif_clause, 5, .production_id = 42), + [1240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_elif_clause, 5, .production_id = 42), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 82), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 82), + [1246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 45), + [1248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 45), + [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 59), + [1252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 59), + [1254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 95), + [1256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 95), + [1258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 92), + [1260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 92), + [1262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 4, .production_id = 65), + [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 4, .production_id = 65), + [1266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_statement_repeat2, 1, .production_id = 24), + [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat2, 1, .production_id = 24), + [1270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 76), + [1272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 76), + [1274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 77), + [1276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 77), + [1278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 8, .production_id = 99), + [1280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 8, .production_id = 99), + [1282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 98), + [1284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 98), + [1286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 87), + [1288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 87), + [1290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 88), + [1292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 88), + [1294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 78), + [1296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 78), + [1298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 89), + [1300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 89), + [1302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 90), + [1304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 90), + [1306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 97), + [1308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 97), + [1310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 5, .production_id = 79), + [1312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 5, .production_id = 79), + [1314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 6, .production_id = 91), + [1316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 6, .production_id = 91), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_separator, 1), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_case_clause, 7, .production_id = 96), + [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_case_clause, 7, .production_id = 96), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), + [1334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 83), + [1336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 83), + [1338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [1340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 81), + [1342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 4, .production_id = 80), + [1344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 4, .production_id = 80), + [1346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 8, .production_id = 84), + [1348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 8, .production_id = 84), + [1350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 8, .production_id = 85), + [1352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 8, .production_id = 85), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [1370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [1372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [1374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1683), + [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [1380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), + [1386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 9, .production_id = 93), + [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 9, .production_id = 93), + [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 9, .production_id = 94), + [1392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 9, .production_id = 94), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 4, .production_id = 30), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 4, .production_id = 30), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [1400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), + [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [1418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 5, .production_id = 40), + [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 5, .production_id = 40), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 73), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 73), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 71), + [1436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 71), + [1438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 7, .production_id = 70), + [1440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 7, .production_id = 70), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 43), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 43), + [1446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 7, .production_id = 68), + [1448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 7, .production_id = 68), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 5, .production_id = 44), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 5, .production_id = 44), + [1454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 3, .production_id = 67), + [1456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 3, .production_id = 67), + [1458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 5, .production_id = 46), + [1460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 5, .production_id = 46), + [1462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 5, .production_id = 47), + [1464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 5, .production_id = 47), + [1466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 61), + [1468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 61), + [1470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 6, .production_id = 60), + [1472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 6, .production_id = 60), + [1474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 6, .production_id = 58), + [1476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 6, .production_id = 58), + [1478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 6, .production_id = 57), + [1480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 6, .production_id = 57), + [1482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 55), + [1484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 55), + [1486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 6, .production_id = 54), + [1488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 6, .production_id = 54), + [1490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), + [1492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorated_definition, 2, .production_id = 9), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_operator, 2, .production_id = 6), + [1504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_operator, 2, .production_id = 6), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [1518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [1520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(956), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1053), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [1546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 36), + [1548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 3, .production_id = 36), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), + [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [1556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [1574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [1576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [1582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_operator, 3, .production_id = 17), + [1584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_operator, 3, .production_id = 17), + [1586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 20), + [1588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 20), + [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [1612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_comprehension, 4, .production_id = 31), + [1620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_comprehension, 4, .production_id = 31), + [1622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4), + [1624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4), + [1626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 3), + [1628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 3), + [1630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 5), + [1632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 5), + [1634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5), + [1636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5), + [1638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 5, .production_id = 22), + [1640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 5, .production_id = 22), + [1642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set, 3), + [1644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set, 3), + [1646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 2), + [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 2), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(730), + [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [1662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3, .production_id = 22), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3, .production_id = 22), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list, 3), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list, 3), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple, 3), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple, 3), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 3), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 3), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 31), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary_comprehension, 4, .production_id = 31), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 4), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 4), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call, 2, .production_id = 7), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call, 2, .production_id = 7), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_comprehension, 4, .production_id = 31), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_comprehension, 4, .production_id = 31), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_argument_list, 4, .production_id = 22), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_argument_list, 4, .production_id = 22), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary, 2), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dictionary, 2), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [1726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [1732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [1734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2, .production_id = 2), + [1756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat_pattern, 2), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [1764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_list_splat_pattern, 2), + [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), + [1769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), + [1771] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(742), + [1774] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1683), + [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(742), + [1780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat_pattern, 2, .production_id = 2), + [1784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comparison_operator, 2, .production_id = 8), + [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comparison_operator, 2, .production_id = 8), + [1788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(651), + [1791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1598), + [1794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(651), + [1797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [1799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(687), + [1802] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1674), + [1805] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(687), + [1808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(474), + [1811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), + [1813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(654), + [1816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1623), + [1819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(654), + [1822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [1824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(678), + [1827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1566), + [1830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(678), + [1833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [1835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [1839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [1843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_pattern, 3), + [1847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [1849] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(724), + [1852] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1587), + [1855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(724), + [1858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(738), + [1863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(1678), + [1866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_comparison_operator_repeat1, 2, .production_id = 21), SHIFT_REPEAT(738), + [1869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [1873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [1875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [1879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3), + [1883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [1885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [1887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [1889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [1893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [1901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 3), + [1905] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 2), + [1907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [1909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), + [1911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [1917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [1919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), + [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [1923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__collection_elements, 1), + [1925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [1927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), + [1929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [1933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(463), + [1935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [1939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1139), + [1943] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [1945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [1947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [1949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [1951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [1953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [1955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), + [1957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [1959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [1961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1133), + [1963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [1965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [1967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [1969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [1971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [1973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__f_expression, 1), + [1975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), + [1981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), + [1983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [1985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1140), + [1987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [1989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [1991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [1993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [1995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [1997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [1999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [2001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [2003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1138), + [2005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [2007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [2009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [2011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [2013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [2015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(297), + [2018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1141), + [2021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(1141), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_expression, 5), + [2028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_not_operator, 2, .production_id = 3), + [2030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_not_operator, 2, .production_id = 3), + [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 4, .production_id = 33), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await, 2), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda, 3, .production_id = 13), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await, 2), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_operator, 3, .production_id = 17), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_operator, 3, .production_id = 17), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(335), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_pattern, 3, .production_id = 18), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_pattern, 3, .production_id = 18), + [2055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(416), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1), + [2060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [2062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [2064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [2068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [2078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [2080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [2082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [2084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(387), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__right_hand_side, 1), + [2093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_within_for_in_clause, 1), + [2097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 2), + [2099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [2101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2, .production_id = 3), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [2109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 4, .production_id = 5), + [2111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(441), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delete_statement, 2), + [2118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [2120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 34), + [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [2130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [2132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [2138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [2140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [2142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(391), + [2145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [2151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [2153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [2155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [2157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 2), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [2163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [2165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [2167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [2169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_chevron, 2), + [2175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comprehension_clauses, 1), + [2185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(395), + [2188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1691), + [2191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(461), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), + [2196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(363), + [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 5), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 5), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [2213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [2219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 3), + [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 3), + [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_clause, 2), + [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 4), + [2229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 4), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [2235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 50), + [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [2239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type, 1), + [2243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [2245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [2247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interpolation, 6), + [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interpolation, 6), + [2251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 3), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [2257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [2259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(396), + [2262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(1601), + [2265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__comprehension_clauses_repeat1, 2), SHIFT_REPEAT(463), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [2276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_named_expression, 3, .production_id = 14), SHIFT(378), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [2281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [2289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [2291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [2293] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 4), SHIFT(225), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [2300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [2302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [2304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [2306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [2314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [2318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice, 5), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_item, 1, .dynamic_precedence = 1, .production_id = 4), + [2332] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(270), + [2335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), + [2337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 64), + [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_splat, 2), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 74), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 6, .production_id = 86), + [2349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [2351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [2353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 49), + [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_keyword_argument, 3, .production_id = 14), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 5, .production_id = 75), + [2361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dictionary_splat, 2), + [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 12), + [2365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_parameter, 3, .production_id = 14), + [2367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(405), + [2370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_in_clause_repeat1, 2), SHIFT_REPEAT(279), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_clause, 4, .production_id = 62), + [2381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_default_parameter, 5, .production_id = 63), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [2387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [2389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), + [2393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decorated_definition_repeat1, 2), SHIFT_REPEAT(692), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [2398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 3, .production_id = 13), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_within_for_in_clause, 4, .production_id = 33), + [2402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [2406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [2410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [2414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [2416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [2418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [2420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [2422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [2424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [2426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [2430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 2), + [2436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [2438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [2440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [2442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [2444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [2448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(360), + [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_format_specifier_repeat1, 2), + [2453] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_format_specifier_repeat1, 2), SHIFT_REPEAT(1351), + [2456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [2458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [2460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [2462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [2464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [2466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_specifier, 1), + [2470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 11), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 5, .production_id = 5), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [2484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 66), SHIFT_REPEAT(277), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_case_clause_repeat1, 2, .production_id = 66), + [2489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(419), + [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 23), + [2494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_print_statement_repeat1, 2, .production_id = 23), SHIFT_REPEAT(365), + [2497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1), + [2499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [2501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 2), + [2505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assert_statement, 3), + [2509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_print_statement, 3, .production_id = 10), + [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [2515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [2517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2), SHIFT_REPEAT(183), + [2520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 15), + [2524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2526] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), SHIFT_REPEAT(123), + [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__simple_statements_repeat1, 2), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [2559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(471), + [2562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_assert_statement_repeat1, 2), SHIFT_REPEAT(385), + [2565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(257), + [2568] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(327), + [2571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), + [2573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__patterns, 1), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [2577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), + [2579] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1111), + [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_typed_parameter, 3, .production_id = 32), + [2584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [2586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_with_clause_repeat1, 2), SHIFT_REPEAT(315), + [2589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(259), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [2594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [2596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [2602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [2606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [2610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [2616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameters, 1), + [2618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [2620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 27), SHIFT_REPEAT(372), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_statement_repeat1, 2, .production_id = 27), + [2625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [2627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [2629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [2631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [2633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [2637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [2639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [2641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [2643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 3), + [2645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [2647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [2649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parameters_repeat1, 2), SHIFT_REPEAT(1110), + [2652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [2654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [2662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [2664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [2666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [2668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [2670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), SHIFT_REPEAT(247), + [2675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_dictionary_repeat1, 2), + [2677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [2679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [2681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [2683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [2685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [2687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [2691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 1), + [2693] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__collection_elements_repeat1, 2), SHIFT_REPEAT(248), + [2696] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__patterns_repeat1, 2), SHIFT_REPEAT(473), + [2699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [2703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [2707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [2715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [2729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [2741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [2749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [2751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_format_expression, 3), + [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_format_expression, 3), + [2757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [2759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), + [2761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [2765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [2767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [2769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [2771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [2773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [2777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [2779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [2781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [2783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [2785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [2787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [2789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_exec_statement, 2, .production_id = 5), + [2793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [2795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 52), SHIFT_REPEAT(291), + [2800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_subscript_repeat1, 2, .production_id = 52), + [2802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [2814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pass_statement, 1), + [2816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 1), + [2818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 1), + [2820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_argument_list_repeat1, 2, .production_id = 22), + [2822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2), + [2824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3), + [2826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 5, .production_id = 48), + [2828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_list_splat, 3, .production_id = 22), + [2830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [2832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [2834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [2836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [2842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3), + [2844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment, 3, .production_id = 17), + [2846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_positional_separator, 1), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [2852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 3, .production_id = 16), + [2854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 5), + [2856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lambda_parameters, 1), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [2886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [2888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [2890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [2892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [2894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [2896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [2898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [2900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [2902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), + [2904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1002), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [2946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [2948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [2950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [2954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [2956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_clause, 4), + [2960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [2964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [2966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [2968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [2976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [2978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [2982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1031), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [2994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [3006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [3008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [3010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [3014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [3022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [3032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [3038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [3042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [3046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [3056] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [3058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [3066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [3070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), +}; + +#ifdef __cplusplus +extern "C" { +#endif +void *tree_sitter_starlark_external_scanner_create(void); +void tree_sitter_starlark_external_scanner_destroy(void *); +bool tree_sitter_starlark_external_scanner_scan(void *, TSLexer *, const bool *); +unsigned tree_sitter_starlark_external_scanner_serialize(void *, char *); +void tree_sitter_starlark_external_scanner_deserialize(void *, const char *, unsigned); + +#ifdef _WIN32 +#define extern __declspec(dllexport) +#endif + +extern const TSLanguage *tree_sitter_starlark(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, + .external_scanner = { + &ts_external_scanner_states[0][0], + ts_external_scanner_symbol_map, + tree_sitter_starlark_external_scanner_create, + tree_sitter_starlark_external_scanner_destroy, + tree_sitter_starlark_external_scanner_scan, + tree_sitter_starlark_external_scanner_serialize, + tree_sitter_starlark_external_scanner_deserialize, + }, + .primary_state_ids = ts_primary_state_ids, + }; + return &language; +} +#ifdef __cplusplus +} +#endif diff --git a/src/scanner.cc b/src/scanner.cc new file mode 100644 index 0000000..38de690 --- /dev/null +++ b/src/scanner.cc @@ -0,0 +1,385 @@ +#include +#include +#include +#include +#include +#include +namespace { + +using std::memcpy; +using std::vector; + +enum TokenType { + NEWLINE, + INDENT, + DEDENT, + STRING_START, + STRING_CONTENT, + STRING_END, +}; + +struct Delimiter { + enum { + SingleQuote = 1 << 0, + DoubleQuote = 1 << 1, + BackQuote = 1 << 2, + Raw = 1 << 3, + Format = 1 << 4, + Triple = 1 << 5, + Bytes = 1 << 6, + }; + + Delimiter() : flags(0) {} + + bool is_format() const { return flags & Format; } + + bool is_raw() const { return flags & Raw; } + + bool is_triple() const { return flags & Triple; } + + bool is_bytes() const { return flags & Bytes; } + + int32_t end_character() const { + if (flags & SingleQuote) + return '\''; + if (flags & DoubleQuote) + return '"'; + if (flags & BackQuote) + return '`'; + return 0; + } + + void set_format() { flags |= Format; } + + void set_raw() { flags |= Raw; } + + void set_triple() { flags |= Triple; } + + void set_bytes() { flags |= Bytes; } + + void set_end_character(int32_t character) { + switch (character) { + case '\'': + flags |= SingleQuote; + break; + case '"': + flags |= DoubleQuote; + break; + case '`': + flags |= BackQuote; + break; + default: + assert(false); + } + } + + char flags; +}; + +struct Scanner { + Scanner() { + assert(sizeof(Delimiter) == sizeof(char)); + deserialize(NULL, 0); + } + + unsigned serialize(char *buffer) { + size_t i = 0; + + size_t delimiter_count = delimiter_stack.size(); + if (delimiter_count > UINT8_MAX) + delimiter_count = UINT8_MAX; + buffer[i++] = delimiter_count; + + if (delimiter_count > 0) { + memcpy(&buffer[i], delimiter_stack.data(), delimiter_count); + } + i += delimiter_count; + + vector::iterator iter = indent_length_stack.begin() + 1, + end = indent_length_stack.end(); + + for (; iter != end && i < TREE_SITTER_SERIALIZATION_BUFFER_SIZE; ++iter) { + buffer[i++] = *iter; + } + + return i; + } + + void deserialize(const char *buffer, unsigned length) { + delimiter_stack.clear(); + indent_length_stack.clear(); + indent_length_stack.push_back(0); + + if (length > 0) { + size_t i = 0; + + size_t delimiter_count = (uint8_t)buffer[i++]; + delimiter_stack.resize(delimiter_count); + if (delimiter_count > 0) { + memcpy(delimiter_stack.data(), &buffer[i], delimiter_count); + } + i += delimiter_count; + + for (; i < length; i++) { + indent_length_stack.push_back(buffer[i]); + } + } + } + + void advance(TSLexer *lexer) { lexer->advance(lexer, false); } + + void skip(TSLexer *lexer) { lexer->advance(lexer, true); } + + bool scan(TSLexer *lexer, const bool *valid_symbols) { + bool error_recovery_mode = + valid_symbols[STRING_CONTENT] && valid_symbols[INDENT]; + + if (valid_symbols[STRING_CONTENT] && !delimiter_stack.empty() && + !error_recovery_mode) { + Delimiter delimiter = delimiter_stack.back(); + int32_t end_character = delimiter.end_character(); + bool has_content = false; + while (lexer->lookahead) { + if ((lexer->lookahead == '{' || lexer->lookahead == '}') && + delimiter.is_format()) { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return has_content; + } else if (lexer->lookahead == '\\') { + if (delimiter.is_raw()) { + lexer->advance(lexer, false); + } else if (delimiter.is_bytes()) { + lexer->mark_end(lexer); + lexer->advance(lexer, false); + if (lexer->lookahead == 'N' || lexer->lookahead == 'u' || + lexer->lookahead == 'U') { + // In bytes string, \N{...}, \uXXXX and \UXXXXXXXX are not escape + // sequences + // https://docs.python.org/3/reference/lexical_analysis.html#string-and-bytes-literals + lexer->advance(lexer, false); + } else { + lexer->result_symbol = STRING_CONTENT; + return has_content; + } + } else { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return has_content; + } + } else if (lexer->lookahead == end_character) { + if (delimiter.is_triple()) { + lexer->mark_end(lexer); + lexer->advance(lexer, false); + if (lexer->lookahead == end_character) { + lexer->advance(lexer, false); + if (lexer->lookahead == end_character) { + if (has_content) { + lexer->result_symbol = STRING_CONTENT; + } else { + lexer->advance(lexer, false); + lexer->mark_end(lexer); + delimiter_stack.pop_back(); + lexer->result_symbol = STRING_END; + } + return true; + } else { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return true; + } + } else { + lexer->mark_end(lexer); + lexer->result_symbol = STRING_CONTENT; + return true; + } + } else { + if (has_content) { + lexer->result_symbol = STRING_CONTENT; + } else { + lexer->advance(lexer, false); + delimiter_stack.pop_back(); + lexer->result_symbol = STRING_END; + } + lexer->mark_end(lexer); + return true; + } + } else if (lexer->lookahead == '\n' && has_content && + !delimiter.is_triple()) { + return false; + } + advance(lexer); + has_content = true; + } + } + + lexer->mark_end(lexer); + + bool found_end_of_line = false; + uint32_t indent_length = 0; + int32_t first_comment_indent_length = -1; + for (;;) { + if (lexer->lookahead == '\n') { + found_end_of_line = true; + indent_length = 0; + skip(lexer); + } else if (lexer->lookahead == ' ') { + indent_length++; + skip(lexer); + } else if (lexer->lookahead == '\r') { + indent_length = 0; + skip(lexer); + } else if (lexer->lookahead == '\t') { + indent_length += 8; + skip(lexer); + } else if (lexer->lookahead == '#') { + if (first_comment_indent_length == -1) { + first_comment_indent_length = (int32_t)indent_length; + } + while (lexer->lookahead && lexer->lookahead != '\n') { + skip(lexer); + } + skip(lexer); + indent_length = 0; + } else if (lexer->lookahead == '\\') { + skip(lexer); + if (lexer->lookahead == '\r') { + skip(lexer); + } + if (lexer->lookahead == '\n') { + skip(lexer); + } else { + return false; + } + } else if (lexer->lookahead == '\f') { + indent_length = 0; + skip(lexer); + } else if (lexer->lookahead == 0) { + indent_length = 0; + found_end_of_line = true; + break; + } else { + break; + } + } + + if (found_end_of_line && !error_recovery_mode) { + if (!indent_length_stack.empty()) { + uint16_t current_indent_length = indent_length_stack.back(); + + if (valid_symbols[INDENT] && indent_length > current_indent_length) { + indent_length_stack.push_back(indent_length); + lexer->result_symbol = INDENT; + return true; + } + + if (valid_symbols[DEDENT] && indent_length < current_indent_length && + + // Wait to create a dedent token until we've consumed any comments + // whose indentation matches the current block. + first_comment_indent_length < (int32_t)current_indent_length) { + indent_length_stack.pop_back(); + lexer->result_symbol = DEDENT; + return true; + } + } + + if (valid_symbols[NEWLINE]) { + lexer->result_symbol = NEWLINE; + return true; + } + } + + if (first_comment_indent_length == -1 && valid_symbols[STRING_START]) { + Delimiter delimiter; + + bool has_flags = false; + while (lexer->lookahead) { + if (lexer->lookahead == 'f' || lexer->lookahead == 'F') { + delimiter.set_format(); + } else if (lexer->lookahead == 'r' || lexer->lookahead == 'R') { + delimiter.set_raw(); + } else if (lexer->lookahead == 'b' || lexer->lookahead == 'B') { + delimiter.set_bytes(); + } else if (lexer->lookahead != 'u' && lexer->lookahead != 'U') { + break; + } + has_flags = true; + advance(lexer); + } + + if (lexer->lookahead == '`') { + delimiter.set_end_character('`'); + advance(lexer); + lexer->mark_end(lexer); + } else if (lexer->lookahead == '\'') { + delimiter.set_end_character('\''); + advance(lexer); + lexer->mark_end(lexer); + if (lexer->lookahead == '\'') { + advance(lexer); + if (lexer->lookahead == '\'') { + advance(lexer); + lexer->mark_end(lexer); + delimiter.set_triple(); + } + } + } else if (lexer->lookahead == '"') { + delimiter.set_end_character('"'); + advance(lexer); + lexer->mark_end(lexer); + if (lexer->lookahead == '"') { + advance(lexer); + if (lexer->lookahead == '"') { + advance(lexer); + lexer->mark_end(lexer); + delimiter.set_triple(); + } + } + } + + if (delimiter.end_character()) { + delimiter_stack.push_back(delimiter); + lexer->result_symbol = STRING_START; + return true; + } else if (has_flags) { + return false; + } + } + + return false; + } + + vector indent_length_stack; + vector delimiter_stack; +}; + +} // namespace + +extern "C" { + +void *tree_sitter_starlark_external_scanner_create() { return new Scanner(); } + +bool tree_sitter_starlark_external_scanner_scan(void *payload, TSLexer *lexer, + const bool *valid_symbols) { + Scanner *scanner = static_cast(payload); + return scanner->scan(lexer, valid_symbols); +} + +unsigned tree_sitter_starlark_external_scanner_serialize(void *payload, + char *buffer) { + Scanner *scanner = static_cast(payload); + return scanner->serialize(buffer); +} + +void tree_sitter_starlark_external_scanner_deserialize(void *payload, + const char *buffer, + unsigned length) { + Scanner *scanner = static_cast(payload); + scanner->deserialize(buffer, length); +} + +void tree_sitter_starlark_external_scanner_destroy(void *payload) { + Scanner *scanner = static_cast(payload); + delete scanner; +} +} diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h new file mode 100644 index 0000000..2b14ac1 --- /dev/null +++ b/src/tree_sitter/parser.h @@ -0,0 +1,224 @@ +#ifndef TREE_SITTER_PARSER_H_ +#define TREE_SITTER_PARSER_H_ + +#ifdef __cplusplus +extern "C" { +#endif + +#include +#include +#include + +#define ts_builtin_sym_error ((TSSymbol)-1) +#define ts_builtin_sym_end 0 +#define TREE_SITTER_SERIALIZATION_BUFFER_SIZE 1024 + +typedef uint16_t TSStateId; + +#ifndef TREE_SITTER_API_H_ +typedef uint16_t TSSymbol; +typedef uint16_t TSFieldId; +typedef struct TSLanguage TSLanguage; +#endif + +typedef struct { + TSFieldId field_id; + uint8_t child_index; + bool inherited; +} TSFieldMapEntry; + +typedef struct { + uint16_t index; + uint16_t length; +} TSFieldMapSlice; + +typedef struct { + bool visible; + bool named; + bool supertype; +} TSSymbolMetadata; + +typedef struct TSLexer TSLexer; + +struct TSLexer { + int32_t lookahead; + TSSymbol result_symbol; + void (*advance)(TSLexer *, bool); + void (*mark_end)(TSLexer *); + uint32_t (*get_column)(TSLexer *); + bool (*is_at_included_range_start)(const TSLexer *); + bool (*eof)(const TSLexer *); +}; + +typedef enum { + TSParseActionTypeShift, + TSParseActionTypeReduce, + TSParseActionTypeAccept, + TSParseActionTypeRecover, +} TSParseActionType; + +typedef union { + struct { + uint8_t type; + TSStateId state; + bool extra; + bool repetition; + } shift; + struct { + uint8_t type; + uint8_t child_count; + TSSymbol symbol; + int16_t dynamic_precedence; + uint16_t production_id; + } reduce; + uint8_t type; +} TSParseAction; + +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; +} TSLexMode; + +typedef union { + TSParseAction action; + struct { + uint8_t count; + bool reusable; + } entry; +} TSParseActionEntry; + +struct TSLanguage { + uint32_t version; + uint32_t symbol_count; + uint32_t alias_count; + uint32_t token_count; + uint32_t external_token_count; + uint32_t state_count; + uint32_t large_state_count; + uint32_t production_id_count; + uint32_t field_count; + uint16_t max_alias_sequence_length; + const uint16_t *parse_table; + const uint16_t *small_parse_table; + const uint32_t *small_parse_table_map; + const TSParseActionEntry *parse_actions; + const char * const *symbol_names; + const char * const *field_names; + const TSFieldMapSlice *field_map_slices; + const TSFieldMapEntry *field_map_entries; + const TSSymbolMetadata *symbol_metadata; + const TSSymbol *public_symbol_map; + const uint16_t *alias_map; + const TSSymbol *alias_sequences; + const TSLexMode *lex_modes; + bool (*lex_fn)(TSLexer *, TSStateId); + bool (*keyword_lex_fn)(TSLexer *, TSStateId); + TSSymbol keyword_capture_token; + struct { + const bool *states; + const TSSymbol *symbol_map; + void *(*create)(void); + void (*destroy)(void *); + bool (*scan)(void *, TSLexer *, const bool *symbol_whitelist); + unsigned (*serialize)(void *, char *); + void (*deserialize)(void *, const char *, unsigned); + } external_scanner; + const TSStateId *primary_state_ids; +}; + +/* + * Lexer Macros + */ + +#define START_LEXER() \ + bool result = false; \ + bool skip = false; \ + bool eof = false; \ + int32_t lookahead; \ + goto start; \ + next_state: \ + lexer->advance(lexer, skip); \ + start: \ + skip = false; \ + lookahead = lexer->lookahead; + +#define ADVANCE(state_value) \ + { \ + state = state_value; \ + goto next_state; \ + } + +#define SKIP(state_value) \ + { \ + skip = true; \ + state = state_value; \ + goto next_state; \ + } + +#define ACCEPT_TOKEN(symbol_value) \ + result = true; \ + lexer->result_symbol = symbol_value; \ + lexer->mark_end(lexer); + +#define END_STATE() return result; + +/* + * Parse Table Macros + */ + +#define SMALL_STATE(id) id - LARGE_STATE_COUNT + +#define STATE(id) id + +#define ACTIONS(id) id + +#define SHIFT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value \ + } \ + }} + +#define SHIFT_REPEAT(state_value) \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .state = state_value, \ + .repetition = true \ + } \ + }} + +#define SHIFT_EXTRA() \ + {{ \ + .shift = { \ + .type = TSParseActionTypeShift, \ + .extra = true \ + } \ + }} + +#define REDUCE(symbol_val, child_count_val, ...) \ + {{ \ + .reduce = { \ + .type = TSParseActionTypeReduce, \ + .symbol = symbol_val, \ + .child_count = child_count_val, \ + __VA_ARGS__ \ + }, \ + }} + +#define RECOVER() \ + {{ \ + .type = TSParseActionTypeRecover \ + }} + +#define ACCEPT_INPUT() \ + {{ \ + .type = TSParseActionTypeAccept \ + }} + +#ifdef __cplusplus +} +#endif + +#endif // TREE_SITTER_PARSER_H_ diff --git a/test/corpus/errors.txt b/test/corpus/errors.txt new file mode 100644 index 0000000..de5b914 --- /dev/null +++ b/test/corpus/errors.txt @@ -0,0 +1,27 @@ +==================================== +An error before a string literal +==================================== + +def a(b): + c. + + """ + d + """ + + e + +--- + +(module + (function_definition + (identifier) + (parameters + (identifier)) + (ERROR + (identifier)) + (block + (expression_statement + (string)) + (expression_statement + (identifier))))) \ No newline at end of file diff --git a/test/corpus/expressions.txt b/test/corpus/expressions.txt new file mode 100644 index 0000000..b8798ea --- /dev/null +++ b/test/corpus/expressions.txt @@ -0,0 +1,935 @@ +================================================================================ +Identifiers with Greek letters +================================================================================ + +ψ1 = β_γ + Ψ_5 + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + left: (identifier) + right: (binary_operator + left: (identifier) + right: (identifier))))) + +================================================================================ +Subscript expressions +================================================================================ + +a[1] +b[2, 3] +c[4, 5,] + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (subscript + (identifier) + (integer))) + (expression_statement + (subscript + (identifier) + (integer) + (integer))) + (expression_statement + (subscript + (identifier) + (integer) + (integer)))) + +================================================================================ +Subscript slice expressions +================================================================================ + +a[:] +b[5:] +b[5:6, ...] +c[::] + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (subscript + (identifier) + (slice))) + (expression_statement + (subscript + (identifier) + (slice + (integer)))) + (expression_statement + (subscript + (identifier) + (slice + (integer) + (integer)) + (ellipsis))) + (expression_statement + (subscript + (identifier) + (slice)))) + +================================================================================ +Attribute references +================================================================================ + +a.b.c + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (attribute + (attribute + (identifier) + (identifier)) + (identifier)))) + +================================================================================ +Await expressions +================================================================================ + +await i(j, 5) +return await i(j, 5) + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (await + (call + (identifier) + (argument_list + (identifier) + (integer))))) + (return_statement + (await + (call + (identifier) + (argument_list + (identifier) + (integer)))))) + +================================================================================ +Call expressions +================================================================================ + +__a__() +b(1) +c(e, f=g) +i(j, 5,) + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (call + (identifier) + (argument_list))) + (expression_statement + (call + (identifier) + (argument_list + (integer)))) + (expression_statement + (call + (identifier) + (argument_list + (identifier) + (keyword_argument + (identifier) + (identifier))))) + (expression_statement + (call + (identifier) + (argument_list + (identifier) + (integer))))) + +================================================================================ +Print used as an identifier +================================================================================ + +print() +print(a) +print(a, b=c) +print(d, e) +print(d, *e) +print(*f, **g,) +a(print) + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (call + (identifier) + (argument_list))) + (expression_statement + (call + (identifier) + (argument_list + (identifier)))) + (expression_statement + (call + (identifier) + (argument_list + (identifier) + (keyword_argument + (identifier) + (identifier))))) + (expression_statement + (call + (identifier) + (argument_list + (identifier) + (identifier)))) + (expression_statement + (call + (identifier) + (argument_list + (identifier) + (list_splat + (identifier))))) + (expression_statement + (call + (identifier) + (argument_list + (list_splat + (identifier)) + (dictionary_splat + (identifier))))) + (expression_statement + (call + (identifier) + (argument_list + (identifier))))) + +================================================================================ +Print used as a parameter +================================================================================ + +def a(print): + b +def a(printer=print): + c +def a(*print): + b +def a(**print): + b +def print(): + a + +-------------------------------------------------------------------------------- + +(module + (function_definition + (identifier) + (parameters + (identifier)) + (block + (expression_statement + (identifier)))) + (function_definition + (identifier) + (parameters + (default_parameter + (identifier) + (identifier))) + (block + (expression_statement + (identifier)))) + (function_definition + (identifier) + (parameters + (list_splat_pattern + (identifier))) + (block + (expression_statement + (identifier)))) + (function_definition + (identifier) + (parameters + (dictionary_splat_pattern + (identifier))) + (block + (expression_statement + (identifier)))) + (function_definition + (identifier) + (parameters) + (block + (expression_statement + (identifier))))) + +================================================================================ +Exec used as an identifier +================================================================================ + +exec("print \"'%s' has %i characters\" % (public_function(), len(public_function()))", {"__builtins__" : None}, safe_dict) +exec("""exec _code_ in _globs_, _locs_""") + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (call + (identifier) + (argument_list + (string + (escape_sequence) + (escape_sequence)) + (dictionary + (pair + (string) + (none))) + (identifier)))) + (expression_statement + (call + (identifier) + (argument_list + (string))))) + +================================================================================ +Async / await used as identifiers +================================================================================ + +async = 4 +await = 5 +print async, await + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (integer))) + (expression_statement + (assignment + (identifier) + (integer))) + (print_statement + (identifier) + (identifier))) + +================================================================================ +Calls with splats +================================================================================ + +a(*()) +a(**{}) +a(*b) +c(d, *e, **g) + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (call + (identifier) + (argument_list + (list_splat + (tuple))))) + (expression_statement + (call + (identifier) + (argument_list + (dictionary_splat + (dictionary))))) + (expression_statement + (call + (identifier) + (argument_list + (list_splat + (identifier))))) + (expression_statement + (call + (identifier) + (argument_list + (identifier) + (list_splat + (identifier)) + (dictionary_splat + (identifier)))))) + +================================================================================ +Math operators +================================================================================ + +a + b * c ** d - e / 5 +-5 ++x +~x + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (binary_operator + (binary_operator + (identifier) + (binary_operator + (identifier) + (binary_operator + (identifier) + (identifier)))) + (binary_operator + (identifier) + (integer)))) + (expression_statement + (unary_operator + (integer))) + (expression_statement + (unary_operator + (identifier))) + (expression_statement + (unary_operator + (identifier)))) + +================================================================================ +Binary Addition / Subtraction With Floats +================================================================================ + +.1-.0 +.1+.0 +.1-0 +.1+0 + +1-.0 +1+.0 + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (binary_operator + (float) + (float))) + (expression_statement + (binary_operator + (float) + (float))) + (expression_statement + (binary_operator + (float) + (integer))) + (expression_statement + (binary_operator + (float) + (integer))) + (expression_statement + (binary_operator + (integer) + (float))) + (expression_statement + (binary_operator + (integer) + (float)))) + +================================================================================ +Power Operator Precedence +================================================================================ + +2**2**3 +-2**2 + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (binary_operator + (integer) + (binary_operator + (integer) + (integer)))) + (expression_statement + (unary_operator + (binary_operator + (integer) + (integer))))) + +================================================================================ +Operator precedence +================================================================================ + +a() + b[c] * c.d.e + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (binary_operator + left: (call + function: (identifier) + arguments: (argument_list)) + right: (binary_operator + left: (subscript + value: (identifier) + subscript: (identifier)) + right: (attribute + object: (attribute + object: (identifier) + attribute: (identifier)) + attribute: (identifier)))))) + +================================================================================ +Bitwise operators +================================================================================ + +a << b | c >> d & e + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (binary_operator + (binary_operator + (identifier) + (identifier)) + (binary_operator + (binary_operator + (identifier) + (identifier)) + (identifier))))) + +================================================================================ +Boolean operators +================================================================================ + +a or b and c +not d +not a and b or c +a and not b and c + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (boolean_operator + (identifier) + (boolean_operator + (identifier) + (identifier)))) + (expression_statement + (not_operator + (identifier))) + (expression_statement + (boolean_operator + (boolean_operator + (not_operator + (identifier)) + (identifier)) + (identifier))) + (expression_statement + (boolean_operator + (boolean_operator + (identifier) + (not_operator + (identifier))) + (identifier)))) + +================================================================================ +Comparison operators +================================================================================ + +a < b <= c == d >= e > f +not a == b or c == d +a not in b + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (comparison_operator + (identifier) + (identifier) + (identifier) + (identifier) + (identifier) + (identifier))) + (expression_statement + (boolean_operator + (not_operator + (comparison_operator + (identifier) + (identifier))) + (comparison_operator + (identifier) + (identifier)))) + (expression_statement + (comparison_operator + (identifier) + (identifier)))) + +================================================================================ +Assignments +================================================================================ + +a = 1 +a, b = 1, 2 +a, *c = 1, 2, 3 +a, = 1, 2 +a[b] = c = d +a, *b.c = d + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (integer))) + (expression_statement + (assignment + (pattern_list + (identifier) + (identifier)) + (expression_list + (integer) + (integer)))) + (expression_statement + (assignment + (pattern_list + (identifier) + (list_splat_pattern + (identifier))) + (expression_list + (integer) + (integer) + (integer)))) + (expression_statement + (assignment + (pattern_list + (identifier)) + (expression_list + (integer) + (integer)))) + (expression_statement + (assignment + (subscript + (identifier) + (identifier)) + (assignment + (identifier) + (identifier)))) + (expression_statement + (assignment + (pattern_list + (identifier) + (list_splat_pattern + (attribute + (identifier) + (identifier)))) + (identifier)))) + +================================================================================ +Assignments with type annotations +================================================================================ + +tail_leaves: List[Leaf] = [] + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (type + (subscript + (identifier) + (identifier))) + (list)))) + +================================================================================ +Augmented assignments +================================================================================ + +a += 1 +b >>= 2 +c //= 1 + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (augmented_assignment + (identifier) + (integer))) + (expression_statement + (augmented_assignment + (identifier) + (integer))) + (expression_statement + (augmented_assignment + (identifier) + (integer)))) + +================================================================================ +Named expressions +================================================================================ + +a := x +(y := f(x)) +foo(x=(y := f(x))) +y0 = (y1 := f(x)) +def foo(answer=(p := 42)): + return answer; +def foo(answer: (p := 42) = 5): + return answer; +foo(x := 3, cat='vector') +(z := (y := (x := 0))) + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (named_expression + (identifier) + (identifier))) + (expression_statement + (parenthesized_expression + (named_expression + (identifier) + (call + (identifier) + (argument_list + (identifier)))))) + (expression_statement + (call + (identifier) + (argument_list + (keyword_argument + (identifier) + (parenthesized_expression + (named_expression + (identifier) + (call + (identifier) + (argument_list + (identifier))))))))) + (expression_statement + (assignment + (identifier) + (parenthesized_expression + (named_expression + (identifier) + (call + (identifier) + (argument_list + (identifier))))))) + (function_definition + (identifier) + (parameters + (default_parameter + (identifier) + (parenthesized_expression + (named_expression + (identifier) + (integer))))) + (block + (return_statement + (identifier)))) + (function_definition + (identifier) + (parameters + (typed_default_parameter + (identifier) + (type + (parenthesized_expression + (named_expression + (identifier) + (integer)))) + (integer))) + (block + (return_statement + (identifier)))) + (expression_statement + (call + (identifier) + (argument_list + (named_expression + (identifier) + (integer)) + (keyword_argument + (identifier) + (string))))) + (expression_statement + (parenthesized_expression + (named_expression + (identifier) + (parenthesized_expression + (named_expression + (identifier) + (parenthesized_expression + (named_expression + (identifier) + (integer))))))))) + +================================================================================ +lambdas +================================================================================ + +lambda b, c: d("e" % f) +lambda: True +lambda a, b = c, *d, **e: a +lambda (a, b): (a, b) + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (lambda + (lambda_parameters + (identifier) + (identifier)) + (call + (identifier) + (argument_list + (binary_operator + (string) + (identifier)))))) + (expression_statement + (lambda + (true))) + (expression_statement + (lambda + (lambda_parameters + (identifier) + (default_parameter + (identifier) + (identifier)) + (list_splat_pattern + (identifier)) + (dictionary_splat_pattern + (identifier))) + (identifier))) + (expression_statement + (lambda + (lambda_parameters + (tuple_pattern + (identifier) + (identifier))) + (tuple + (identifier) + (identifier))))) + +================================================================================ +Tuples with splats +================================================================================ + +(foo, *bar, *baz) + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (tuple + (identifier) + (list_splat + (identifier)) + (list_splat + (identifier))))) + +================================================================================ +Conditional if expressions +================================================================================ + +a = b if c else d +something() if a else d +slice(1,1,1) if a else d + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (conditional_expression + (identifier) + (identifier) + (identifier)))) + (expression_statement + (conditional_expression + (call + (identifier) + (argument_list)) + (identifier) + (identifier))) + (expression_statement + (conditional_expression + (call + (identifier) + (argument_list + (integer) + (integer) + (integer))) + (identifier) + (identifier)))) + +================================================================================ +Async context managers and iterators +================================================================================ + +async with a as b: + async for c in d: + [e async for f in g] + +-------------------------------------------------------------------------------- + +(module + (with_statement + (with_clause + (with_item + value: (as_pattern + (identifier) + alias: (as_pattern_target + (identifier))))) + body: (block + (for_statement + left: (identifier) + right: (identifier) + body: (block + (expression_statement + (list_comprehension + body: (identifier) + (for_in_clause + left: (identifier) + right: (identifier))))))))) + +=========================================== +Arbitrary indentation between brackets +========================================== + +def a(): + b( +1, +2 + ) + + c = [ +3 + ] + +--- + +(module + (function_definition + (identifier) + (parameters) + (block + (expression_statement + (call + (identifier) + (argument_list + (integer) + (integer)))) + (expression_statement + (assignment + (identifier) + (list + (integer))))))) diff --git a/test/corpus/literals.txt b/test/corpus/literals.txt new file mode 100644 index 0000000..32d258b --- /dev/null +++ b/test/corpus/literals.txt @@ -0,0 +1,704 @@ +================================================================================ +Integers +================================================================================ + +-1 +0xDEAD +0XDEAD +1j +-1j +0o123 +0O123 +0b001 +0B001 +1_1 +0B1_1 +0O1_1 +0L + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (unary_operator + (integer))) + (expression_statement + (integer)) + (expression_statement + (integer)) + (expression_statement + (integer)) + (expression_statement + (unary_operator + (integer))) + (expression_statement + (integer)) + (expression_statement + (integer)) + (expression_statement + (integer)) + (expression_statement + (integer)) + (expression_statement + (integer)) + (expression_statement + (integer)) + (expression_statement + (integer)) + (expression_statement + (integer))) + +================================================================================ +Floats +================================================================================ + +-.6_6 ++.1_1 +123.4123 +123.123J +1_1.3_1 +1_1. +1e+3_4j +.3e1_4 +1_0.l +.1l + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (unary_operator + (float))) + (expression_statement + (unary_operator + (float))) + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (float))) + +================================================================================ +Scientific Notation Floats +================================================================================ + +1e322 +1e-3 +1e+3 +1.8e10 +1.e10 +-1e10 + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (float)) + (expression_statement + (unary_operator + (float)))) + +================================================================================ +Strings +================================================================================ + +"I'm ok" +'"ok"' +UR'bye' +b'sup' +B"sup" +`1` +"\\" +"/" +"multiline \ +string" +b"\x12\u12\U12\x13\N{WINKING FACE}" +"\xab\123\'\"\a\b\f\r\n\t\v\\" +"\xgh\o123\p\q\c\d\e\u12\U1234" + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string + (escape_sequence))) + (expression_statement + (string)) + (expression_statement + (string + (escape_sequence))) + (expression_statement + (string + (escape_sequence) + (escape_sequence))) + (expression_statement + (string + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence))) + (expression_statement + (string))) + +================================================================================ +Raw strings +================================================================================ + +'ab\x00cd' +"\n" + +# no escape sequences in these +r'ab\x00cd' +ur"\n" + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (string + (escape_sequence))) + (expression_statement + (string + (escape_sequence))) + (comment) + (expression_statement + (string)) + (expression_statement + (string))) + +================================================================================ +Raw strings with escaped quotes +================================================================================ + +re.compile(r"(\n|\A)#include\s*['\"]" + + r"(?P[\w\d./\\]+[.]src)['\"]") + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list + (binary_operator + (string) + (string)))))) + +================================================================================ +Format strings +================================================================================ + +# nested! +f"a {b(f'c {e} d')} e" +f"""a"{b}c""" +f"""a""{b}c""" +f"a {{}} e" +f"a {b}}}" +f"a {{{b}" +f"a {{b}}" +f"a {{{b}}}" + +-------------------------------------------------------------------------------- + +(module + (comment) + (expression_statement + (string + (interpolation + (call + (identifier) + (argument_list + (string + (interpolation + (identifier)))))))) + (expression_statement + (string + (interpolation + (identifier)))) + (expression_statement + (string + (interpolation + (identifier)))) + (expression_statement + (string)) + (expression_statement + (string + (interpolation + (identifier)))) + (expression_statement + (string + (interpolation + (identifier)))) + (expression_statement + (string)) + (expression_statement + (string + (interpolation + (identifier))))) + +================================================================================ +Format strings with format specifiers +================================================================================ + +f"a {b:2} {c:34.5}" +f"{b:{c.d}.{d.e}}" +f"{a:#06x}" +f"{a=}" +f"{a=:.2f}" + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (string + (interpolation + (identifier) + (format_specifier)) + (interpolation + (identifier) + (format_specifier)))) + (expression_statement + (string + (interpolation + (identifier) + (format_specifier + (format_expression + (attribute + (identifier) + (identifier))) + (format_expression + (attribute + (identifier) + (identifier))))))) + (expression_statement + (string + (interpolation (identifier) (format_specifier)))) + (expression_statement + (string (interpolation (identifier)))) + (expression_statement + (string + (interpolation (identifier) (format_specifier))))) + +================================================================================ +Unicode escape sequences +================================================================================ + +"\x12 \123 \u1234" + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (string + (escape_sequence) + (escape_sequence) + (escape_sequence)))) + +================================================================================ +Other primitives +================================================================================ + +True +False +None + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (true)) + (expression_statement + (false)) + (expression_statement + (none))) + +================================================================================ +Multi-line strings +================================================================================ + +""" +A double quote hello, +without double or single quotes. +""" + +""" +A double quote "hello", +with double quotes. +""" + +""" +A double quote 'hello', +with single quotes. +""" + +''' +A single quote hello, +without double or single quotes. +''' + +''' +A single quote 'hello', +with single quotes. +''' + +''' +A single quote "hello", +with double quotes. +''' + +""" +A double quote hello\n\ +with an escaped newline\n\ +and another escaped newline\n\ +""" + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string)) + (expression_statement + (string + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence) + (escape_sequence)))) + +================================================================================ +Lists +================================================================================ + +[a, b, [c, d]] +[*()] +[*[]] +[*a] +[*a.b] +[*a[b].c] +[*a()] + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (list + (identifier) + (identifier) + (list + (identifier) + (identifier)))) + (expression_statement + (list + (list_splat + (tuple)))) + (expression_statement + (list + (list_splat + (list)))) + (expression_statement + (list + (list_splat + (identifier)))) + (expression_statement + (list + (list_splat + (attribute + (identifier) + (identifier))))) + (expression_statement + (list + (list_splat + (attribute + (subscript + (identifier) + (identifier)) + (identifier))))) + (expression_statement + (list + (list_splat + (call + (identifier) + (argument_list)))))) + +================================================================================ +List comprehensions +================================================================================ + +[a + b for (a, b) in items] +[a for b in c for a in b] +[(x,y) for x in [1,2,3] for y in [1,2,3] if True] +[a for a in lambda: True, lambda: False if a()] + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (list_comprehension + (binary_operator + (identifier) + (identifier)) + (for_in_clause + (tuple_pattern + (identifier) + (identifier)) + (identifier)))) + (expression_statement + (list_comprehension + (identifier) + (for_in_clause + (identifier) + (identifier)) + (for_in_clause + (identifier) + (identifier)))) + (expression_statement + (list_comprehension + (tuple + (identifier) + (identifier)) + (for_in_clause + (identifier) + (list + (integer) + (integer) + (integer))) + (for_in_clause + (identifier) + (list + (integer) + (integer) + (integer))) + (if_clause + (true)))) + (expression_statement + (list_comprehension + (identifier) + (for_in_clause + (identifier) + (lambda + (true)) + (lambda + (false))) + (if_clause + (call + (identifier) + (argument_list)))))) + +================================================================================ +Dictionaries +================================================================================ + +{a: 1, b: 2} +{} +{**{}} +{**a} +{**a.b} +{**a[b].c} +{**a()} + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (dictionary + (pair + (identifier) + (integer)) + (pair + (identifier) + (integer)))) + (expression_statement + (dictionary)) + (expression_statement + (dictionary + (dictionary_splat + (dictionary)))) + (expression_statement + (dictionary + (dictionary_splat + (identifier)))) + (expression_statement + (dictionary + (dictionary_splat + (attribute + (identifier) + (identifier))))) + (expression_statement + (dictionary + (dictionary_splat + (attribute + (subscript + (identifier) + (identifier)) + (identifier))))) + (expression_statement + (dictionary + (dictionary_splat + (call + (identifier) + (argument_list)))))) + +================================================================================ +Dictionary comprehensions +================================================================================ + +{a: b for a, b in items} +{a: b for c in d for e in items} + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (dictionary_comprehension + (pair + (identifier) + (identifier)) + (for_in_clause + (pattern_list + (identifier) + (identifier)) + (identifier)))) + (expression_statement + (dictionary_comprehension + (pair + (identifier) + (identifier)) + (for_in_clause + (identifier) + (identifier)) + (for_in_clause + (identifier) + (identifier))))) + +================================================================================ +Sets +================================================================================ + +{a, b, c,} +{*{}} + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (set + (identifier) + (identifier) + (identifier))) + (expression_statement + (set + (list_splat + (dictionary))))) + +================================================================================ +Set comprehensions +================================================================================ + +{a[b][c] for a, b, c in items} +{r for s in qs for n in ms} + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (set_comprehension + (subscript + (subscript + (identifier) + (identifier)) + (identifier)) + (for_in_clause + (pattern_list + (identifier) + (identifier) + (identifier)) + (identifier)))) + (expression_statement + (set_comprehension + (identifier) + (for_in_clause + (identifier) + (identifier)) + (for_in_clause + (identifier) + (identifier))))) + +================================================================================ +Simple Tuples +================================================================================ + +() +(a, b) +(a, b, c,) +(print, exec) + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (tuple)) + (expression_statement + (tuple + (identifier) + (identifier))) + (expression_statement + (tuple + (identifier) + (identifier) + (identifier))) + (expression_statement + (tuple + (identifier) + (identifier)))) diff --git a/test/corpus/load.txt b/test/corpus/load.txt new file mode 100644 index 0000000..d0828eb --- /dev/null +++ b/test/corpus/load.txt @@ -0,0 +1,17 @@ +===================== +Test a load statement +===================== + +load(":foo.bzl", "var", "fct") # loads `var`, and `fct` from `./foo.bzl` + +--- + +(module + (expression_statement + (call + (identifier) + (argument_list + (string) + (string) + (string)))) + (comment)) diff --git a/test/corpus/pattern_matching.txt b/test/corpus/pattern_matching.txt new file mode 100644 index 0000000..c03ff26 --- /dev/null +++ b/test/corpus/pattern_matching.txt @@ -0,0 +1,568 @@ +================================================================================ +Matching specific values +================================================================================ + +match command.split(): + case ["quit"]: + print("Goodbye!") + quit_game() + case ["look"]: + current_room.describe() + case ["get", obj]: + character.get(obj, current_room) + case ["go", direction]: + current_room = current_room.neighbor(direction) + # The rest of your commands go here +-------------------------------------------------------------------------------- + +(module + (match_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list)) + (case_clause + (case_pattern + (list + (string))) + (block + (expression_statement + (call + (identifier) + (argument_list + (string)))) + (expression_statement + (call + (identifier) + (argument_list))))) + (case_clause + (case_pattern + (list + (string))) + (block + (expression_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list))))) + (case_clause + (case_pattern + (list + (string) + (identifier))) + (block + (expression_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list + (identifier) + (identifier)))))) + (case_clause + (case_pattern + (list + (string) + (identifier))) + (block + (expression_statement + (assignment + (identifier) + (call + (attribute + (identifier) + (identifier)) + (argument_list + (identifier)))))))) + (comment)) + +================================================================================ +Matching multiple values +================================================================================ + +match command.split(): + case ["drop", *objects]: + for obj in objects: + character.drop(obj, current_room) +-------------------------------------------------------------------------------- + +(module + (match_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list)) + (case_clause + (case_pattern + (list + (string) + (list_splat + (identifier)))) + (block + (for_statement + (identifier) + (identifier) + (block + (expression_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list + (identifier) + (identifier)))))))))) + +================================================================================ +Adding a wild card +================================================================================ + +match command.split(): +# ^ conditional + case ["quit"]: ... # Code omitted for brevity + case ["go", direction]: pass + case ["drop", *objects]: pass + case _: + print(f"Sorry, I couldn't understand {command!r}") + +-------------------------------------------------------------------------------- + +(module + (match_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list)) + (comment) + (case_clause + (case_pattern + (list + (string))) + (block + (expression_statement + (ellipsis)) + (comment))) + (case_clause + (case_pattern + (list + (string) + (identifier))) + (block + (pass_statement))) + (case_clause + (case_pattern + (list + (string) + (list_splat + (identifier)))) + (block + (pass_statement))) + (case_clause + (case_pattern + (identifier)) + (block + (expression_statement + (call + (identifier) + (argument_list + (string + (interpolation + (identifier) + (type_conversion)))))))))) + +================================================================================ +Or patterns +================================================================================ + +match command.split(): + case ["north"] | ["go", "north"]: + current_room = current_room.neighbor("north") + case ["get", obj] | ["pick", "up", obj] | ["pick", obj, "up"]: + pass +-------------------------------------------------------------------------------- + +(module + (match_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list)) + (case_clause + (case_pattern + (binary_operator + (list + (string)) + (list + (string) + (string)))) + (block + (expression_statement + (assignment + (identifier) + (call + (attribute + (identifier) + (identifier)) + (argument_list + (string))))))) + (case_clause + (case_pattern + (binary_operator + (binary_operator + (list + (string) + (identifier)) + (list + (string) + (string) + (identifier))) + (list + (string) + (identifier) + (string)))) + (block + (pass_statement))))) + +================================================================================ +As patterns +================================================================================ +match command.split(): + case ["go", ("north" | "south" | "east" | "west") as direction]: + current_room = current_room.neighbor(direction) + +-------------------------------------------------------------------------------- + +(module + (match_statement + (call + (attribute + (identifier) + (identifier)) + (argument_list)) + (case_clause + (case_pattern + (list + (string) + (as_pattern + (parenthesized_expression + (binary_operator + (binary_operator + (binary_operator + (string) + (string)) + (string)) + (string))) + (as_pattern_target + (identifier))))) + (block + (expression_statement + (assignment + (identifier) + (call + (attribute + (identifier) + (identifier)) + (argument_list + (identifier))))))))) + +================================================================================ +Actually not match +================================================================================ +match = 2 +match, a = 2, 3 +match: int = secret +x, match = 2, "hey, what's up?" + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (integer))) + (expression_statement + (assignment + (pattern_list + (identifier) + (identifier)) + (expression_list + (integer) + (integer)))) + (expression_statement + (assignment + (identifier) + (type + (identifier)) + (identifier))) + (expression_statement + (assignment + (pattern_list + (identifier) + (identifier)) + (expression_list + (integer) + (string))))) + +================================================================================ +Match is match but not pattern matching +================================================================================ + +a = [match] +match = [match] +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (list + (identifier)))) + (expression_statement + (assignment + (identifier) + (list + (identifier))))) + +================================================================================ +Match kwargs +================================================================================ + +field = call(match=r".*\.txt$") + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (call + (identifier) + (argument_list + (keyword_argument + (identifier) + (string))))))) + +================================================================================ +Match kwargs 2 +================================================================================ + +field = match(match=match, match) + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (call + (identifier) + (argument_list + (keyword_argument + (identifier) + (identifier)) + (identifier)))))) + +================================================================================ +Case used as identifier +================================================================================ + +a = [case] +case = [case] +just_in_case = call_me(case=True) +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (list + (identifier)))) + (expression_statement + (assignment + (identifier) + (list + (identifier)))) + (expression_statement + (assignment + (identifier) + (call + (identifier) + (argument_list + (keyword_argument + (identifier) + (true))))))) + +================================================================================ +If guards +================================================================================ + +match 0: + case 0 if False: + x = False + case 0 if True: + x = True +-------------------------------------------------------------------------------- + +(module + (match_statement + (integer) + (case_clause + (case_pattern + (integer)) + (if_clause + (false)) + (block + (expression_statement + (assignment + (identifier) + (false))))) + (case_clause + (case_pattern + (integer)) + (if_clause + (true)) + (block + (expression_statement + (assignment + (identifier) + (true))))))) + +================================================================================ +Comma separated cases +================================================================================ +match (0, 1, 2): + case 0,1: + x = 0 + case 0, *x: + x = 0 +-------------------------------------------------------------------------------- + +(module + (match_statement + (tuple + (integer) + (integer) + (integer)) + (case_clause + (case_pattern + (integer)) + (case_pattern + (integer)) + (block + (expression_statement + (assignment + (identifier) + (integer))))) + (case_clause + (case_pattern + (integer)) + (case_pattern + (identifier)) + (block + (expression_statement + (assignment + (identifier) + (integer))))))) + +================================================================================ +case terminating in comma +================================================================================ +match x,: + case *x,: + y = 0 +-------------------------------------------------------------------------------- + +(module + (match_statement + (identifier) + (case_clause + (case_pattern + (identifier)) + (block + (expression_statement + (assignment + (identifier) + (integer))))))) + +================================================================================ +Multiple match patterns +================================================================================ + +match ..., ...: + case a, b: + return locals() + +-------------------------------------------------------------------------------- + +(module + (match_statement + (ellipsis) + (ellipsis) + (case_clause + (case_pattern + (identifier)) + (case_pattern + (identifier)) + (block + (return_statement + (call + (identifier) + (argument_list))))))) + +================================================================================ +Match match, case case +================================================================================ +match = case = 0 +match match: + case case: + x = 0 +-------------------------------------------------------------------------------- + +(module + (expression_statement + (assignment + (identifier) + (assignment + (identifier) + (integer)))) + (match_statement + (identifier) + (case_clause + (case_pattern + (identifier)) + (block + (expression_statement + (assignment + (identifier) + (integer))))))) + +================================================================================ +Walrus match (Issue #150) +================================================================================ +if match := re.fullmatch(r"(-)?(\d+:)?\d?\d:\d\d(\.\d*)?", time, flags=re.ASCII): + return 42 +-------------------------------------------------------------------------------- + +(module + (if_statement + (named_expression + (identifier) + (call + (attribute + (identifier) + (identifier)) + (argument_list + (string) + (identifier) + (keyword_argument + (identifier) + (attribute + (identifier) + (identifier)))))) + (block + (return_statement + (integer))))) diff --git a/test/corpus/statements.txt b/test/corpus/statements.txt new file mode 100644 index 0000000..7d76f77 --- /dev/null +++ b/test/corpus/statements.txt @@ -0,0 +1,960 @@ +================================================================================ +Print statements +================================================================================ + +print a +print b, c +print 0 or 1, 1 or 0, +print 0 or 1 + +-------------------------------------------------------------------------------- + +(module + (print_statement + (identifier)) + (print_statement + (identifier) + (identifier)) + (print_statement + (boolean_operator + (integer) + (integer)) + (boolean_operator + (integer) + (integer))) + (print_statement + (boolean_operator + (integer) + (integer)))) + +================================================================================ +Print statements with redirection +================================================================================ + +print >> a +print >> a, "b", "c" + +-------------------------------------------------------------------------------- + +(module + (print_statement + (chevron + (identifier))) + (print_statement + (chevron + (identifier)) + (string) + (string))) + +================================================================================ +Assert statements +================================================================================ + +assert a +assert b, c + +-------------------------------------------------------------------------------- + +(module + (assert_statement + (identifier)) + (assert_statement + (identifier) + (identifier))) + +================================================================================ +Expression statements +================================================================================ + +a +b + c +1, 2, 3 +1, 2, 3, + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (identifier)) + (expression_statement + (binary_operator + (identifier) + (identifier))) + (expression_statement + (integer) + (integer) + (integer)) + (expression_statement + (integer) + (integer) + (integer))) + +================================================================================ +Delete statements +================================================================================ + +del a[1], b[2] + +-------------------------------------------------------------------------------- + +(module + (delete_statement + (expression_list + (subscript + (identifier) + (integer)) + (subscript + (identifier) + (integer))))) + +================================================================================ +Control-flow statements +================================================================================ + +while true: + pass + break + continue + +-------------------------------------------------------------------------------- + +(module + (while_statement + condition: (identifier) + body: (block + (pass_statement) + (break_statement) + (continue_statement)))) + +================================================================================ +Return statements +================================================================================ + +return +return a + b, c +return not b + +-------------------------------------------------------------------------------- + +(module + (return_statement) + (return_statement + (expression_list + (binary_operator + (identifier) + (identifier)) + (identifier))) + (return_statement + (not_operator + (identifier)))) + +================================================================================ +If statements +================================================================================ + +if a: + b + c + +-------------------------------------------------------------------------------- + +(module + (if_statement + condition: (identifier) + consequence: (block + (expression_statement + (identifier)) + (expression_statement + (identifier))))) + +================================================================================ +If else statements +================================================================================ + +if a: + b +elif c: + d +else: + f + +if a: + b +else: + f + +if a: b + +if a: b; c + +-------------------------------------------------------------------------------- + +(module + (if_statement + condition: (identifier) + consequence: (block + (expression_statement + (identifier))) + alternative: (elif_clause + condition: (identifier) + consequence: (block + (expression_statement + (identifier)))) + alternative: (else_clause + body: (block + (expression_statement + (identifier))))) + (if_statement + condition: (identifier) + consequence: (block + (expression_statement + (identifier))) + alternative: (else_clause + body: (block + (expression_statement + (identifier))))) + (if_statement + condition: (identifier) + consequence: (block + (expression_statement + (identifier)))) + (if_statement + condition: (identifier) + consequence: (block + (expression_statement + (identifier)) + (expression_statement + (identifier))))) + +================================================================================ +Nested if statements +================================================================================ + +if a: + if b: + c + else: + if e: + f +g + +-------------------------------------------------------------------------------- + +(module + (if_statement + condition: (identifier) + consequence: (block + (if_statement + condition: (identifier) + consequence: (block + (expression_statement + (identifier))) + alternative: (else_clause + body: (block + (if_statement + condition: (identifier) + consequence: (block + (expression_statement + (identifier))))))))) + (expression_statement + (identifier))) + +================================================================================ +While statements +================================================================================ + +while a: + b + +while c: + d +else: + e + f + +-------------------------------------------------------------------------------- + +(module + (while_statement + condition: (identifier) + body: (block + (expression_statement + (identifier)))) + (while_statement + condition: (identifier) + body: (block + (expression_statement + (identifier))) + alternative: (else_clause + body: (block + (expression_statement + (identifier)) + (expression_statement + (identifier)))))) + +================================================================================ +For statements +================================================================================ + +for line, i in lines: + print line + for character, j in line: + print character +else: + print x + +for x, in [(1,), (2,), (3,)]: + x + +-------------------------------------------------------------------------------- + +(module + (for_statement + left: (pattern_list + (identifier) + (identifier)) + right: (identifier) + body: (block + (print_statement + argument: (identifier)) + (for_statement + left: (pattern_list + (identifier) + (identifier)) + right: (identifier) + body: (block + (print_statement + argument: (identifier))))) + alternative: (else_clause + body: (block + (print_statement + argument: (identifier))))) + (for_statement + left: (pattern_list + (identifier)) + right: (list + (tuple + (integer)) + (tuple + (integer)) + (tuple + (integer))) + body: (block + (expression_statement + (identifier))))) + +================================================================================ +With statements +================================================================================ + +with a as b: + c + +with (open('d') as d, + open('e') as e): + f + +with e as f, g as h,: + i + +-------------------------------------------------------------------------------- + +(module + (with_statement + (with_clause + (with_item + (as_pattern + (identifier) + (as_pattern_target + (identifier))))) + (block + (expression_statement + (identifier)))) + (with_statement + (with_clause + (with_item + (as_pattern + (call + (identifier) + (argument_list + (string))) + (as_pattern_target + (identifier)))) + (with_item + (as_pattern + (call + (identifier) + (argument_list + (string))) + (as_pattern_target + (identifier))))) + (block + (expression_statement + (identifier)))) + (with_statement + (with_clause + (with_item + (as_pattern + (identifier) + (as_pattern_target + (identifier)))) + (with_item + (as_pattern + (identifier) + (as_pattern_target + (identifier))))) + (block + (expression_statement + (identifier))))) + +================================================================================ +Async Function definitions +================================================================================ + +async def a(): + b + +async def c(d): + e + +async def g(g, h,): + i + +async def c(a: str): + a + +async def c(a: b.c): + a + +async def d(a: Sequence[T]) -> T: + a + +async def i(a, b=c, *c, **d): + a + +async def d(a: str) -> None: + return None + +async def d(a:str="default", b=c) -> None: + return None + +-------------------------------------------------------------------------------- + +(module + (function_definition + name: (identifier) + parameters: (parameters) + body: (block + (expression_statement + (identifier)))) + (function_definition + name: (identifier) + parameters: (parameters + (identifier)) + body: (block + (expression_statement + (identifier)))) + (function_definition + name: (identifier) + parameters: (parameters + (identifier) + (identifier)) + body: (block + (expression_statement + (identifier)))) + (function_definition + name: (identifier) + parameters: (parameters + (typed_parameter + (identifier) + type: (type + (identifier)))) + body: (block + (expression_statement + (identifier)))) + (function_definition + name: (identifier) + parameters: (parameters + (typed_parameter + (identifier) + type: (type + (attribute + object: (identifier) + attribute: (identifier))))) + body: (block + (expression_statement + (identifier)))) + (function_definition + name: (identifier) + parameters: (parameters + (typed_parameter + (identifier) + type: (type + (subscript + value: (identifier) + subscript: (identifier))))) + return_type: (type + (identifier)) + body: (block + (expression_statement + (identifier)))) + (function_definition + name: (identifier) + parameters: (parameters + (identifier) + (default_parameter + name: (identifier) + value: (identifier)) + (list_splat_pattern + (identifier)) + (dictionary_splat_pattern + (identifier))) + body: (block + (expression_statement + (identifier)))) + (function_definition + name: (identifier) + parameters: (parameters + (typed_parameter + (identifier) + type: (type + (identifier)))) + return_type: (type + (none)) + body: (block + (return_statement + (none)))) + (function_definition + name: (identifier) + parameters: (parameters + (typed_default_parameter + name: (identifier) + type: (type + (identifier)) + value: (string)) + (default_parameter + name: (identifier) + value: (identifier))) + return_type: (type + (none)) + body: (block + (return_statement + (none))))) + +================================================================================ +Function definitions +================================================================================ + +def e((a,b)): + return (a,b) + +def e(*list: str): + pass + +def e(**list: str): + pass + +def g(h, i, /, j, *, k=100, **kwarg): + return h,i,j,k,kwarg + +def h(*a): + i((*a)) + j(((*a))) + +-------------------------------------------------------------------------------- + +(module + (function_definition + name: (identifier) + parameters: (parameters + (tuple_pattern + (identifier) + (identifier))) + body: (block + (return_statement + (tuple + (identifier) + (identifier))))) + (function_definition + name: (identifier) + parameters: (parameters + (typed_parameter + (list_splat_pattern + (identifier)) + type: (type + (identifier)))) + body: (block + (pass_statement))) + (function_definition + name: (identifier) + parameters: (parameters + (typed_parameter + (dictionary_splat_pattern + (identifier)) + type: (type + (identifier)))) + body: (block + (pass_statement))) + (function_definition + name: (identifier) + parameters: (parameters + (identifier) + (identifier) + (positional_separator) + (identifier) + (keyword_separator) + (default_parameter + name: (identifier) + value: (integer)) + (dictionary_splat_pattern + (identifier))) + body: (block + (return_statement + (expression_list + (identifier) + (identifier) + (identifier) + (identifier) + (identifier))))) + (function_definition + name: (identifier) + parameters: (parameters + (list_splat_pattern + (identifier))) + body: (block + (expression_statement + (call + function: (identifier) + arguments: (argument_list + (parenthesized_expression + (list_splat + (identifier)))))) + (expression_statement + (call + function: (identifier) + arguments: (argument_list + (parenthesized_expression + (parenthesized_expression + (list_splat + (identifier)))))))))) + +================================================================================ +Empty blocks +================================================================================ + +# These are not actually valid python; blocks +# must contain at least one statement. But we +# allow them because error recovery for empty +# blocks doesn't work very well otherwise. +def a(b, c): + +if d: + print e + while f(): + +-------------------------------------------------------------------------------- + +(module + (comment) + (comment) + (comment) + (comment) + (function_definition + name: (identifier) + parameters: (parameters + (identifier) + (identifier)) + body: (block)) + (if_statement + condition: (identifier) + consequence: (block + (print_statement + argument: (identifier)) + (while_statement + condition: (call + function: (identifier) + arguments: (argument_list)) + body: (block))))) + +================================================================================ +Decorated definitions +================================================================================ + +@a.b +@d(1) +@e[2].f.g +def f(): +g + +@f() +async def f(): +g + +-------------------------------------------------------------------------------- + +(module + (decorated_definition + (decorator + (attribute + (identifier) + (identifier))) + (decorator + (call + (identifier) + (argument_list + (integer)))) + (decorator + (attribute + (attribute + (subscript + (identifier) + (integer)) + (identifier)) + (identifier))) + (function_definition + (identifier) + (parameters) + (block))) + (expression_statement + (identifier)) + (decorated_definition + (decorator + (call + (identifier) + (argument_list))) + (function_definition + (identifier) + (parameters) + (block))) + (expression_statement + (identifier))) + +================================================================================ +Comments +================================================================================ + +print a +# hi +print b # bye +print c + +-------------------------------------------------------------------------------- + +(module + (print_statement + (identifier)) + (comment) + (print_statement + (identifier)) + (comment) + (print_statement + (identifier))) + +================================================================================ +Comments at different indentation levels +================================================================================ + +if a: + # one +# two + # three + b + # four + c + +-------------------------------------------------------------------------------- + +(module + (if_statement + (identifier) + (comment) + (comment) + (comment) + (block + (expression_statement + (identifier)) + (comment) + (expression_statement + (identifier))))) + +================================================================================ +Comments after dedents +================================================================================ + +if a: + b + +# one +c + +-------------------------------------------------------------------------------- + +(module + (if_statement + (identifier) + (block + (expression_statement + (identifier)))) + (comment) + (expression_statement + (identifier))) + +================================================================================ +Comments at the ends of indented blocks +================================================================================ + +if a: + b + # one + # two + +if c: + d + # three + # four + +# five + +-------------------------------------------------------------------------------- + +(module + (if_statement + (identifier) + (block + (expression_statement + (identifier)) + (comment) + (comment))) + (if_statement + (identifier) + (block + (expression_statement + (identifier)) + (comment) + (comment))) + (comment)) + +================================================================================ +Newline tokens followed by comments +================================================================================ + +print "a" + # We need to recognize the newline *preceding* this comment, because there's no newline after it +-------------------------------------------------------------------------------- + +(module + (print_statement + (string)) + (comment)) + +================================================================================ +Exec statements +================================================================================ + +exec '1+1' +exec 'x+=1' in None +exec 'x+=1' in a, b + +-------------------------------------------------------------------------------- + +(module + (exec_statement + (string)) + (exec_statement + (string) + (none)) + (exec_statement + (string) + (identifier) + (identifier))) + +================================================================================ +Extra newlines +================================================================================ + +if a: + + + b() + + + c() + + + def d(): + + + e() + + + f() + +-------------------------------------------------------------------------------- + +(module + (if_statement + (identifier) + (block + (expression_statement + (call + (identifier) + (argument_list))) + (expression_statement + (call + (identifier) + (argument_list))) + (function_definition + (identifier) + (parameters) + (block + (expression_statement + (call + (identifier) + (argument_list))))) + (expression_statement + (call + (identifier) + (argument_list)))))) + +================================================================================ +Escaped newline +================================================================================ + +len("a") \ +or len("aa") + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (boolean_operator + (call + (identifier) + (argument_list + (string))) + (call + (identifier) + (argument_list + (string)))))) + +================================================================================ +Statements with semicolons +================================================================================ + +foo; +foo; bar +foo; bar; + +-------------------------------------------------------------------------------- + +(module + (expression_statement + (identifier)) + (expression_statement + (identifier)) + (expression_statement + (identifier)) + (expression_statement + (identifier)) + (expression_statement + (identifier))) diff --git a/test/corpus/struct.txt b/test/corpus/struct.txt new file mode 100644 index 0000000..a339eec --- /dev/null +++ b/test/corpus/struct.txt @@ -0,0 +1,24 @@ +============================ +Test a struct initialization +============================ + +a = struct(x=123, y=false, z="hello") + +--- + +(module + (expression_statement + (assignment + (identifier) + (call + (identifier) + (argument_list + (keyword_argument + (identifier) + (integer)) + (keyword_argument + (identifier) + (identifier)) + (keyword_argument + (identifier) + (string))))))) diff --git a/test/highlight/keywords.bzl b/test/highlight/keywords.bzl new file mode 100644 index 0000000..7ba0b62 --- /dev/null +++ b/test/highlight/keywords.bzl @@ -0,0 +1,28 @@ +if foo(): +# <- conditional + pass + # <- keyword +elif bar(): +# <- conditional + pass +else: +# <- conditional + foo + +return +# ^ keyword.return + +for i in foo(): +# <- repeat +# ^ variable +# ^ keyword.operator +# ^ variable + continue + # <- repeat + break + # <- repeat + +a and b or c +# ^ keyword.operator +# ^ variable +# ^ keyword.operator diff --git a/test/highlight/parameters.bzl b/test/highlight/parameters.bzl new file mode 100644 index 0000000..1c2779e --- /dev/null +++ b/test/highlight/parameters.bzl @@ -0,0 +1,4 @@ +def g(h, i, /, j, *, k=100, **kwarg): + # ^ operator + # ^ operator + pass diff --git a/test/highlight/pattern_matching.bzl b/test/highlight/pattern_matching.bzl new file mode 100644 index 0000000..0536cf8 --- /dev/null +++ b/test/highlight/pattern_matching.bzl @@ -0,0 +1,54 @@ +match command.split(): +# ^ conditional + case ["quit"]: + # ^ conditional + print("Goodbye!") + quit_game() + case ["look"]: + # ^ conditional + current_room.describe() + case ["get", obj]: + # ^ conditional + character.get(obj, current_room) + case ["go", direction]: + # ^ conditional + current_room = current_room.neighbor(direction) + # The rest of your commands go here + +match command.split(): +# ^ conditional + case ["drop", *objects]: + # ^ conditional + for obj in objects: + character.drop(obj, current_room) + +match command.split(): +# ^ conditional + case ["quit"]: ... # Code omitted for brevity + case ["go", direction]: pass + case ["drop", *objects]: pass + case _: + print(f"Sorry, I couldn't understand {command!r}") + +match command.split(): +# ^ conditional + case ["north"] | ["go", "north"]: + # ^ conditional + current_room = current_room.neighbor("north") + case ["get", obj] | ["pick", "up", obj] | ["pick", obj, "up"]: + # ^ conditional + pass + +match = 2 +# ^ variable +match, a = 2, 3 +# ^ variable +match: int = secret +# ^ variable +x, match: str = 2, "hey, what's up?" +# <- variable +# ^ variable + +if match := re.fullmatch(r"(-)?(\d+:)?\d?\d:\d\d(\.\d*)?", time, flags=re.ASCII): + # ^ variable + return match